/*==============================================================================
  Kids LMS Theme - Fun, Colorful & Playful Design
  Designed for young learners with vibrant colors and playful animations
==============================================================================*/

/* Import Google Fonts - Kid-friendly fonts */
@import url("https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Nunito:wght@400;600;700;800&display=swap");

/* CSS Variables - Bright & Cheerful Colors */
:root {
    /* Primary Colors - Playful palette */
    --kids-primary: #6c63ff;
    --kids-primary-light: #8b85ff;
    --kids-primary-dark: #5048e5;

    /* Secondary Colors */
    --kids-orange: #ff6b6b;
    --kids-yellow: #ffd93d;
    --kids-green: #6bcb77;
    --kids-blue: #4d96ff;
    --kids-pink: #ff6b9d;
    --kids-purple: #c56cf0;
    --kids-cyan: #00d9ff;
    --kids-coral: #ff8370;

    /* Gradients */
    --kids-gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --kids-gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --kids-gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --kids-gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --kids-gradient-5: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --kids-gradient-rainbow: linear-gradient(
        90deg,
        #ff6b6b,
        #ffd93d,
        #6bcb77,
        #4d96ff,
        #c56cf0
    );
    --kids-gradient-hero: linear-gradient(
        135deg,
        #667eea 0%,
        #764ba2 50%,
        #f093fb 100%
    );

    /* Background Colors */
    --kids-bg-light: #fff9f0;
    --kids-bg-cream: #fffbf5;
    --kids-bg-blue-light: #e8f4fd;
    --kids-bg-pink-light: #fff0f5;
    --kids-bg-green-light: #f0fff4;
    --kids-bg-yellow-light: #fffef0;

    /* Text Colors */
    --kids-text-dark: #2d3436;
    --kids-text-gray: #636e72;
    --kids-text-light: #b2bec3;

    /* Shadows - Soft & Playful */
    --kids-shadow-sm: 0 2px 8px rgba(108, 99, 255, 0.15);
    --kids-shadow: 0 4px 20px rgba(108, 99, 255, 0.2);
    --kids-shadow-lg: 0 10px 40px rgba(108, 99, 255, 0.25);
    --kids-shadow-colored: 0 10px 30px rgba(255, 107, 107, 0.3);

    /* Border Radius - Rounded & Friendly */
    --kids-radius-sm: 12px;
    --kids-radius: 20px;
    --kids-radius-lg: 30px;
    --kids-radius-xl: 40px;
    --kids-radius-full: 9999px;

    /* Fonts */
    --kids-font-primary: "Baloo 2", cursive;
    --kids-font-secondary: "Nunito", sans-serif;

    /* Transitions */
    --kids-transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --kids-transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Global Styles */
.kids-theme {
    font-family: var(--kids-font-secondary);
    background: var(--kids-bg-cream);
    overflow-x: hidden;
}

.kids-theme h1,
.kids-theme h2,
.kids-theme h3,
.kids-theme h4,
.kids-theme h5 {
    font-family: var(--kids-font-primary);
    color: var(--kids-text-dark);
}

/*==============================================================================
  Kids Header - Playful & Colorful Navigation
==============================================================================*/
.kids-header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* Top Bar */
.kids-header-topbar {
    background: var(--kids-gradient-1);
    padding: 8px 0;
}

.kids-header-topbar .topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kids-header-topbar .topbar-left .welcome-text {
    color: white;
    font-size: 14px;
    font-family: var(--kids-font-secondary);
}

.kids-header-topbar .wave-emoji {
    display: inline-block;
    animation: wave-hand 1s ease-in-out infinite;
    transform-origin: 70% 70%;
}

@keyframes wave-hand {
    0%,
    100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(20deg);
    }
    75% {
        transform: rotate(-10deg);
    }
}

.kids-header-topbar .topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.kids-header-topbar .topbar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: white;
    font-size: 13px;
    text-decoration: none;
    transition: var(--kids-transition);
}

.kids-header-topbar .topbar-item:hover {
    transform: scale(1.05);
    color: white;
}

.kids-header-topbar .topbar-item .item-icon {
    font-size: 16px;
}

.kids-header-topbar .topbar-divider {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.3);
}

/* Main Header */
.kids-header-main {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    transition: var(--kids-transition);
}

.kids-header-main.sticky-header.header-pinned {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: var(--kids-shadow);
    background: white;
}

.kids-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: nowrap;
}

/* Logo */
.kids-header-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.kids-header-logo img {
    max-height: 45px;
    width: auto;
}

.kids-header-logo {
    flex-shrink: 0;
}

.kids-logo-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.kids-logo-text .logo-icon {
    font-size: 28px;
    animation: bounce-slow 2s ease-in-out infinite;
}

.kids-logo-text .logo-name {
    font-family: var(--kids-font-primary);
    font-size: 20px;
    font-weight: 800;
    background: var(--kids-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.kids-nav {
    display: flex;
    justify-content: center;
    flex-shrink: 0;
}

.kids-nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.kids-nav-item {
    position: relative;
    white-space: nowrap;
}

.kids-nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 14px;
    font-family: var(--kids-font-secondary);
    font-size: 14px;
    font-weight: 600;
    color: var(--kids-text-dark);
    text-decoration: none;
    border-radius: 0;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.kids-nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--kids-primary);
    border-radius: 3px 3px 0 0;
    transition: width 0.3s ease;
}

.kids-nav-link .nav-emoji {
    font-size: 18px;
}

.kids-nav-link .dropdown-arrow {
    font-size: 10px;
    transition: var(--kids-transition);
}

.kids-nav-item:hover .kids-nav-link,
.kids-nav-item.active .kids-nav-link {
    color: var(--kids-primary);
}

.kids-nav-item:hover .kids-nav-link::after,
.kids-nav-item.active .kids-nav-link::after {
    width: 100%;
}

.kids-nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Mega Menu */
.kids-mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 500px;
    background: white;
    border-radius: var(--kids-radius);
    box-shadow: var(--kids-shadow-lg);
    border: none;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--kids-transition);
    margin-top: 10px;
}

.kids-nav-item:hover .kids-mega-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 5px;
}

.kids-mega-menu .mega-menu-inner {
    padding: 25px;
}

.kids-mega-menu .mega-menu-header {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px dashed rgba(108, 99, 255, 0.1);
}

.kids-mega-menu .mega-menu-header h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 20px;
    margin-bottom: 5px;
}

.kids-mega-menu .mega-menu-header .header-emoji {
    font-size: 24px;
}

.kids-mega-menu .mega-menu-header p {
    font-size: 14px;
    color: var(--kids-text-gray);
    margin: 0;
}

.kids-mega-menu .mega-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.kids-mega-menu .mega-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: var(--kids-bg-light);
    border-radius: var(--kids-radius-sm);
    text-decoration: none;
    transition: var(--kids-transition);
}

.kids-mega-menu .mega-menu-item:hover {
    background: var(--kids-primary);
    transform: translateY(-2px);
}

.kids-mega-menu .mega-menu-item .item-emoji {
    font-size: 22px;
}

.kids-mega-menu .mega-menu-item .item-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--kids-text-dark);
    transition: var(--kids-transition);
}

.kids-mega-menu .mega-menu-item:hover .item-text {
    color: white;
}

.kids-mega-menu .mega-menu-footer {
    margin-top: 20px;
    text-align: center;
}

.kids-mega-menu .view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--kids-font-primary);
    font-size: 15px;
    font-weight: 600;
    color: var(--kids-primary);
    text-decoration: none;
    transition: var(--kids-transition);
}

.kids-mega-menu .view-all-link:hover {
    color: var(--kids-primary-dark);
    gap: 12px;
}

/* Dropdown Menu */
.kids-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    border-radius: var(--kids-radius);
    box-shadow: var(--kids-shadow-lg);
    border: none;
    padding: 15px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: var(--kids-transition);
    margin-top: 10px;
}

.kids-nav-item:hover .kids-dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 5px;
}

.kids-dropdown-menu li {
    margin-bottom: 5px;
}

.kids-dropdown-menu li:last-child {
    margin-bottom: 0;
}

.kids-dropdown-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 500;
    color: var(--kids-text-dark);
    text-decoration: none;
    border-radius: var(--kids-radius-sm);
    transition: var(--kids-transition);
}

.kids-dropdown-link:hover {
    background: var(--kids-bg-blue-light);
    color: var(--kids-primary);
}

.kids-dropdown-link .link-dot {
    width: 6px;
    height: 6px;
    background: var(--kids-primary);
    border-radius: 50%;
    opacity: 0;
    transition: var(--kids-transition);
}

.kids-dropdown-link:hover .link-dot {
    opacity: 1;
}

/* Header Actions */
.kids-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* Search */
.kids-search-wrapper {
    position: relative;
}

.kids-search-toggle {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--kids-bg-light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--kids-transition);
}

.kids-search-toggle:hover {
    background: var(--kids-bg-blue-light);
    transform: scale(1.1);
}

.kids-search-toggle .search-emoji {
    font-size: 20px;
}

.kids-search-collapse {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    z-index: 100;
}

.kids-search-form {
    display: flex;
    align-items: center;
    background: white;
    border-radius: var(--kids-radius-full);
    box-shadow: var(--kids-shadow-lg);
    padding: 5px;
    width: 300px;
}

.kids-search-input {
    flex: 1;
    border: none;
    padding: 10px 15px;
    font-size: 14px;
    background: transparent;
    outline: none;
}

.kids-search-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--kids-gradient-1);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: var(--kids-transition);
}

.kids-search-btn:hover {
    transform: scale(1.1);
}

/* Cart */
.kids-cart-btn {
    position: relative;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--kids-bg-light);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--kids-transition);
}

.kids-cart-btn:hover {
    background: var(--kids-bg-yellow-light);
    transform: scale(1.05);
}

.kids-cart-btn .cart-emoji {
    font-size: 18px;
}

.kids-cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--kids-orange);
    color: white;
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    padding: 0 5px;
}

/* Notification */
.kids-notification-btn {
    position: relative;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--kids-bg-light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--kids-transition);
}

.kids-notification-btn:hover {
    background: var(--kids-bg-pink-light);
    transform: scale(1.05);
}

.kids-notification-btn .notification-emoji {
    font-size: 18px;
}

.kids-notification-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: var(--kids-orange);
    border-radius: 50%;
    border: 2px solid white;
}

/* User Profile */
.kids-profile-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px 6px 6px;
    background: var(--kids-bg-light);
    border-radius: var(--kids-radius-full);
    text-decoration: none;
    transition: var(--kids-transition);
}

.kids-profile-toggle:hover {
    background: var(--kids-bg-blue-light);
}

.kids-profile-toggle::after {
    display: none;
}

.kids-avatar {
    position: relative;
    width: 40px;
    height: 40px;
}

.kids-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid white;
}

.kids-avatar .avatar-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    font-size: 14px;
    animation: twinkle 2s ease-in-out infinite;
}

.kids-user-info {
    display: flex;
    flex-direction: column;
}

.kids-user-info .user-greeting {
    font-size: 11px;
    color: var(--kids-text-gray);
}

.kids-user-info .user-name {
    font-family: var(--kids-font-primary);
    font-size: 14px;
    font-weight: 700;
    color: var(--kids-text-dark);
}

/* Profile Dropdown */
.kids-profile-dropdown {
    min-width: 280px;
    background: white;
    border-radius: var(--kids-radius);
    box-shadow: var(--kids-shadow-lg);
    border: none;
    padding: 0;
    overflow: hidden;
}

.kids-profile-dropdown .profile-dropdown-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--kids-gradient-1);
}

.kids-profile-dropdown .profile-avatar-large {
    position: relative;
    width: 60px;
    height: 60px;
}

.kids-profile-dropdown .profile-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid white;
}

.kids-profile-dropdown .profile-avatar-large .level-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    font-size: 20px;
}

.kids-profile-dropdown .profile-info h5 {
    color: white;
    font-size: 16px;
    margin-bottom: 2px;
}

.kids-profile-dropdown .profile-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    margin: 0;
}

.kids-profile-dropdown .profile-dropdown-body {
    padding: 15px;
}

/* Auth Buttons */
.kids-auth-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.kids-login-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    font-family: var(--kids-font-secondary);
    font-size: 14px;
    font-weight: 600;
    color: var(--kids-text-dark);
    background: var(--kids-bg-light);
    border-radius: var(--kids-radius-full);
    text-decoration: none;
    transition: var(--kids-transition);
}

.kids-login-btn:hover {
    background: var(--kids-bg-blue-light);
    color: var(--kids-primary);
    transform: translateY(-2px);
}

.kids-register-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    font-family: var(--kids-font-secondary);
    font-size: 14px;
    font-weight: 600;
    color: white;
    background: var(--kids-gradient-1);
    border-radius: var(--kids-radius-full);
    text-decoration: none;
    transition: var(--kids-transition);
    box-shadow: var(--kids-shadow-sm);
}

.kids-register-btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: var(--kids-shadow);
    color: white;
}

.kids-login-btn .btn-emoji,
.kids-register-btn .btn-emoji {
    font-size: 16px;
}

/* Mobile Toggle */
.kids-mobile-toggle {
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    background: var(--kids-bg-light);
    border: none;
    border-radius: var(--kids-radius-sm);
    cursor: pointer;
    padding: 0;
}

.kids-mobile-toggle .toggle-bar {
    width: 22px;
    height: 3px;
    background: var(--kids-primary);
    border-radius: 2px;
    transition: var(--kids-transition);
}

/* Language Modal */
.kids-modal-content {
    border-radius: var(--kids-radius);
    border: none;
    overflow: hidden;
}

.kids-modal-header {
    background: var(--kids-gradient-1);
    padding: 20px 25px;
    border: none;
}

.kids-modal-header .modal-title {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-family: var(--kids-font-primary);
    font-size: 20px;
}

.kids-modal-header .modal-emoji {
    font-size: 24px;
}

.kids-modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.kids-setting-section {
    background: var(--kids-bg-light);
    border-radius: var(--kids-radius);
    padding: 20px;
}

.kids-setting-section .section-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--kids-font-primary);
    font-size: 16px;
    margin-bottom: 15px;
}

.kids-setting-section .title-emoji {
    font-size: 20px;
}

.kids-language-list,
.kids-currency-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 200px;
    overflow-y: auto;
}

.kids-language-list li,
.kids-currency-list li {
    margin-bottom: 8px;
}

.kids-language-list li:last-child,
.kids-currency-list li:last-child {
    margin-bottom: 0;
}

.kids-language-list li a,
.kids-currency-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background: white;
    border-radius: var(--kids-radius-sm);
    text-decoration: none;
    color: var(--kids-text-dark);
    transition: var(--kids-transition);
}

.kids-language-list li a:hover,
.kids-currency-list li a:hover {
    background: var(--kids-bg-blue-light);
}

.kids-language-list li.active a,
.kids-currency-list li.active a {
    background: var(--kids-primary);
    color: white;
}

.kids-language-list li a img {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 4px;
}

.kids-currency-list li a .currency-code {
    font-weight: 700;
    min-width: 40px;
}

.kids-language-list li a .check-icon,
.kids-currency-list li a .check-icon {
    margin-left: auto;
    font-weight: 700;
}

.kids-modal-footer {
    padding: 20px 0 0;
    border: none;
    justify-content: center;
}

/* Mobile Panel */
.kids-panel-inner {
    background: white;
    padding: 0;
}

.mobile-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: var(--kids-gradient-1);
}

.mobile-panel-header .mobile-logo img {
    max-height: 40px;
}

.mobile-panel-header .panel-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 18px;
}

.mobile-user-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--kids-bg-light);
    margin: 15px;
    border-radius: var(--kids-radius);
}

.mobile-user-card .user-avatar {
    position: relative;
    width: 50px;
    height: 50px;
}

.mobile-user-card .user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: var(--kids-shadow-sm);
}

.mobile-user-card .user-avatar .avatar-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    font-size: 16px;
}

.mobile-user-card .user-info {
    display: flex;
    flex-direction: column;
}

.mobile-user-card .user-greeting {
    font-size: 12px;
    color: var(--kids-text-gray);
}

.mobile-user-card .user-name {
    font-family: var(--kids-font-primary);
    font-size: 16px;
    font-weight: 700;
    color: var(--kids-text-dark);
}

.mobile-search {
    padding: 0 15px;
    margin-bottom: 15px;
}

.mobile-search form {
    display: flex;
    align-items: center;
    background: var(--kids-bg-light);
    border-radius: var(--kids-radius-full);
    padding: 5px;
}

.mobile-search input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 15px;
    font-size: 14px;
    outline: none;
}

.mobile-search button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--kids-gradient-1);
    border: none;
    border-radius: 50%;
    color: white;
}

.kids-mobile-nav {
    padding: 15px;
}

.kids-mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kids-mobile-nav > ul > li {
    margin-bottom: 5px;
}

.kids-mobile-nav > ul > li > a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    font-family: var(--kids-font-secondary);
    font-size: 15px;
    font-weight: 600;
    color: var(--kids-text-dark);
    text-decoration: none;
    border-radius: var(--kids-radius-sm);
    transition: var(--kids-transition);
}

.kids-mobile-nav > ul > li > a:hover,
.kids-mobile-nav > ul > li.active > a {
    background: var(--kids-bg-blue-light);
    color: var(--kids-primary);
}

.kids-mobile-nav > ul > li > a .nav-emoji {
    font-size: 20px;
}

.kids-mobile-nav .sub-menu {
    list-style: none;
    padding: 5px 0 5px 45px;
    margin: 0;
}

.kids-mobile-nav .sub-menu li a {
    display: block;
    padding: 8px 15px;
    font-size: 14px;
    color: var(--kids-text-gray);
    text-decoration: none;
    border-radius: var(--kids-radius-sm);
    transition: var(--kids-transition);
}

.kids-mobile-nav .sub-menu li a:hover {
    background: var(--kids-bg-light);
    color: var(--kids-primary);
}

.mobile-auth {
    padding: 15px;
    border-top: 1px solid var(--kids-bg-light);
}

.mobile-panel-footer {
    padding: 20px 15px;
    background: var(--kids-bg-light);
    margin-top: auto;
}

.mobile-panel-footer .footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--kids-text-gray);
    margin-bottom: 8px;
}

.mobile-panel-footer .footer-item:last-child {
    margin-bottom: 0;
}

.mobile-panel-footer .item-icon {
    font-size: 16px;
}

/* Header Responsive */
@media (max-width: 1199px) {
    .kids-nav-menu {
        gap: 4px;
    }

    .kids-nav-link {
        padding: 8px 12px;
        font-size: 14px;
    }

    .kids-mega-menu {
        min-width: 450px;
    }

    .kids-mega-menu .mega-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .kids-header-topbar {
        display: none;
    }

    .kids-header {
        position: relative;
    }

    .kids-header-main {
        padding: 10px 0;
    }

    .kids-auth-buttons {
        display: none;
    }
}

@media (max-width: 767px) {
    .kids-header-logo img {
        max-height: 40px;
    }

    .kids-logo-text .logo-icon {
        font-size: 28px;
    }

    .kids-logo-text .logo-name {
        font-size: 18px;
    }

    .kids-search-wrapper {
        display: none;
    }

    .kids-header-actions {
        gap: 10px;
    }
}

/*==============================================================================
  Hero Section - Playful & Engaging
==============================================================================*/
.kids-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(180deg, #e8f4fd 0%, #fff9f0 100%);
    overflow: hidden;
    padding: 100px 0 60px;
}

/* Animated Background Elements */
.kids-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    animation: float-bounce 6s ease-in-out infinite;
}

.floating-shape.shape-1 {
    width: 150px;
    height: 150px;
    background: linear-gradient(
        135deg,
        rgba(255, 107, 107, 0.3),
        rgba(255, 217, 61, 0.2)
    );
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-shape.shape-2 {
    width: 100px;
    height: 100px;
    background: linear-gradient(
        135deg,
        rgba(107, 203, 119, 0.3),
        rgba(0, 217, 255, 0.2)
    );
    top: 60%;
    left: 10%;
    animation-delay: 1s;
}

.floating-shape.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(
        135deg,
        rgba(77, 150, 255, 0.2),
        rgba(197, 108, 240, 0.2)
    );
    top: 20%;
    right: 5%;
    animation-delay: 2s;
}

.floating-shape.shape-4 {
    width: 80px;
    height: 80px;
    background: linear-gradient(
        135deg,
        rgba(255, 107, 157, 0.3),
        rgba(255, 107, 107, 0.2)
    );
    bottom: 20%;
    right: 15%;
    animation-delay: 1.5s;
}

/* Floating Stars */
.floating-star {
    position: absolute;
    font-size: 30px;
    animation: twinkle 2s ease-in-out infinite;
}

.floating-star:nth-child(1) {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
    color: var(--kids-yellow);
}
.floating-star:nth-child(2) {
    top: 25%;
    right: 25%;
    animation-delay: 0.5s;
    color: var(--kids-orange);
}
.floating-star:nth-child(3) {
    top: 70%;
    left: 15%;
    animation-delay: 1s;
    color: var(--kids-pink);
}
.floating-star:nth-child(4) {
    bottom: 30%;
    right: 10%;
    animation-delay: 1.5s;
    color: var(--kids-cyan);
}

/* Cloud decorations */
.floating-cloud {
    position: absolute;
    background: white;
    border-radius: 50px;
    opacity: 0.8;
    animation: cloud-float 20s linear infinite;
}

.floating-cloud::before,
.floating-cloud::after {
    content: "";
    position: absolute;
    background: white;
    border-radius: 50%;
}

.floating-cloud.cloud-1 {
    width: 100px;
    height: 40px;
    top: 10%;
    left: -100px;
}

.floating-cloud.cloud-1::before {
    width: 50px;
    height: 50px;
    top: -25px;
    left: 15px;
}

.floating-cloud.cloud-1::after {
    width: 35px;
    height: 35px;
    top: -15px;
    left: 50px;
}

.floating-cloud.cloud-2 {
    width: 80px;
    height: 32px;
    top: 25%;
    left: -80px;
    animation-delay: 5s;
    animation-duration: 25s;
}

.floating-cloud.cloud-2::before {
    width: 40px;
    height: 40px;
    top: -20px;
    left: 10px;
}

.floating-cloud.cloud-2::after {
    width: 28px;
    height: 28px;
    top: -12px;
    left: 40px;
}

@keyframes cloud-float {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(100vw + 200px));
    }
}

@keyframes float-bounce {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(5deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(20px) rotate(-5deg);
    }
}

@keyframes twinkle {
    0%,
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.3) rotate(180deg);
        opacity: 0.7;
    }
}

/* Hero Content */
.kids-hero-content {
    position: relative;
    z-index: 2;
}

.kids-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: white;
    border-radius: var(--kids-radius-full);
    box-shadow: var(--kids-shadow);
    margin-bottom: 24px;
    animation: bounce-in 0.8s ease-out;
}

.kids-hero-badge .badge-emoji {
    font-size: 24px;
    animation: wiggle 2s ease-in-out infinite;
}

.kids-hero-badge .badge-text {
    font-family: var(--kids-font-primary);
    font-weight: 600;
    font-size: 16px;
    background: var(--kids-gradient-rainbow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes wiggle {
    0%,
    100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

@keyframes bounce-in {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.kids-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--kids-text-dark);
}

.kids-hero-title .highlight {
    position: relative;
    display: inline-block;
}

.kids-hero-title .highlight-orange {
    color: var(--kids-orange);
}

.kids-hero-title .highlight-blue {
    color: var(--kids-blue);
}

.kids-hero-title .highlight-green {
    color: var(--kids-green);
}

.kids-hero-title .underline-wave {
    position: relative;
}

.kids-hero-title .underline-wave::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20'%3E%3Cpath d='M0 10 Q 25 0, 50 10 T 100 10' fill='none' stroke='%23FFD93D' stroke-width='4'/%3E%3C/svg%3E")
        repeat-x;
    background-size: 50px 12px;
}

.kids-hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: var(--kids-text-gray);
    margin-bottom: 32px;
    max-width: 500px;
}

/* Kids Buttons */
.kids-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-family: var(--kids-font-primary);
    font-size: 18px;
    font-weight: 700;
    border-radius: var(--kids-radius-full);
    text-decoration: none;
    transition: var(--kids-transition-bounce);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.kids-btn-primary {
    background: var(--kids-gradient-5);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.kids-btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.5);
    color: white;
}

.kids-btn-primary .btn-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--kids-transition);
}

.kids-btn-primary:hover .btn-icon {
    transform: translateX(5px);
}

.kids-btn-secondary {
    background: white;
    color: var(--kids-text-dark);
    border: 3px solid var(--kids-yellow);
    box-shadow: var(--kids-shadow);
}

.kids-btn-secondary:hover {
    background: var(--kids-yellow);
    transform: translateY(-5px) scale(1.05);
    color: var(--kids-text-dark);
}

.kids-btn-secondary .play-circle {
    width: 40px;
    height: 40px;
    background: var(--kids-gradient-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-left: -8px;
}

/* Hero CTA */
.kids-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
}

/* Hero Stats */
.kids-hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.kids-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: white;
    border-radius: var(--kids-radius);
    box-shadow: var(--kids-shadow-sm);
    transition: var(--kids-transition);
}

.kids-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--kids-shadow);
}

.kids-stat-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--kids-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.kids-stat-icon.orange {
    background: rgba(255, 107, 107, 0.15);
}
.kids-stat-icon.blue {
    background: rgba(77, 150, 255, 0.15);
}
.kids-stat-icon.green {
    background: rgba(107, 203, 119, 0.15);
}

.kids-stat-content .stat-number {
    font-family: var(--kids-font-primary);
    font-size: 24px;
    font-weight: 800;
    color: var(--kids-text-dark);
    display: block;
}

.kids-stat-content .stat-label {
    font-size: 14px;
    color: var(--kids-text-gray);
}

/* Hero Visual */
.kids-hero-visual {
    position: relative;
    z-index: 2;
}

.kids-hero-image-wrapper {
    position: relative;
    max-width: 550px;
    margin: 0 auto;
}

.kids-main-image {
    width: 100%;
    border-radius: var(--kids-radius-xl);
    box-shadow: var(--kids-shadow-lg);
    animation: float-gentle 4s ease-in-out infinite;
}

@keyframes float-gentle {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Floating Cards around hero image */
.kids-floating-card {
    position: absolute;
    background: white;
    border-radius: var(--kids-radius);
    padding: 16px 20px;
    box-shadow: var(--kids-shadow);
    animation: float-bounce 5s ease-in-out infinite;
}

.kids-floating-card.card-trophy {
    top: 10%;
    left: -30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.kids-floating-card.card-trophy .trophy-icon {
    font-size: 36px;
}

.kids-floating-card.card-trophy .trophy-text {
    font-family: var(--kids-font-primary);
    font-weight: 700;
    color: var(--kids-text-dark);
}

.kids-floating-card.card-trophy .trophy-text span {
    display: block;
    font-size: 12px;
    color: var(--kids-text-gray);
    font-weight: 500;
}

.kids-floating-card.card-students {
    bottom: 20%;
    left: -40px;
    animation-delay: 1s;
}

.students-avatars {
    display: flex;
    margin-bottom: 8px;
}

.students-avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid white;
    margin-left: -12px;
    object-fit: cover;
}

.students-avatars img:first-child {
    margin-left: 0;
}

.students-avatars .avatar-more {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--kids-gradient-5);
    color: white;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -12px;
    border: 3px solid white;
}

.kids-floating-card.card-students .card-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--kids-text-dark);
}

.kids-floating-card.card-rating {
    top: 30%;
    right: -20px;
    animation-delay: 2s;
}

.card-rating .rating-stars {
    display: flex;
    gap: 4px;
    color: var(--kids-yellow);
    font-size: 18px;
    margin-bottom: 4px;
}

.card-rating .rating-text {
    font-family: var(--kids-font-primary);
    font-weight: 700;
    font-size: 14px;
    color: var(--kids-text-dark);
}

.kids-floating-card.card-progress {
    bottom: 5%;
    right: -10px;
    animation-delay: 0.5s;
}

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

.card-progress .progress-icon {
    font-size: 20px;
}

.card-progress .progress-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--kids-text-dark);
}

.kids-progress-bar {
    width: 120px;
    height: 10px;
    background: #e8e8e8;
    border-radius: 10px;
    overflow: hidden;
}

.kids-progress-bar .progress-fill {
    height: 100%;
    background: var(--kids-gradient-4);
    border-radius: 10px;
    width: 75%;
    animation: progress-grow 2s ease-out;
}

@keyframes progress-grow {
    0% {
        width: 0;
    }
    100% {
        width: 75%;
    }
}

/*==============================================================================
  Section Styles
==============================================================================*/
.kids-section {
    padding: 80px 0;
    position: relative;
}

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

.kids-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: white;
    border-radius: var(--kids-radius-full);
    box-shadow: var(--kids-shadow-sm);
    margin-bottom: 16px;
}

.kids-section-badge .badge-emoji {
    font-size: 20px;
}

.kids-section-badge .badge-text {
    font-family: var(--kids-font-primary);
    font-weight: 600;
    font-size: 14px;
    color: var(--kids-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.kids-section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--kids-text-dark);
    margin-bottom: 16px;
}

.kids-section-subtitle {
    font-size: 18px;
    color: var(--kids-text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/*==============================================================================
  Course Cards - Fun & Engaging
==============================================================================*/
.kids-courses-section {
    background: linear-gradient(
        180deg,
        var(--kids-bg-cream) 0%,
        var(--kids-bg-blue-light) 100%
    );
}

/* Category Pills */
.kids-category-pills {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.kids-pill {
    padding: 12px 28px;
    font-family: var(--kids-font-primary);
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: var(--kids-radius-full);
    cursor: pointer;
    transition: var(--kids-transition-bounce);
    background: white;
    color: var(--kids-text-dark);
    box-shadow: var(--kids-shadow-sm);
}

.kids-pill:hover {
    transform: translateY(-3px);
    box-shadow: var(--kids-shadow);
}

.kids-pill.active {
    background: var(--kids-gradient-5);
    color: white;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.kids-pill .pill-emoji {
    margin-right: 8px;
}

/* Course Card */
.kids-course-card {
    background: white;
    border-radius: var(--kids-radius-lg);
    overflow: hidden;
    box-shadow: var(--kids-shadow);
    transition: var(--kids-transition-bounce);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.kids-course-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--kids-gradient-rainbow);
}

.kids-course-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: var(--kids-shadow-lg);
}

.kids-course-thumb {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.kids-course-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.kids-course-card:hover .kids-course-thumb img {
    transform: scale(1.1);
}

.kids-course-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 8px 16px;
    background: white;
    border-radius: var(--kids-radius-full);
    font-family: var(--kids-font-primary);
    font-weight: 600;
    font-size: 13px;
    color: var(--kids-primary);
    box-shadow: var(--kids-shadow-sm);
}

.kids-course-badge .badge-emoji {
    margin-right: 6px;
}

.kids-course-age {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 14px;
    background: var(--kids-yellow);
    border-radius: var(--kids-radius-full);
    font-family: var(--kids-font-primary);
    font-weight: 700;
    font-size: 12px;
    color: var(--kids-text-dark);
}

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

.kids-course-title {
    font-family: var(--kids-font-primary);
    font-size: 20px;
    font-weight: 700;
    color: var(--kids-text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.kids-course-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.kids-course-title a:hover {
    color: var(--kids-primary);
}

.kids-course-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.kids-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--kids-text-gray);
}

.kids-meta-item i {
    color: var(--kids-primary);
}

.kids-course-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 2px dashed #e8e8e8;
    margin-top: auto;
}

.kids-course-price {
    font-family: var(--kids-font-primary);
}

.kids-price-current {
    font-size: 24px;
    font-weight: 800;
    color: var(--kids-green);
}

.kids-price-original {
    font-size: 14px;
    color: var(--kids-text-light);
    text-decoration: line-through;
    margin-left: 8px;
}

.kids-price-free {
    font-size: 20px;
    font-weight: 800;
    color: var(--kids-green);
    display: flex;
    align-items: center;
    gap: 6px;
}

.kids-enroll-btn {
    padding: 12px 24px;
    background: var(--kids-gradient-3);
    color: white;
    font-family: var(--kids-font-primary);
    font-weight: 700;
    font-size: 14px;
    border: none;
    border-radius: var(--kids-radius-full);
    cursor: pointer;
    transition: var(--kids-transition-bounce);
    text-decoration: none;
}

.kids-enroll-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(77, 150, 255, 0.4);
    color: white;
}

/*==============================================================================
  Counter Section - Animated Stats
==============================================================================*/
.kids-counter-section {
    background: var(--kids-gradient-hero);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.kids-counter-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.1'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.kids-counter-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    z-index: 1;
}

.kids-counter-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--kids-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    animation: bounce-slow 3s ease-in-out infinite;
}

@keyframes bounce-slow {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.kids-counter-number {
    font-family: var(--kids-font-primary);
    font-size: 56px;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.kids-counter-label {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/*==============================================================================
  Instructor Section - Fun Teacher Cards
==============================================================================*/
.kids-instructor-section {
    background: var(--kids-bg-pink-light);
}

.kids-instructor-card {
    background: white;
    border-radius: var(--kids-radius-lg);
    overflow: hidden;
    box-shadow: var(--kids-shadow);
    transition: var(--kids-transition-bounce);
    text-align: center;
}

.kids-instructor-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--kids-shadow-lg);
}

.kids-instructor-image {
    position: relative;
    padding: 30px 30px 0;
    background: linear-gradient(
        180deg,
        var(--kids-bg-yellow-light) 0%,
        white 100%
    );
}

.kids-instructor-image img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: var(--kids-shadow);
    transition: var(--kids-transition);
}

.kids-instructor-card:hover .kids-instructor-image img {
    transform: scale(1.1) rotate(5deg);
}

.kids-instructor-badge {
    position: absolute;
    bottom: 10px;
    right: 30%;
    width: 40px;
    height: 40px;
    background: var(--kids-gradient-4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border: 3px solid white;
    box-shadow: var(--kids-shadow-sm);
}

.kids-instructor-content {
    padding: 24px;
}

.kids-instructor-name {
    font-family: var(--kids-font-primary);
    font-size: 22px;
    font-weight: 700;
    color: var(--kids-text-dark);
    margin-bottom: 6px;
}

.kids-instructor-name a {
    color: inherit;
    text-decoration: none;
}

.kids-instructor-role {
    font-size: 14px;
    color: var(--kids-primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.kids-instructor-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 16px;
    border-top: 2px dashed #e8e8e8;
}

.kids-instructor-stat {
    text-align: center;
}

.kids-instructor-stat-value {
    font-family: var(--kids-font-primary);
    font-size: 20px;
    font-weight: 700;
    color: var(--kids-orange);
    display: block;
}

.kids-instructor-stat-label {
    font-size: 12px;
    color: var(--kids-text-gray);
}

/*==============================================================================
  Testimonial Section
==============================================================================*/
.kids-testimonial-section {
    background: linear-gradient(
        180deg,
        var(--kids-bg-cream) 0%,
        var(--kids-bg-green-light) 100%
    );
}

.kids-testimonial-card {
    background: white;
    border-radius: var(--kids-radius-xl);
    padding: 40px;
    box-shadow: var(--kids-shadow);
    position: relative;
    transition: var(--kids-transition);
}

.kids-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--kids-shadow-lg);
}

.kids-testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-family: var(--kids-font-primary);
    font-size: 120px;
    color: rgba(108, 99, 255, 0.1);
    line-height: 1;
}

.kids-testimonial-content {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.kids-testimonial-avatar {
    flex-shrink: 0;
}

.kids-testimonial-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--kids-yellow);
}

.kids-testimonial-body {
    flex: 1;
}

.kids-testimonial-rating {
    display: flex;
    gap: 4px;
    color: var(--kids-yellow);
    font-size: 20px;
    margin-bottom: 12px;
}

.kids-testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--kids-text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.kids-testimonial-author h5 {
    font-family: var(--kids-font-primary);
    font-size: 18px;
    font-weight: 700;
    color: var(--kids-text-dark);
    margin-bottom: 4px;
}

.kids-testimonial-author p {
    font-size: 14px;
    color: var(--kids-primary);
    margin: 0;
}

/*==============================================================================
  CTA Section
==============================================================================*/
.kids-cta-section {
    background: var(--kids-gradient-5);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.kids-cta-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.kids-cta-section::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.kids-cta-content {
    position: relative;
    z-index: 1;
    color: white;
}

.kids-cta-title {
    font-family: var(--kids-font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.kids-cta-description {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 32px;
    max-width: 500px;
}

.kids-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: white;
    color: var(--kids-orange);
    font-family: var(--kids-font-primary);
    font-size: 18px;
    font-weight: 700;
    border-radius: var(--kids-radius-full);
    text-decoration: none;
    transition: var(--kids-transition-bounce);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.kids-cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: var(--kids-orange);
}

.kids-cta-image {
    position: relative;
    z-index: 1;
}

.kids-cta-image img {
    max-width: 100%;
    border-radius: var(--kids-radius-xl);
    box-shadow: var(--kids-shadow-lg);
}

/*==============================================================================
  Responsive Design
==============================================================================*/
@media (max-width: 991px) {
    .kids-hero {
        padding-top: 80px;
    }

    .kids-hero-content {
        text-align: center;
        margin-bottom: 50px;
    }

    .kids-hero-description {
        margin: 0 auto 32px;
    }

    .kids-hero-cta {
        justify-content: center;
    }

    .kids-hero-stats {
        justify-content: center;
    }

    .kids-floating-card {
        display: none;
    }

    .kids-hero-image-wrapper {
        max-width: 400px;
    }
}

@media (max-width: 767px) {
    .kids-hero-title {
        font-size: 2rem;
    }

    .kids-hero-description {
        font-size: 16px;
    }

    .kids-btn {
        padding: 14px 28px;
        font-size: 16px;
    }

    .kids-hero-stats {
        flex-direction: column;
        align-items: center;
    }

    .kids-stat-item {
        width: 100%;
        max-width: 280px;
    }

    .kids-counter-number {
        font-size: 40px;
    }

    .kids-counter-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .kids-testimonial-content {
        flex-direction: column;
        text-align: center;
    }

    .kids-testimonial-card {
        padding: 24px;
    }
}

@media (max-width: 575px) {
    .kids-section {
        padding: 50px 0;
    }

    .kids-section-title {
        font-size: 1.75rem;
    }

    .kids-hero-cta {
        flex-direction: column;
    }

    .kids-btn {
        width: 100%;
        justify-content: center;
    }

    .kids-category-pills {
        flex-direction: column;
        align-items: center;
    }

    .kids-pill {
        width: 100%;
        max-width: 280px;
    }
}

/*==============================================================================
  Enhanced Section Styles - Visual Elements & Decorations
==============================================================================*/

/* Section Background Decorations */
.kids-section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.floating-decoration {
    position: absolute;
    font-size: 40px;
    opacity: 0.15;
    animation: float-rotate 8s ease-in-out infinite;
}

.floating-decoration.deco-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}
.floating-decoration.deco-2 {
    top: 30%;
    right: 8%;
    animation-delay: 1s;
}
.floating-decoration.deco-3 {
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}
.floating-decoration.deco-4 {
    bottom: 40%;
    right: 5%;
    animation-delay: 3s;
}
.floating-decoration.deco-5 {
    top: 50%;
    left: 50%;
    animation-delay: 1.5s;
}

@keyframes float-rotate {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(10deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(20px) rotate(-10deg);
    }
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(
        135deg,
        rgba(108, 99, 255, 0.1),
        rgba(255, 107, 107, 0.1)
    );
    animation: bubble-float 10s ease-in-out infinite;
}

.bubble.bubble-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}
.bubble.bubble-2 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 5%;
    animation-delay: 2s;
}
.bubble.bubble-3 {
    width: 80px;
    height: 80px;
    top: 60%;
    right: 15%;
    animation-delay: 4s;
}

@keyframes bubble-float {
    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) scale(1.1);
        opacity: 0.5;
    }
}

/* Section Illustrations */
.kids-section-illustration {
    position: relative;
    text-align: center;
    padding: 20px;
}

.section-illust-img {
    max-width: 100%;
    max-height: 300px;
    border-radius: var(--kids-radius-xl);
    box-shadow: var(--kids-shadow-lg);
    animation: float-gentle 4s ease-in-out infinite;
}

.kids-section-illustration .illust-badge {
    position: absolute;
    font-size: 36px;
    animation: bounce-slow 2s ease-in-out infinite;
}

.kids-section-illustration .badge-star {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.kids-section-illustration .badge-rocket {
    bottom: 20%;
    left: 10%;
    animation-delay: 0.5s;
}

/* View All Wrapper */
.kids-view-all-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    position: relative;
}

.view-all-decoration {
    font-size: 32px;
    animation: twinkle 2s ease-in-out infinite;
}

.view-all-decoration.left {
    animation-delay: 0s;
}
.view-all-decoration.right {
    animation-delay: 1s;
}

.kids-btn-lg {
    padding: 20px 48px;
    font-size: 20px;
}

.kids-btn .btn-emoji {
    font-size: 20px;
    margin-left: 8px;
}

/* Empty State Styles */
.kids-empty-state {
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: var(--kids-radius-xl);
    box-shadow: var(--kids-shadow);
    position: relative;
    overflow: hidden;
}

.kids-empty-state::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--kids-gradient-rainbow);
}

.empty-illustration {
    margin-bottom: 30px;
}

.empty-illustration img {
    max-width: 280px;
    max-height: 200px;
    border-radius: var(--kids-radius);
}

.empty-content h4 {
    font-family: var(--kids-font-primary);
    font-size: 24px;
    color: var(--kids-text-dark);
    margin-bottom: 12px;
}

.empty-content p {
    color: var(--kids-text-gray);
    font-size: 16px;
    margin-bottom: 24px;
}

.empty-decoration {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 24px;
    margin-top: 20px;
}

.empty-decoration span {
    animation: bounce-slow 2s ease-in-out infinite;
}

.empty-decoration span:nth-child(2) {
    animation-delay: 0.3s;
}
.empty-decoration span:nth-child(3) {
    animation-delay: 0.6s;
}

/*==============================================================================
  Enhanced Counter Section
==============================================================================*/
.counter-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.bg-circle.circle-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
}
.bg-circle.circle-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    right: 10%;
}
.bg-circle.circle-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: -20px;
}

.floating-emoji {
    position: absolute;
    font-size: 30px;
    animation: float-bounce 5s ease-in-out infinite;
    opacity: 0.5;
}

.floating-emoji.emoji-1 {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}
.floating-emoji.emoji-2 {
    top: 25%;
    right: 15%;
    animation-delay: 1s;
}
.floating-emoji.emoji-3 {
    bottom: 30%;
    left: 15%;
    animation-delay: 2s;
}
.floating-emoji.emoji-4 {
    bottom: 20%;
    right: 25%;
    animation-delay: 1.5s;
}

.counter-illustration {
    position: relative;
    text-align: center;
}

.counter-illust-main {
    max-width: 100%;
    max-height: 350px;
    border-radius: var(--kids-radius-xl);
    box-shadow: var(--kids-shadow-lg);
    animation: float-gentle 4s ease-in-out infinite;
}

.illust-float {
    position: absolute;
    font-size: 40px;
    animation: bounce-slow 2s ease-in-out infinite;
}

.illust-float.float-star {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}
.illust-float.float-heart {
    bottom: 15%;
    left: 10%;
    animation-delay: 0.5s;
}

/* Enhanced Counter Cards */
.kids-counter-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--kids-radius-lg);
    padding: 30px 20px;
    position: relative;
    transition: var(--kids-transition);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.kids-counter-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
}

.kids-counter-icon-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.kids-counter-icon-wrap .icon-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px dashed rgba(255, 255, 255, 0.3);
    border-radius: var(--kids-radius-lg);
    animation: spin-slow 10s linear infinite;
}

@keyframes spin-slow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.counter-deco {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    animation: twinkle 2s ease-in-out infinite;
}

.counter-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    overflow: hidden;
}

.counter-wave svg {
    width: 100%;
    height: 100%;
}

/*==============================================================================
  Enhanced Instructor Section
==============================================================================*/
.instructor-bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.instructor-bg-decor .bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.instructor-bg-decor .shape-1 {
    width: 300px;
    height: 300px;
    background: var(--kids-gradient-2);
    top: -100px;
    right: -100px;
}

.instructor-bg-decor .shape-2 {
    width: 200px;
    height: 200px;
    background: var(--kids-gradient-4);
    bottom: -50px;
    left: -50px;
}

.instructor-bg-decor .floating-element {
    position: absolute;
    font-size: 30px;
    opacity: 0.2;
    animation: float-rotate 8s ease-in-out infinite;
}

.instructor-bg-decor .el-1 {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}
.instructor-bg-decor .el-2 {
    top: 40%;
    right: 8%;
    animation-delay: 1s;
}
.instructor-bg-decor .el-3 {
    bottom: 30%;
    left: 10%;
    animation-delay: 2s;
}
.instructor-bg-decor .el-4 {
    bottom: 20%;
    right: 5%;
    animation-delay: 1.5s;
}

/* Instructor Header Illustration */
.instructor-header-illust {
    position: relative;
    text-align: center;
    padding: 20px;
}

.instructor-header-illust .header-illust-img {
    max-width: 100%;
    max-height: 280px;
    border-radius: var(--kids-radius-xl);
    box-shadow: var(--kids-shadow-lg);
    animation: float-gentle 4s ease-in-out infinite;
}

.instructor-header-illust .illust-badge {
    position: absolute;
    font-size: 36px;
    animation: bounce-slow 2s ease-in-out infinite;
}

.instructor-header-illust .badge-1 {
    top: 5%;
    right: 15%;
    animation-delay: 0s;
}
.instructor-header-illust .badge-2 {
    bottom: 10%;
    left: 10%;
    animation-delay: 0.5s;
}

/* Enhanced Instructor Cards */
.kids-instructor-card {
    position: relative;
    overflow: visible;
}

.kids-instructor-card .card-decoration {
    position: absolute;
    top: -15px;
    right: -15px;
    z-index: 2;
}

.kids-instructor-card .deco-star {
    font-size: 30px;
    animation: twinkle 2s ease-in-out infinite;
}

.kids-instructor-image .image-frame {
    position: relative;
    display: inline-block;
}

.kids-instructor-image .image-frame::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--kids-gradient-rainbow);
    border-radius: 50%;
    z-index: -1;
    animation: rainbow-rotate 5s linear infinite;
}

@keyframes rainbow-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.kids-instructor-stats .stat-icon {
    display: block;
    font-size: 20px;
    margin-bottom: 4px;
}

/*==============================================================================
  Enhanced Testimonial Section
==============================================================================*/
.testimonial-bg-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.testimonial-bg-decor .bg-blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.testimonial-bg-decor .blob-1 {
    width: 400px;
    height: 400px;
    background: var(--kids-gradient-5);
    top: -150px;
    right: -100px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: blob-morph 8s ease-in-out infinite;
}

.testimonial-bg-decor .blob-2 {
    width: 300px;
    height: 300px;
    background: var(--kids-gradient-3);
    bottom: -100px;
    left: -100px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: blob-morph 8s ease-in-out infinite;
    animation-delay: 4s;
}

@keyframes blob-morph {
    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

.testimonial-bg-decor .floating-heart,
.testimonial-bg-decor .floating-star {
    position: absolute;
    font-size: 24px;
    opacity: 0.3;
    animation: float-bounce 5s ease-in-out infinite;
}

.floating-heart.heart-1 {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}
.floating-heart.heart-2 {
    top: 50%;
    right: 8%;
    animation-delay: 1s;
}
.floating-heart.heart-3 {
    bottom: 25%;
    left: 15%;
    animation-delay: 2s;
}
.floating-star.star-1 {
    top: 35%;
    right: 20%;
    animation-delay: 0.5s;
}
.floating-star.star-2 {
    bottom: 40%;
    left: 25%;
    animation-delay: 1.5s;
}

/* Testimonial Header Illustration */
.testimonial-header-illust {
    position: relative;
    text-align: center;
    padding: 20px;
}

.testimonial-header-illust .header-illust-img {
    max-width: 100%;
    max-height: 250px;
    border-radius: var(--kids-radius-xl);
    box-shadow: var(--kids-shadow-lg);
    animation: float-gentle 4s ease-in-out infinite;
}

.testimonial-header-illust .illust-badge {
    position: absolute;
    font-size: 32px;
    animation: bounce-slow 2s ease-in-out infinite;
}

.testimonial-header-illust .badge-heart {
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}
.testimonial-header-illust .badge-star {
    bottom: 15%;
    left: 15%;
    animation-delay: 0.5s;
}

/* Enhanced Testimonial Cards */
.kids-testimonial-card {
    position: relative;
    overflow: hidden;
}

.kids-testimonial-card .card-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%236C63FF' fill-opacity='0.03'%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.kids-testimonial-card .quote-icon {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 40px;
    opacity: 0.2;
}

.kids-testimonial-avatar {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.kids-testimonial-avatar .avatar-frame {
    position: relative;
}

.kids-testimonial-avatar .avatar-frame::before {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: var(--kids-gradient-5);
    border-radius: 50%;
    z-index: -1;
}

.kids-testimonial-avatar .avatar-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 30px;
    height: 30px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: var(--kids-shadow-sm);
}

.kids-testimonial-rating .star {
    font-size: 18px;
    margin-right: 2px;
}

.kids-testimonial-rating .rating-text {
    font-family: var(--kids-font-primary);
    font-weight: 700;
    color: var(--kids-text-dark);
    margin-left: 8px;
}

.kids-testimonial-author .role-emoji {
    margin-right: 6px;
}

.card-bottom-deco {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px dashed rgba(108, 99, 255, 0.1);
}

.card-bottom-deco span {
    font-size: 18px;
    animation: bounce-slow 2s ease-in-out infinite;
}

.card-bottom-deco span:nth-child(2) {
    animation-delay: 0.3s;
}
.card-bottom-deco span:nth-child(3) {
    animation-delay: 0.6s;
}

/* Trust Section */
.kids-trust-section {
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: var(--kids-radius-xl);
    box-shadow: var(--kids-shadow);
    text-align: center;
}

.trust-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.trust-header .trust-emoji {
    font-size: 40px;
    animation: bounce-slow 2s ease-in-out infinite;
}

.trust-header h4 {
    font-family: var(--kids-font-primary);
    font-size: 24px;
    color: var(--kids-text-dark);
    margin: 0;
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-item .trust-icon {
    display: block;
    font-size: 36px;
    margin-bottom: 10px;
}

.trust-item .trust-number {
    display: block;
    font-family: var(--kids-font-primary);
    font-size: 32px;
    font-weight: 800;
    color: var(--kids-primary);
}

.trust-item .trust-label {
    font-size: 14px;
    color: var(--kids-text-gray);
}

/*==============================================================================
  Enhanced CTA Section
==============================================================================*/
.cta-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.cta-circle.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}
.cta-circle.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}
.cta-circle.circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 30%;
}

.floating-cta-emoji {
    position: absolute;
    font-size: 30px;
    opacity: 0.4;
    animation: float-bounce 5s ease-in-out infinite;
}

.floating-cta-emoji.emoji-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}
.floating-cta-emoji.emoji-2 {
    top: 20%;
    right: 20%;
    animation-delay: 0.5s;
}
.floating-cta-emoji.emoji-3 {
    bottom: 30%;
    left: 5%;
    animation-delay: 1s;
}
.floating-cta-emoji.emoji-4 {
    bottom: 15%;
    right: 10%;
    animation-delay: 1.5s;
}
.floating-cta-emoji.emoji-5 {
    top: 50%;
    left: 20%;
    animation-delay: 2s;
}

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

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--kids-radius-full);
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.cta-badge .badge-emoji {
    font-size: 20px;
}

.cta-badge .badge-text {
    font-family: var(--kids-font-primary);
    font-weight: 600;
    font-size: 14px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-features {
    margin-bottom: 30px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: white;
    font-size: 16px;
}

.cta-feature .feature-icon {
    font-size: 20px;
}

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

.kids-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--kids-font-primary);
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--kids-radius-full);
    text-decoration: none;
    transition: var(--kids-transition-bounce);
}

.kids-cta-btn.primary {
    background: white;
    color: var(--kids-orange);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.kids-cta-btn.primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    color: var(--kids-orange);
}

.kids-cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.kids-cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-5px);
    color: white;
}

.kids-cta-btn .btn-emoji {
    font-size: 18px;
}

/* CTA Visual */
.kids-cta-visual {
    position: relative;
    z-index: 2;
}

.cta-image-wrapper {
    position: relative;
    text-align: center;
}

.cta-main-image {
    max-width: 100%;
    border-radius: var(--kids-radius-xl);
    box-shadow: var(--kids-shadow-lg);
    animation: float-gentle 4s ease-in-out infinite;
}

.cta-float-card {
    position: absolute;
    background: white;
    border-radius: var(--kids-radius);
    padding: 15px 20px;
    box-shadow: var(--kids-shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float-bounce 5s ease-in-out infinite;
}

.cta-float-card.card-1 {
    top: 10%;
    left: -20px;
    animation-delay: 0s;
}

.cta-float-card.card-2 {
    bottom: 15%;
    right: -20px;
    animation-delay: 1s;
}

.cta-float-card .card-icon {
    font-size: 28px;
}

.cta-float-card .card-content .card-number {
    display: block;
    font-family: var(--kids-font-primary);
    font-size: 20px;
    font-weight: 800;
    color: var(--kids-primary);
}

.cta-float-card .card-content .card-label {
    font-size: 12px;
    color: var(--kids-text-gray);
}

.cta-float-badge {
    position: absolute;
    font-size: 32px;
    animation: bounce-slow 2s ease-in-out infinite;
}

.cta-float-badge.badge-1 {
    top: 5%;
    right: 10%;
    animation-delay: 0s;
}
.cta-float-badge.badge-2 {
    bottom: 5%;
    left: 15%;
    animation-delay: 0.5s;
}

.cta-bottom-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    overflow: hidden;
}

.cta-bottom-wave svg {
    width: 100%;
    height: 100%;
}

/*==============================================================================
  Additional Responsive Styles
==============================================================================*/
@media (max-width: 991px) {
    .kids-section-illustration,
    .counter-illustration,
    .instructor-header-illust,
    .testimonial-header-illust {
        margin-bottom: 40px;
    }

    .section-illust-img,
    .counter-illust-main,
    .header-illust-img {
        max-height: 250px;
    }

    .trust-stats {
        gap: 40px;
    }

    .cta-float-card {
        display: none;
    }
}

@media (max-width: 767px) {
    .kids-view-all-wrapper {
        flex-direction: column;
        gap: 15px;
    }

    .view-all-decoration {
        display: none;
    }

    .kids-btn-lg {
        padding: 16px 36px;
        font-size: 16px;
    }

    .trust-stats {
        flex-direction: column;
        gap: 20px;
    }

    .kids-trust-section {
        padding: 30px 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .kids-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .floating-decoration,
    .floating-emoji,
    .bg-circle,
    .bg-shape,
    .bg-blob {
        display: none;
    }

    .kids-empty-state {
        padding: 40px 20px;
    }

    .empty-illustration img {
        max-width: 200px;
    }
}

/*==============================================================================
  Kids Success Story Section
==============================================================================*/
.kids-success-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(
        180deg,
        var(--kids-bg-cream) 0%,
        var(--kids-bg-blue-light) 100%
    );
    overflow: hidden;
}

.success-bg-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.success-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.success-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--kids-gradient-5);
    top: -100px;
    right: -100px;
}

.success-shape.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--kids-gradient-3);
    bottom: -50px;
    left: -50px;
}

.success-star {
    position: absolute;
    font-size: 30px;
    opacity: 0.3;
    animation: twinkle 3s ease-in-out infinite;
}

.success-star.star-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}
.success-star.star-2 {
    top: 40%;
    right: 15%;
    animation-delay: 1s;
}
.success-star.star-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

/* Section Header */
.kids-success-section .kids-section-header {
    margin-bottom: 50px;
}

.kids-success-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: white;
    border-radius: var(--kids-radius-full);
    box-shadow: var(--kids-shadow-sm);
    margin-bottom: 20px;
}

.kids-success-section .section-badge .badge-emoji {
    font-size: 24px;
}

.kids-success-section .section-badge .badge-text {
    font-family: var(--kids-font-primary);
    font-size: 14px;
    font-weight: 700;
    color: var(--kids-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.kids-success-section .section-title {
    font-family: var(--kids-font-primary);
    font-size: 2.5rem;
    color: var(--kids-text-dark);
    margin-bottom: 15px;
}

.kids-success-section .section-title .highlight {
    color: var(--kids-primary);
    position: relative;
}

.kids-success-section .section-title .highlight::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background: rgba(108, 99, 255, 0.2);
    border-radius: 5px;
    z-index: -1;
}

.kids-success-section .section-description {
    font-size: 18px;
    color: var(--kids-text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Success Stories Wrapper */
.kids-success-slider {
    position: relative;
}

.success-stories-wrapper {
    position: relative;
}

.kids-success-card {
    display: none;
    background: white;
    border-radius: var(--kids-radius-xl);
    box-shadow: var(--kids-shadow-lg);
    padding: 40px;
    animation: fadeIn 0.5s ease-out;
}

.kids-success-card.active {
    display: block;
}

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

/* Success Image */
.success-image-wrapper {
    position: relative;
    padding: 20px;
}

.success-image-frame {
    position: relative;
    display: inline-block;
    border-radius: var(--kids-radius-xl);
    overflow: hidden;
    box-shadow: var(--kids-shadow);
}

.success-main-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--kids-radius-xl);
    display: block;
}

.success-image-frame .image-badge {
    position: absolute;
    font-size: 36px;
    animation: bounce-slow 2s ease-in-out infinite;
}

.success-image-frame .image-badge.trophy {
    top: -15px;
    right: -15px;
    animation-delay: 0s;
}

.success-image-frame .image-badge.star {
    bottom: -10px;
    left: -10px;
    animation-delay: 0.5s;
}

.achievement-badge {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--kids-gradient-1);
    color: white;
    border-radius: var(--kids-radius-full);
    box-shadow: var(--kids-shadow);
}

.achievement-badge .badge-icon {
    font-size: 24px;
}

.achievement-badge .badge-text {
    font-family: var(--kids-font-primary);
    font-size: 14px;
    font-weight: 700;
}

/* Success Content */
.success-content-wrapper {
    padding: 20px;
}

.success-quote {
    position: relative;
    margin-bottom: 30px;
}

.success-quote .quote-icon {
    font-size: 48px;
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
}

.success-quote .quote-text {
    font-family: var(--kids-font-secondary);
    font-size: 18px;
    line-height: 1.8;
    color: var(--kids-text-dark);
    font-style: italic;
    margin: 0;
    padding-left: 40px;
    border-left: 4px solid var(--kids-primary);
}

/* Author Info */
.success-author {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.success-author .author-avatar {
    position: relative;
    width: 70px;
    height: 70px;
}

.success-author .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: var(--kids-shadow);
}

.success-author .author-avatar .avatar-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    font-size: 20px;
    animation: twinkle 2s ease-in-out infinite;
}

.success-author .author-info .author-name {
    font-family: var(--kids-font-primary);
    font-size: 22px;
    color: var(--kids-text-dark);
    margin-bottom: 5px;
}

.success-author .author-info .author-role {
    font-size: 14px;
    color: var(--kids-text-gray);
    margin: 0;
}

/* Success Stats */
.success-stats {
    display: flex;
    gap: 30px;
    padding: 20px;
    background: var(--kids-bg-light);
    border-radius: var(--kids-radius);
}

.success-stats .stat-item {
    text-align: center;
    flex: 1;
}

.success-stats .stat-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 8px;
}

.success-stats .stat-value {
    display: block;
    font-family: var(--kids-font-primary);
    font-size: 24px;
    font-weight: 800;
    color: var(--kids-primary);
}

.success-stats .stat-label {
    font-size: 12px;
    color: var(--kids-text-gray);
}

/* Navigation */
.success-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.success-dots {
    display: flex;
    gap: 15px;
}

.success-dot {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid transparent;
    padding: 0;
    background: white;
    cursor: pointer;
    overflow: hidden;
    transition: var(--kids-transition);
    box-shadow: var(--kids-shadow-sm);
}

.success-dot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.success-dot.active {
    border-color: var(--kids-primary);
    transform: scale(1.1);
    box-shadow: var(--kids-shadow);
}

.success-dot:hover {
    transform: scale(1.1);
}

.success-arrows {
    display: flex;
    gap: 10px;
}

.success-arrow {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--kids-transition);
    box-shadow: var(--kids-shadow-sm);
    color: var(--kids-text-dark);
}

.success-arrow:hover {
    background: var(--kids-primary);
    color: white;
    transform: scale(1.1);
}

/* Empty State */
.kids-success-empty {
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: var(--kids-radius-xl);
    box-shadow: var(--kids-shadow);
}

.kids-success-empty .empty-illustration img {
    max-width: 300px;
    border-radius: var(--kids-radius);
    margin-bottom: 30px;
}

.kids-success-empty h3 {
    font-family: var(--kids-font-primary);
    font-size: 24px;
    color: var(--kids-text-dark);
    margin-bottom: 10px;
}

.kids-success-empty p {
    font-size: 16px;
    color: var(--kids-text-gray);
}

/* Responsive */
@media (max-width: 991px) {
    .kids-success-card {
        padding: 30px;
    }

    .success-image-wrapper {
        margin-bottom: 30px;
        text-align: center;
    }

    .success-main-image {
        max-width: 350px;
    }
}

@media (max-width: 767px) {
    .kids-success-section {
        padding: 60px 0;
    }

    .kids-success-section .section-title {
        font-size: 1.8rem;
    }

    .kids-success-card {
        padding: 25px;
    }

    .success-quote .quote-text {
        font-size: 16px;
        padding-left: 30px;
    }

    .success-stats {
        flex-wrap: wrap;
    }

    .success-stats .stat-item {
        min-width: 80px;
    }

    .success-nav {
        flex-direction: column;
        gap: 20px;
    }

    .success-dots {
        flex-wrap: wrap;
        justify-content: center;
    }

    .success-dot {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 575px) {
    .success-image-frame .image-badge {
        display: none;
    }

    .achievement-badge {
        position: relative;
        margin-top: 20px;
        transform: none;
        left: 0;
    }

    .success-author {
        flex-direction: column;
        text-align: center;
    }

    .success-stats {
        padding: 15px;
        gap: 15px;
    }

    .success-stats .stat-value {
        font-size: 20px;
    }
}

/*==============================================================================
  Kids Fun Fact Section
==============================================================================*/
.kids-funfact-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(
        135deg,
        var(--kids-bg-purple-light) 0%,
        var(--kids-bg-blue-light) 50%,
        var(--kids-bg-pink-light) 100%
    );
    overflow: hidden;
}

.funfact-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.funfact-bg-elements .bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.funfact-bg-elements .shape-1 {
    width: 400px;
    height: 400px;
    background: var(--kids-gradient-1);
    top: -150px;
    right: -100px;
}

.funfact-bg-elements .shape-2 {
    width: 300px;
    height: 300px;
    background: var(--kids-gradient-3);
    bottom: -100px;
    left: -100px;
}

.funfact-bg-elements .shape-3 {
    width: 200px;
    height: 200px;
    background: var(--kids-gradient-5);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.funfact-bg-elements .floating-icon {
    position: absolute;
    font-size: 40px;
    opacity: 0.2;
    animation: float-rotate 8s ease-in-out infinite;
}

.funfact-bg-elements .icon-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}
.funfact-bg-elements .icon-2 {
    top: 20%;
    right: 10%;
    animation-delay: 1s;
}
.funfact-bg-elements .icon-3 {
    bottom: 30%;
    left: 8%;
    animation-delay: 2s;
}
.funfact-bg-elements .icon-4 {
    bottom: 20%;
    right: 15%;
    animation-delay: 1.5s;
}
.funfact-bg-elements .icon-5 {
    top: 50%;
    left: 20%;
    animation-delay: 0.5s;
}

/* Section Header */
.funfact-header {
    margin-bottom: 40px;
}

.funfact-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: white;
    border-radius: var(--kids-radius-full);
    box-shadow: var(--kids-shadow-sm);
    margin-bottom: 20px;
}

.funfact-header .badge-emoji {
    font-size: 24px;
}

.funfact-header .badge-text {
    font-family: var(--kids-font-primary);
    font-size: 14px;
    font-weight: 700;
    color: var(--kids-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.funfact-header .section-title {
    font-family: var(--kids-font-primary);
    font-size: 2.5rem;
    color: var(--kids-text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.funfact-header .section-description {
    font-size: 18px;
    color: var(--kids-text-gray);
    line-height: 1.6;
}

/* Fun Fact Grid */
.funfact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.funfact-card {
    position: relative;
    background: white;
    border-radius: var(--kids-radius-lg);
    padding: 25px 20px;
    text-align: center;
    box-shadow: var(--kids-shadow);
    transition: var(--kids-transition);
    overflow: hidden;
}

.funfact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--kids-gradient-rainbow);
}

.funfact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--kids-shadow-lg);
}

.funfact-card .card-icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
}

.funfact-card .card-icon {
    font-size: 40px;
    z-index: 2;
    animation: bounce-slow 3s ease-in-out infinite;
}

.funfact-card .icon-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px dashed rgba(108, 99, 255, 0.2);
    border-radius: 50%;
    animation: spin-slow 15s linear infinite;
}

.funfact-card .card-content {
    position: relative;
    z-index: 2;
}

.funfact-card .card-number {
    display: block;
    font-family: var(--kids-font-primary);
    font-size: 36px;
    font-weight: 800;
    color: var(--kids-primary);
    line-height: 1.2;
}

.funfact-card .card-label {
    font-family: var(--kids-font-secondary);
    font-size: 14px;
    color: var(--kids-text-gray);
    font-weight: 600;
}

.funfact-card .card-decoration {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    opacity: 0.5;
    animation: twinkle 2s ease-in-out infinite;
}

/* Visual Side */
.funfact-visual {
    position: relative;
    padding: 20px;
}

.visual-wrapper {
    position: relative;
}

.image-stack {
    position: relative;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.image-item {
    position: relative;
    border-radius: var(--kids-radius-xl);
    overflow: visible;
    box-shadow: var(--kids-shadow-lg);
}

.image-item img {
    width: 100%;
    height: auto;
    border-radius: var(--kids-radius-xl);
    display: block;
}

.image-item.image-1 {
    transform: rotate(-5deg);
    animation: float-gentle 5s ease-in-out infinite;
}

.image-item.image-2 {
    transform: rotate(5deg);
    animation: float-gentle 5s ease-in-out infinite;
    animation-delay: 1s;
}

.image-item .image-badge {
    position: absolute;
    font-size: 32px;
    animation: bounce-slow 2s ease-in-out infinite;
}

.image-item .badge-1 {
    top: -15px;
    right: -15px;
}

.image-item .badge-2 {
    bottom: -10px;
    left: -10px;
}

/* Floating Stat Card */
.floating-stat-card {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: white;
    border-radius: var(--kids-radius-full);
    box-shadow: var(--kids-shadow-lg);
    animation: float-bounce 4s ease-in-out infinite;
    z-index: 10;
}

.floating-stat-card .stat-emoji {
    font-size: 32px;
}

.floating-stat-card .stat-info {
    display: flex;
    flex-direction: column;
}

.floating-stat-card .stat-number {
    font-family: var(--kids-font-primary);
    font-size: 24px;
    font-weight: 800;
    color: var(--kids-primary);
    line-height: 1;
}

.floating-stat-card .stat-text {
    font-size: 12px;
    color: var(--kids-text-gray);
}

/* Visual Decorations */
.visual-decoration {
    position: absolute;
    font-size: 28px;
    animation: float-rotate 6s ease-in-out infinite;
}

.visual-decoration.deco-1 {
    top: 0;
    right: 20%;
    animation-delay: 0s;
}

.visual-decoration.deco-2 {
    bottom: 30%;
    left: 10%;
    animation-delay: 1s;
}

.visual-decoration.deco-3 {
    top: 30%;
    right: 5%;
    animation-delay: 2s;
}

/* Bottom Bar */
.funfact-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 60px;
    padding: 25px 40px;
    background: white;
    border-radius: var(--kids-radius-full);
    box-shadow: var(--kids-shadow);
}

.funfact-bottom-bar .bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.funfact-bottom-bar .bar-emoji {
    font-size: 24px;
}

.funfact-bottom-bar .bar-text {
    font-family: var(--kids-font-secondary);
    font-size: 14px;
    font-weight: 600;
    color: var(--kids-text-dark);
}

.funfact-bottom-bar .bar-divider {
    width: 1px;
    height: 30px;
    background: rgba(108, 99, 255, 0.2);
}

/* Responsive */
@media (max-width: 991px) {
    .kids-funfact-section {
        padding: 60px 0;
    }

    .funfact-content {
        margin-bottom: 50px;
    }

    .funfact-header .section-title {
        font-size: 2rem;
    }

    .image-stack {
        max-width: 500px;
        margin: 0 auto;
    }

    .funfact-bottom-bar {
        padding: 20px 30px;
    }
}

@media (max-width: 767px) {
    .funfact-header .section-title {
        font-size: 1.75rem;
    }

    .funfact-grid {
        gap: 15px;
    }

    .funfact-card {
        padding: 20px 15px;
    }

    .funfact-card .card-number {
        font-size: 28px;
    }

    .funfact-card .card-icon {
        font-size: 32px;
    }

    .image-stack {
        flex-direction: column;
        align-items: center;
    }

    .image-item.image-1,
    .image-item.image-2 {
        transform: none;
        max-width: 280px;
    }

    .floating-stat-card {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 20px;
        justify-content: center;
    }

    .funfact-bottom-bar {
        flex-direction: column;
        gap: 15px;
        border-radius: var(--kids-radius-lg);
        padding: 25px 20px;
    }

    .funfact-bottom-bar .bar-divider {
        display: none;
    }
}

@media (max-width: 575px) {
    .funfact-bg-elements .floating-icon {
        display: none;
    }

    .funfact-grid {
        grid-template-columns: 1fr;
    }

    .funfact-card .card-icon-wrap {
        width: 60px;
        height: 60px;
    }

    .visual-decoration {
        display: none;
    }

    .image-item .image-badge {
        font-size: 24px;
    }
}

/*==============================================================================
  Kids Blog News Section
==============================================================================*/
.kids-blog-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(
        180deg,
        var(--kids-bg-light) 0%,
        var(--kids-bg-cream) 100%
    );
    overflow: hidden;
}

.blog-bg-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.blog-bg-decorations .bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
}

.blog-bg-decorations .shape-1 {
    width: 350px;
    height: 350px;
    background: var(--kids-gradient-2);
    top: -100px;
    left: -100px;
}

.blog-bg-decorations .shape-2 {
    width: 250px;
    height: 250px;
    background: var(--kids-gradient-4);
    bottom: -80px;
    right: -80px;
}

.blog-bg-decorations .floating-deco {
    position: absolute;
    font-size: 35px;
    opacity: 0.15;
    animation: float-rotate 10s ease-in-out infinite;
}

.blog-bg-decorations .deco-1 {
    top: 15%;
    left: 5%;
    animation-delay: 0s;
}
.blog-bg-decorations .deco-2 {
    top: 25%;
    right: 8%;
    animation-delay: 1.5s;
}
.blog-bg-decorations .deco-3 {
    bottom: 25%;
    left: 10%;
    animation-delay: 3s;
}
.blog-bg-decorations .deco-4 {
    bottom: 20%;
    right: 12%;
    animation-delay: 2s;
}

/* Section Header */
.kids-blog-section .kids-section-header {
    margin-bottom: 50px;
}

.kids-blog-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: white;
    border-radius: var(--kids-radius-full);
    box-shadow: var(--kids-shadow-sm);
    margin-bottom: 20px;
}

.kids-blog-section .badge-emoji {
    font-size: 22px;
}

.kids-blog-section .badge-text {
    font-family: var(--kids-font-primary);
    font-size: 14px;
    font-weight: 700;
    color: var(--kids-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.kids-blog-section .section-title {
    font-family: var(--kids-font-primary);
    font-size: 2.5rem;
    color: var(--kids-text-dark);
    margin-bottom: 15px;
}

.kids-blog-section .section-title .title-emoji {
    display: inline-block;
    margin-left: 10px;
    animation: bounce-slow 2s ease-in-out infinite;
}

.kids-blog-section .section-description {
    font-size: 18px;
    color: var(--kids-text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Grid */
.kids-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Blog Card */
.kids-blog-card {
    position: relative;
    background: white;
    border-radius: var(--kids-radius-xl);
    overflow: hidden;
    box-shadow: var(--kids-shadow);
    transition: var(--kids-transition);
}

.kids-blog-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--kids-gradient-rainbow);
    z-index: 2;
}

.kids-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--kids-shadow-lg);
}

/* Card Image */
.blog-card-image {
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--kids-transition);
}

.kids-blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--kids-gradient-1);
    border-radius: var(--kids-radius-full);
    z-index: 3;
}

.blog-category-badge .category-emoji {
    font-size: 14px;
}

.blog-category-badge .category-text {
    font-family: var(--kids-font-primary);
    font-size: 12px;
    font-weight: 700;
    color: white;
}

.blog-date-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--kids-radius-full);
    box-shadow: var(--kids-shadow-sm);
    z-index: 3;
}

.blog-date-badge .date-icon {
    font-size: 14px;
}

.blog-date-badge .date-text {
    font-family: var(--kids-font-secondary);
    font-size: 12px;
    font-weight: 600;
    color: var(--kids-text-dark);
}

/* Card Content */
.blog-card-content {
    padding: 25px;
}

.blog-card-title {
    font-family: var(--kids-font-primary);
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-card-title a {
    color: var(--kids-text-dark);
    text-decoration: none;
    transition: var(--kids-transition);
}

.blog-card-title a:hover {
    color: var(--kids-primary);
}

.blog-card-description {
    font-size: 14px;
    color: var(--kids-text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Meta Info */
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 2px dashed rgba(108, 99, 255, 0.1);
}

.blog-card-meta .meta-author,
.blog-card-meta .meta-comments {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-meta .author-icon,
.blog-card-meta .comments-icon {
    font-size: 16px;
}

.blog-card-meta .author-name,
.blog-card-meta .comments-count {
    font-size: 13px;
    color: var(--kids-text-gray);
    font-weight: 500;
}

/* Read More Button */
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--kids-font-primary);
    font-size: 14px;
    font-weight: 700;
    color: var(--kids-primary);
    text-decoration: none;
    transition: var(--kids-transition);
}

.blog-read-more:hover {
    color: var(--kids-primary-dark);
    gap: 12px;
}

.blog-read-more .read-more-icon {
    font-size: 18px;
    transition: var(--kids-transition);
}

/* Card Decoration */
.card-corner-deco {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 20px;
    opacity: 0;
    transition: var(--kids-transition);
    animation: twinkle 2s ease-in-out infinite;
    z-index: 5;
}

.kids-blog-card:hover .card-corner-deco {
    opacity: 1;
}

/* View All Button */
.blog-view-all {
    text-align: center;
}

.blog-view-all .kids-btn {
    padding: 16px 40px;
    font-size: 16px;
}

.blog-view-all .btn-emoji {
    font-size: 18px;
    margin-left: 8px;
}

/* Empty State */
.kids-blog-empty {
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: var(--kids-radius-xl);
    box-shadow: var(--kids-shadow);
}

.kids-blog-empty .empty-illustration img {
    max-width: 250px;
    border-radius: var(--kids-radius);
    margin-bottom: 25px;
}

.kids-blog-empty h3 {
    font-family: var(--kids-font-primary);
    font-size: 24px;
    color: var(--kids-text-dark);
    margin-bottom: 10px;
}

.kids-blog-empty p {
    font-size: 16px;
    color: var(--kids-text-gray);
    margin-bottom: 20px;
}

.kids-blog-empty .empty-decoration {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.kids-blog-empty .empty-decoration span {
    font-size: 24px;
    animation: bounce-slow 2s ease-in-out infinite;
}

.kids-blog-empty .empty-decoration span:nth-child(2) {
    animation-delay: 0.3s;
}

.kids-blog-empty .empty-decoration span:nth-child(3) {
    animation-delay: 0.6s;
}

/* Responsive */
@media (max-width: 991px) {
    .kids-blog-section {
        padding: 60px 0;
    }

    .kids-blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .kids-blog-section .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .kids-blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .kids-blog-section .section-title {
        font-size: 1.75rem;
    }

    .blog-card-content {
        padding: 20px;
    }

    .blog-card-title {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .blog-bg-decorations .floating-deco {
        display: none;
    }

    .blog-card-image img {
        height: 180px;
    }

    .blog-card-meta {
        flex-wrap: wrap;
        gap: 12px;
    }

    .kids-blog-empty {
        padding: 40px 20px;
    }

    .kids-blog-empty .empty-illustration img {
        max-width: 200px;
    }
}

/*==============================================================================
  Kids Partner Section Styles
==============================================================================*/
.kids-partner-section {
    position: relative;
    padding: 60px 0;
    background: var(--kids-bg-light);
    overflow: hidden;
}

.kids-partner-section .partner-bg-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.kids-partner-section .bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.kids-partner-section .bg-shape.shape-1 {
    width: 200px;
    height: 200px;
    background: var(--kids-primary);
    top: -50px;
    left: -50px;
}

.kids-partner-section .bg-shape.shape-2 {
    width: 150px;
    height: 150px;
    background: var(--kids-yellow);
    bottom: -30px;
    right: -30px;
}

.kids-partner-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.kids-partner-item {
    background: white;
    border-radius: var(--kids-radius-lg);
    padding: 20px 30px;
    box-shadow: var(--kids-shadow-sm);
    transition: all 0.3s ease;
}

.kids-partner-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--kids-shadow);
}

.kids-partner-item img {
    max-width: 150px;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(30%);
    transition: all 0.3s ease;
}

.kids-partner-item:hover img {
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .kids-partner-section {
        padding: 40px 0;
    }

    .kids-partner-grid {
        gap: 20px;
    }

    .kids-partner-item {
        padding: 15px 20px;
    }

    .kids-partner-item img {
        max-width: 120px;
        max-height: 50px;
    }
}

/*==============================================================================
  Kids Subject Section
==============================================================================*/
.kids-subject-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, #fff 0%, #f8f9ff 50%, #fff5f8 100%);
    overflow: hidden;
}

/* Background Decorations */
.kids-subject-section .subject-bg-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.kids-subject-section .bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}

.kids-subject-section .bg-shape.shape-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -150px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.15) 0%, rgba(255, 142, 83, 0.15) 100%);
    animation: float-rotate 25s linear infinite;
}

.kids-subject-section .bg-shape.shape-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -100px;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.15) 0%, rgba(85, 239, 196, 0.15) 100%);
    animation: float-rotate 20s linear infinite reverse;
}

.kids-subject-section .bg-shape.shape-3 {
    width: 250px;
    height: 250px;
    top: 40%;
    left: 50%;
    background: linear-gradient(135deg, rgba(162, 155, 254, 0.1) 0%, rgba(129, 236, 236, 0.1) 100%);
    animation: float-rotate 30s linear infinite;
}

/* Floating Emojis */
.kids-subject-section .floating-emoji {
    position: absolute;
    font-size: 32px;
    opacity: 0.2;
    animation: float-bounce 4s ease-in-out infinite;
}

.kids-subject-section .floating-emoji.emoji-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.kids-subject-section .floating-emoji.emoji-2 {
    top: 20%;
    right: 8%;
    animation-delay: 0.5s;
}

.kids-subject-section .floating-emoji.emoji-3 {
    bottom: 30%;
    left: 3%;
    animation-delay: 1s;
}

.kids-subject-section .floating-emoji.emoji-4 {
    bottom: 15%;
    right: 5%;
    animation-delay: 1.5s;
}

.kids-subject-section .floating-emoji.emoji-5 {
    top: 50%;
    right: 15%;
    animation-delay: 2s;
}

/* Section Header */
.kids-subject-section .kids-section-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.kids-subject-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.kids-subject-section .badge-emoji {
    font-size: 20px;
}

.kids-subject-section .badge-text {
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.kids-subject-section .section-title {
    font-size: 42px;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 16px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.kids-subject-section .title-decoration {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 12px;
    color: #667eea;
    opacity: 0.5;
}

.kids-subject-section .title-decoration svg {
    width: 100%;
    height: 100%;
}

.kids-subject-section .section-description {
    font-size: 18px;
    color: #636e72;
    max-width: 600px;
    margin: 0 auto;
}

/* Subject Grid */
.kids-subject-section .subject-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

/* Subject Card */
.kids-subject-section .subject-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: white;
    border-radius: 20px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.kids-subject-section .subject-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--card-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.kids-subject-section .subject-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--card-light);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.kids-subject-section .subject-card:hover::before {
    opacity: 1;
}

/* Subject Icon */
.kids-subject-section .subject-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 16px;
    background: var(--card-light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.kids-subject-section .subject-card:hover .subject-icon {
    background: var(--card-color);
    transform: rotate(-5deg) scale(1.1);
}

.kids-subject-section .subject-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.kids-subject-section .subject-card:hover .subject-icon img {
    filter: brightness(0) invert(1);
}

.kids-subject-section .subject-icon .default-emoji {
    font-size: 28px;
    transition: all 0.3s ease;
}

.kids-subject-section .subject-card:hover .subject-icon .default-emoji {
    transform: scale(1.2);
}

/* Subject Content */
.kids-subject-section .subject-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.kids-subject-section .subject-title {
    font-size: 16px;
    font-weight: 700;
    color: #2d3436;
    margin: 0 0 4px 0;
    transition: color 0.3s ease;
}

.kids-subject-section .subject-card:hover .subject-title {
    color: var(--card-color);
}

.kids-subject-section .subject-count {
    font-size: 13px;
    color: #b2bec3;
    font-weight: 500;
}

/* Subject Arrow */
.kids-subject-section .subject-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f1f2f6;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.kids-subject-section .subject-card:hover .subject-arrow {
    opacity: 1;
    transform: translateX(0);
    background: var(--card-color);
}

.kids-subject-section .subject-arrow svg {
    width: 16px;
    height: 16px;
    stroke: #636e72;
    transition: stroke 0.3s ease;
}

.kids-subject-section .subject-card:hover .subject-arrow svg {
    stroke: white;
}

/* Card Decorations */
.kids-subject-section .card-deco {
    position: absolute;
    border-radius: 50%;
    background: var(--card-color);
    opacity: 0;
    transition: all 0.4s ease;
}

.kids-subject-section .card-deco.deco-1 {
    width: 80px;
    height: 80px;
    top: -40px;
    right: -40px;
    opacity: 0.1;
}

.kids-subject-section .card-deco.deco-2 {
    width: 60px;
    height: 60px;
    bottom: -30px;
    left: -30px;
    opacity: 0.08;
}

.kids-subject-section .subject-card:hover .card-deco {
    opacity: 0.15;
}

/* View All Button */
.kids-subject-section .kids-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.kids-subject-section .kids-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
    color: white;
}

.kids-subject-section .btn-emoji {
    font-size: 20px;
}

.kids-subject-section .btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.kids-subject-section .kids-btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

/* Empty State */
.kids-subject-section .subject-empty-state {
    text-align: center;
    padding: 60px 20px;
    position: relative;
    z-index: 2;
}

.kids-subject-section .subject-empty-state .empty-icon {
    font-size: 64px;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

.kids-subject-section .subject-empty-state h4 {
    font-size: 24px;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 8px;
}

.kids-subject-section .subject-empty-state p {
    font-size: 16px;
    color: #636e72;
}

/* Animations */
@keyframes float-rotate {
    0% { transform: rotate(0deg) translateY(0); }
    50% { transform: rotate(180deg) translateY(-20px); }
    100% { transform: rotate(360deg) translateY(0); }
}

/* Responsive */
@media (max-width: 1200px) {
    .kids-subject-section .subject-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .kids-subject-section {
        padding: 80px 0;
    }

    .kids-subject-section .section-title {
        font-size: 32px;
    }

    .kids-subject-section .subject-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .kids-subject-section {
        padding: 60px 0;
    }

    .kids-subject-section .section-title {
        font-size: 28px;
    }

    .kids-subject-section .section-description {
        font-size: 16px;
    }

    .kids-subject-section .subject-card {
        padding: 16px 20px;
    }

    .kids-subject-section .subject-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .kids-subject-section .subject-icon img {
        width: 28px;
        height: 28px;
    }

    .kids-subject-section .floating-emoji {
        display: none;
    }
}

@media (max-width: 576px) {
    .kids-subject-section .subject-grid {
        grid-template-columns: 1fr;
    }

    .kids-subject-section .section-badge {
        padding: 8px 16px;
    }

    .kids-subject-section .badge-text {
        font-size: 12px;
    }

    .kids-subject-section .section-title {
        font-size: 24px;
    }

    .kids-subject-section .subject-card {
        border-radius: 16px;
    }

    .kids-subject-section .kids-btn-primary {
        padding: 14px 24px;
        font-size: 14px;
    }
}

/*==============================================================================
  Kids Video Slider Section
==============================================================================*/
.kids-video-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(180deg, #f0f7ff 0%, #fff5f5 50%, #f5fff0 100%);
    overflow: hidden;
}

/* Background Decorations */
.kids-video-section .video-bg-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.kids-video-section .bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
}

.kids-video-section .bg-shape.shape-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    left: -100px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(255, 142, 83, 0.2) 100%);
    animation: float-slow 20s ease-in-out infinite;
}

.kids-video-section .bg-shape.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    right: -50px;
    background: linear-gradient(135deg, rgba(78, 205, 196, 0.2) 0%, rgba(85, 239, 196, 0.2) 100%);
    animation: float-slow 15s ease-in-out infinite reverse;
}

.kids-video-section .bg-shape.shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 5%;
    background: linear-gradient(135deg, rgba(162, 155, 254, 0.2) 0%, rgba(129, 236, 236, 0.2) 100%);
    animation: float-slow 18s ease-in-out infinite;
}

/* Floating Icons */
.kids-video-section .floating-icon {
    position: absolute;
    opacity: 0.3;
    animation: float-bounce 4s ease-in-out infinite;
}

.kids-video-section .floating-icon svg {
    width: 40px;
    height: 40px;
}

.kids-video-section .floating-icon.icon-1 {
    top: 15%;
    right: 10%;
    color: #ff6b6b;
    animation-delay: 0s;
}

.kids-video-section .floating-icon.icon-2 {
    bottom: 20%;
    left: 8%;
    color: #4ecdc4;
    animation-delay: 1s;
}

.kids-video-section .floating-icon.icon-3 {
    top: 60%;
    right: 5%;
    color: #a29bfe;
    animation-delay: 2s;
}

/* Section Header */
.kids-video-section .kids-section-header {
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.kids-video-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.kids-video-section .badge-emoji {
    font-size: 20px;
}

.kids-video-section .badge-text {
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.kids-video-section .section-title {
    font-size: 42px;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 16px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.kids-video-section .title-highlight {
    position: relative;
    display: inline-block;
}

.kids-video-section .highlight-svg {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 15px;
    color: #ff6b6b;
    opacity: 0.6;
}

.kids-video-section .section-description {
    font-size: 18px;
    color: #636e72;
    max-width: 600px;
    margin: 0 auto;
}

/* Video Slider Wrapper */
.kids-video-slider-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

/* Video Slider */
.kids-video-slider {
    position: relative;
}

/* Video Card */
.kids-video-section .video-card {
    position: relative;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.kids-video-section .video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

/* Video Player Wrapper */
.kids-video-section .video-player-wrapper {
    position: relative;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.kids-video-section .video-player-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Play Button Overlay */
.kids-video-section .play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    opacity: 1;
    transition: all 0.3s ease;
}

.kids-video-section .video-card:hover .play-button-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.kids-video-section .play-button {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.kids-video-section .play-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.kids-video-section .play-icon svg {
    width: 32px;
    height: 32px;
    fill: white;
    margin-left: 5px;
}

.kids-video-section .video-card:hover .play-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.5);
}

/* Pulse Animation */
.kids-video-section .pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(255, 107, 107, 0.5);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}

.kids-video-section .pulse-ring.delay-1 {
    animation-delay: 1s;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Video Info */
.kids-video-section .video-info {
    padding: 24px;
    text-align: center;
}

.kids-video-section .video-title {
    font-size: 20px;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 8px;
}

.kids-video-section .video-description {
    font-size: 14px;
    color: #636e72;
    margin: 0;
}

/* Card Decorations */
.kids-video-section .card-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.kids-video-section .deco-star {
    position: absolute;
    font-size: 24px;
    opacity: 0;
    transition: all 0.3s ease;
}

.kids-video-section .video-card:hover .deco-star {
    opacity: 1;
}

.kids-video-section .deco-star.star-1 {
    top: 20px;
    right: 20px;
    animation: twinkle 1s ease-in-out infinite;
}

.kids-video-section .deco-star.star-2 {
    bottom: 20px;
    left: 20px;
    animation: twinkle 1s ease-in-out infinite 0.5s;
}

@keyframes twinkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Slider Navigation */
.kids-video-section .slider-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.kids-video-section .nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.kids-video-section .nav-btn:hover {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.kids-video-section .nav-btn svg {
    width: 24px;
    height: 24px;
    stroke: #2d3436;
    transition: all 0.3s ease;
}

.kids-video-section .nav-btn:hover svg {
    stroke: white;
}

.kids-video-section .slider-dots {
    display: flex;
    gap: 10px;
}

.kids-video-section .slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dfe6e9;
    cursor: pointer;
    transition: all 0.3s ease;
}

.kids-video-section .slider-dots .dot.active {
    width: 30px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
}

/* Fun Stats */
.kids-video-section .video-fun-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.kids-video-section .fun-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.kids-video-section .stat-emoji {
    font-size: 36px;
    animation: bounce 2s ease-in-out infinite;
}

.kids-video-section .fun-stat:nth-child(2) .stat-emoji {
    animation-delay: 0.3s;
}

.kids-video-section .fun-stat:nth-child(3) .stat-emoji {
    animation-delay: 0.6s;
}

.kids-video-section .stat-number {
    font-size: 28px;
    font-weight: 800;
    color: #2d3436;
}

.kids-video-section .stat-label {
    font-size: 14px;
    color: #636e72;
    font-weight: 500;
}

/* Animations */
@keyframes float-slow {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(10deg); }
}

@keyframes float-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

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

/* Responsive */
@media (max-width: 992px) {
    .kids-video-section {
        padding: 80px 0;
    }

    .kids-video-section .section-title {
        font-size: 32px;
    }

    .kids-video-section .video-fun-stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .kids-video-section {
        padding: 60px 0;
    }

    .kids-video-section .section-title {
        font-size: 28px;
    }

    .kids-video-section .section-description {
        font-size: 16px;
    }

    .kids-video-section .play-icon {
        width: 60px;
        height: 60px;
    }

    .kids-video-section .play-icon svg {
        width: 24px;
        height: 24px;
    }

    .kids-video-section .video-fun-stats {
        flex-wrap: wrap;
        gap: 30px;
    }

    .kids-video-section .stat-emoji {
        font-size: 28px;
    }

    .kids-video-section .stat-number {
        font-size: 22px;
    }

    .kids-video-section .floating-icon {
        display: none;
    }
}

@media (max-width: 576px) {
    .kids-video-section .section-badge {
        padding: 8px 16px;
    }

    .kids-video-section .badge-text {
        font-size: 12px;
    }

    .kids-video-section .section-title {
        font-size: 24px;
    }

    .kids-video-section .video-card {
        border-radius: 16px;
    }

    .kids-video-section .video-player-wrapper {
        border-radius: 16px 16px 0 0;
    }

    .kids-video-section .nav-btn {
        width: 40px;
        height: 40px;
    }

    .kids-video-section .nav-btn svg {
        width: 20px;
        height: 20px;
    }
}

/*==============================================================================
  Kids Login Page Styles
==============================================================================*/
.kids-login-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 40px 20px;
    overflow: hidden;
}

/* Background Decorations */
.login-bg-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.login-bg-decorations .floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    background: white;
}

.login-bg-decorations .shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation: float-rotate 20s infinite linear;
}

.login-bg-decorations .shape-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: -50px;
    animation: float-rotate 15s infinite linear reverse;
}

.login-bg-decorations .shape-3 {
    width: 150px;
    height: 150px;
    bottom: -50px;
    left: 20%;
    animation: float-rotate 18s infinite linear;
}

.login-bg-decorations .shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 10%;
    animation: float-rotate 12s infinite linear reverse;
}

.login-bg-decorations .shape-5 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    right: 15%;
    animation: float-rotate 14s infinite linear;
}

.login-bg-decorations .floating-emoji {
    position: absolute;
    font-size: 2rem;
    opacity: 0.6;
    animation: float-rotate 10s infinite ease-in-out;
}

.login-bg-decorations .emoji-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}
.login-bg-decorations .emoji-2 {
    top: 20%;
    right: 10%;
    animation-delay: 1s;
}
.login-bg-decorations .emoji-3 {
    bottom: 30%;
    left: 8%;
    animation-delay: 2s;
}
.login-bg-decorations .emoji-4 {
    top: 60%;
    right: 5%;
    animation-delay: 3s;
}
.login-bg-decorations .emoji-5 {
    bottom: 10%;
    left: 15%;
    animation-delay: 4s;
}
.login-bg-decorations .emoji-6 {
    bottom: 15%;
    right: 20%;
    animation-delay: 5s;
}

/* Login Wrapper */
.kids-login-wrapper {
    display: flex;
    align-items: stretch;
    max-width: 1000px;
    width: 100%;
    background: white;
    border-radius: var(--kids-radius-xl);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* Left Side - Illustration */
.login-illustration {
    flex: 1;
    background: linear-gradient(
        135deg,
        var(--kids-primary) 0%,
        var(--kids-purple) 100%
    );
    padding: 50px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.login-illustration::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    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.1'%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.5;
}

.illustration-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.mascot-container {
    width: 200px;
    height: 200px;
    margin: 0 auto 30px;
    background: white;
    border-radius: 50%;
    padding: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    animation: bounce-slow 3s infinite ease-in-out;
}

.mascot-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.welcome-title {
    font-family: var(--kids-font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.welcome-text {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
}

.fun-facts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 20px;
    border-radius: var(--kids-radius-full);
    backdrop-filter: blur(10px);
}

.fact-icon {
    font-size: 1.5rem;
}

.fact-text {
    font-weight: 600;
}

/* Right Side - Form */
.login-form-container {
    flex: 1;
    padding: 50px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-form-card {
    width: 100%;
    max-width: 400px;
}

.login-logo {
    text-align: center;
    margin-bottom: 25px;
}

.login-logo img {
    max-height: 50px;
    width: auto;
}

.login-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-form-header .header-emoji {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: wave 2s infinite;
}

@keyframes wave {
    0%,
    100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(20deg);
    }
    75% {
        transform: rotate(-20deg);
    }
}

.login-form-header h3 {
    font-family: var(--kids-font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--kids-text-dark);
    margin-bottom: 8px;
}

.login-form-header p {
    color: var(--kids-text-gray);
    font-size: 0.95rem;
}

/* Form Groups */
.kids-form-group {
    margin-bottom: 20px;
}

.kids-form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--kids-text-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.kids-form-group .label-icon {
    font-size: 1.1rem;
}

.input-wrapper {
    position: relative;
}

.kids-form-input {
    width: 100%;
    padding: 14px 50px 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: var(--kids-radius-lg);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.kids-form-input:focus {
    outline: none;
    border-color: var(--kids-primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.1);
}

.kids-form-input::placeholder {
    color: #adb5bd;
}

.input-wrapper .input-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #adb5bd;
    cursor: pointer;
    transition: color 0.3s ease;
}

.input-wrapper .input-icon:hover {
    color: var(--kids-primary);
}

.input-wrapper .input-icon.active {
    color: var(--kids-primary);
}

.error-message {
    margin-top: 5px;
}

.error-message .error {
    color: var(--kids-orange);
    font-size: 0.85rem;
    margin: 0;
}

/* Form Options */
.kids-form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 10px;
}

.kids-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--kids-text-gray);
}

.kids-checkbox input {
    display: none;
}

.kids-checkbox .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.kids-checkbox input:checked + .checkmark {
    background: var(--kids-primary);
    border-color: var(--kids-primary);
}

.kids-checkbox input:checked + .checkmark::after {
    content: "✓";
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.forgot-link {
    color: var(--kids-primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.forgot-link:hover {
    color: var(--kids-primary-dark);
    text-decoration: underline;
}

/* Submit Button */
.kids-submit-btn {
    width: 100%;
    padding: 16px 30px;
    background: var(--kids-gradient-1);
    color: white;
    border: none;
    border-radius: var(--kids-radius-lg);
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--kids-font-heading);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(108, 99, 255, 0.3);
}

.kids-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(108, 99, 255, 0.4);
}

.kids-submit-btn:active {
    transform: translateY(0);
}

.kids-submit-btn .btn-icon {
    font-size: 1.3rem;
    animation: rocket-fly 2s infinite ease-in-out;
}

@keyframes rocket-fly {
    0%,
    100% {
        transform: translateY(0) rotate(-10deg);
    }
    50% {
        transform: translateY(-5px) rotate(10deg);
    }
}

.kids-submit-btn.loading-btn {
    display: none;
}

/* Social Login */
.social-login-section {
    margin-top: 25px;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #e0e0e0;
}

.divider span {
    padding: 0 15px;
    color: var(--kids-text-gray);
    font-size: 0.9rem;
}

/* Signup Link */
.signup-link {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    font-size: 0.95rem;
    color: var(--kids-text-gray);
}

.signup-link a {
    color: var(--kids-primary);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.signup-link a:hover {
    color: var(--kids-primary-dark);
    text-decoration: underline;
}

/* Demo Login */
.demo-login-section {
    margin-top: 25px;
}

.demo-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 15px;
}

.demo-divider::before,
.demo-divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px dashed #ddd;
}

.demo-divider span {
    padding: 0 15px;
    color: var(--kids-text-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.demo-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.demo-btn {
    padding: 10px 15px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: var(--kids-radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--kids-text-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.demo-btn:hover {
    background: var(--kids-primary);
    color: white;
    border-color: var(--kids-primary);
    transform: translateY(-2px);
}

/* Back to Home */
.back-to-home {
    position: fixed;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--kids-primary);
    text-decoration: none;
    border-radius: var(--kids-radius-full);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 100;
}

.back-to-home:hover {
    background: white;
    transform: translateX(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.back-to-home .back-icon {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 900px) {
    .kids-login-wrapper {
        flex-direction: column;
        max-width: 500px;
    }

    .login-illustration {
        padding: 40px 30px;
    }

    .mascot-container {
        width: 150px;
        height: 150px;
    }

    .welcome-title {
        font-size: 1.5rem;
    }

    .fun-facts {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .fact-item {
        padding: 10px 15px;
    }

    .login-form-container {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .kids-login-section {
        padding: 20px 15px;
    }

    .login-illustration {
        padding: 30px 20px;
    }

    .mascot-container {
        width: 120px;
        height: 120px;
        margin-bottom: 20px;
    }

    .welcome-title {
        font-size: 1.3rem;
    }

    .welcome-text {
        font-size: 0.9rem;
    }

    .fun-facts {
        display: none;
    }

    .login-form-container {
        padding: 30px 20px;
    }

    .login-form-header .header-emoji {
        font-size: 2.5rem;
    }

    .login-form-header h3 {
        font-size: 1.5rem;
    }

    .kids-form-options {
        flex-direction: column;
        align-items: flex-start;
    }

    .demo-buttons {
        flex-direction: column;
    }

    .demo-btn {
        width: 100%;
        justify-content: center;
    }

    .back-to-home {
        top: 10px;
        left: 10px;
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* reCAPTCHA Wrapper */
.recaptcha-wrapper {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.recaptcha-wrapper .g-recaptcha {
    transform: scale(0.9);
    transform-origin: center;
}

@media (max-width: 400px) {
    .recaptcha-wrapper .g-recaptcha {
        transform: scale(0.77);
    }
}

/*==============================================================================
  Kids Sign Up Page Styles
==============================================================================*/
.kids-signup-section {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 50%, #4facfe 100%);
}

.kids-signup-wrapper {
    max-width: 1100px;
}

.signup-illustration {
    background: linear-gradient(135deg, var(--kids-green) 0%, #38f9d7 100%);
}

.signup-form-container {
    padding: 40px 35px;
}

.signup-form-card {
    max-width: 100%;
}

/* Form Row for side-by-side inputs */
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 0;
}

.form-row .kids-form-group {
    flex: 1;
    margin-bottom: 15px;
}

.form-row .kids-form-group.half-width {
    flex: 1;
    min-width: 0;
}

.kids-signup-form .kids-form-group {
    margin-bottom: 15px;
}

.kids-signup-form .kids-form-group label {
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.kids-signup-form .kids-form-input {
    padding: 12px 45px 12px 15px;
    font-size: 0.95rem;
}

.required {
    color: var(--kids-orange);
}

.terms-checkbox {
    font-size: 0.85rem !important;
}

.terms-checkbox .checkbox-text {
    line-height: 1.4;
}

.terms-checkbox .checkbox-text a {
    color: var(--kids-primary);
    font-weight: 600;
    text-decoration: none;
}

.terms-checkbox .checkbox-text a:hover {
    text-decoration: underline;
}

/* Phone input styling for kids theme */
.kids-signup-form .iti {
    width: 100%;
}

.kids-signup-form .iti input {
    width: 100%;
    padding: 12px 45px 12px 52px !important;
    border: 2px solid #e0e0e0;
    border-radius: var(--kids-radius-lg);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.kids-signup-form .iti input:focus {
    outline: none;
    border-color: var(--kids-primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.1);
}

/*==============================================================================
  Kids Forgot Password Page Styles
==============================================================================*/
.kids-forgot-section {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 50%, #f093fb 100%);
}

.kids-forgot-wrapper {
    max-width: 900px;
}

.forgot-illustration {
    background: linear-gradient(135deg, var(--kids-pink) 0%, #fee140 100%);
}

.forgot-mascot {
    width: 180px;
    height: 180px;
}

.forgot-form-container {
    padding: 50px 40px;
}

.forgot-form-card {
    max-width: 380px;
}

/* Info Box */
.kids-info-box {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(108, 99, 255, 0.08);
    border: 1px solid rgba(108, 99, 255, 0.2);
    border-radius: var(--kids-radius-md);
    padding: 15px;
    margin-bottom: 25px;
}

.kids-info-box .info-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.kids-info-box p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--kids-text-gray);
    line-height: 1.5;
}

/* Help Section */
.kids-help-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px dashed #e0e0e0;
    text-align: center;
}

.kids-help-section .help-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    color: var(--kids-text-dark);
    margin-bottom: 8px;
}

.kids-help-section .help-icon {
    font-size: 1.2rem;
}

.kids-help-section p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--kids-text-gray);
}

.kids-help-section a {
    color: var(--kids-primary);
    font-weight: 600;
    text-decoration: none;
}

.kids-help-section a:hover {
    text-decoration: underline;
}

/* Back to Login */
.back-to-login {
    margin-top: 20px;
}

/* Responsive for Sign Up */
@media (max-width: 900px) {
    .kids-signup-wrapper {
        max-width: 500px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .signup-form-container {
        padding: 35px 25px;
    }
}

@media (max-width: 480px) {
    .signup-form-container {
        padding: 25px 20px;
    }

    .kids-signup-form .kids-form-group label {
        font-size: 0.85rem;
    }

    .kids-signup-form .kids-form-input {
        padding: 10px 40px 10px 12px;
        font-size: 0.9rem;
    }
}

/* Responsive for Forgot Password */
@media (max-width: 768px) {
    .kids-forgot-wrapper {
        max-width: 450px;
    }

    .forgot-illustration {
        padding: 35px 25px;
    }

    .forgot-mascot {
        width: 140px;
        height: 140px;
    }

    .forgot-form-container {
        padding: 35px 25px;
    }
}

@media (max-width: 480px) {
    .forgot-form-container {
        padding: 25px 20px;
    }

    .kids-info-box {
        padding: 12px;
    }

    .kids-info-box .info-icon {
        font-size: 1.1rem;
    }

    .kids-info-box p {
        font-size: 0.85rem;
    }
}

/*==============================================================================
  Kids Footer Styles
==============================================================================*/
.kids-footer {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
}

/* Footer Wave */
.footer-wave {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    color: var(--kids-bg-light);
    line-height: 0;
}

.footer-wave svg {
    width: 100%;
    height: 80px;
}

/* Main Footer */
.kids-footer-main {
    padding: 100px 0 40px;
    position: relative;
    z-index: 1;
}

/* Footer Brand */
.footer-brand {
    margin-bottom: 30px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 50px;
    width: auto;
}

.footer-logo .kids-logo-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo .logo-icon {
    font-size: 2rem;
}

.footer-logo .logo-name {
    font-family: var(--kids-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Social Links */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-social .social-label {
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0.9;
}

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

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

.footer-social .social-icon.facebook { background: #3b5998; }
.footer-social .social-icon.youtube { background: #ff0000; }
.footer-social .social-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.footer-social .social-icon.twitter { background: #1da1f2; }

.footer-social .social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Footer Widget */
.footer-widget {
    margin-bottom: 30px;
}

.footer-widget .widget-title {
    font-family: var(--kids-font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-widget .title-icon {
    font-size: 1.2rem;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--kids-yellow);
    transform: translateX(5px);
}

.footer-links .link-dot {
    width: 6px;
    height: 6px;
    background: var(--kids-yellow);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Newsletter Widget */
.newsletter-widget-kids .newsletter-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.newsletter-form-kids .input-group-kids {
    display: flex;
    gap: 0;
    background: white;
    border-radius: var(--kids-radius-full);
    overflow: hidden;
    padding: 5px;
}

.newsletter-form-kids input {
    flex: 1;
    border: none;
    padding: 12px 15px;
    font-size: 0.95rem;
    background: transparent;
    color: var(--kids-text-dark);
}

.newsletter-form-kids input:focus {
    outline: none;
}

.newsletter-form-kids input::placeholder {
    color: #adb5bd;
}

.newsletter-form-kids button {
    background: var(--kids-gradient-1);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: var(--kids-radius-full);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.newsletter-form-kids button:hover {
    transform: scale(1.05);
}

.newsletter-loading-btn {
    display: none;
}

/* Contact Widget */
.contact-info-kids {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info-kids li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.contact-info-kids .contact-icon {
    font-size: 1.2rem;
}

.contact-info-kids a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-kids a:hover {
    color: var(--kids-yellow);
}

/* Footer Characters */
.footer-characters {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 30px 0;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-characters .character {
    font-size: 2.5rem;
    animation: bounce-slow 3s infinite ease-in-out;
}

.footer-characters .char-1 { animation-delay: 0s; }
.footer-characters .char-2 { animation-delay: 0.5s; }
.footer-characters .char-3 { animation-delay: 1s; }
.footer-characters .char-4 { animation-delay: 1.5s; }
.footer-characters .char-5 { animation-delay: 2s; }

/* Footer Bottom */
.kids-footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.payment-methods img {
    max-height: 30px;
    opacity: 0.9;
}

/* Footer Decorations */
.footer-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.footer-decorations .deco {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.footer-decorations .deco-1 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}

.footer-decorations .deco-2 {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 5%;
}

.footer-decorations .deco-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 20%;
}

/* Kids Back to Top */
.kids-back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: auto;
    padding: 12px 20px;
    background: var(--kids-gradient-1);
    color: white;
    border-radius: var(--kids-radius-full);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 25px rgba(108, 99, 255, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

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

.kids-back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(108, 99, 255, 0.5);
    color: white;
}

.kids-back-to-top .top-icon {
    font-size: 1.2rem;
    animation: rocket-fly 2s infinite ease-in-out;
}

/* Kids Cookie Popup */
.kids-cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.15);
    padding: 20px 0;
    z-index: 9999;
    display: none;
}

.cookie-content-kids {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content-kids .cookie-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.cookie-content-kids .cookie-text {
    flex: 1;
    min-width: 200px;
}

.cookie-content-kids .cookie-text h4 {
    font-family: var(--kids-font-heading);
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--kids-text-dark);
}

.cookie-content-kids .cookie-text div {
    font-size: 0.9rem;
    color: var(--kids-text-gray);
}

.cookie-content-kids .cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* Footer Responsive */
@media (max-width: 991px) {
    .kids-footer-main {
        padding: 80px 0 30px;
    }

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

    .footer-social {
        align-items: center;
    }

    .footer-widget {
        text-align: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-characters {
        gap: 25px;
    }

    .footer-characters .character {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .footer-wave svg {
        height: 50px;
    }

    .kids-footer-main {
        padding: 60px 0 20px;
    }

    .footer-bottom-content {
        justify-content: center;
        text-align: center;
    }

    .footer-characters {
        gap: 20px;
    }

    .footer-characters .character {
        font-size: 1.8rem;
    }

    .kids-back-to-top {
        bottom: 20px;
        right: 20px;
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .cookie-content-kids {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content-kids .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .newsletter-form-kids .input-group-kids {
        flex-direction: column;
        border-radius: var(--kids-radius-lg);
    }

    .newsletter-form-kids button {
        width: 100%;
        justify-content: center;
        border-radius: var(--kids-radius-md);
    }

    .footer-characters {
        display: none;
    }
}

/*==============================================================================
  Kids Courses Page Styles
==============================================================================*/

/* Page Hero */
.kids-page-hero {
    position: relative;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--kids-primary) 0%, var(--kids-purple) 100%);
    color: white;
    overflow: hidden;
}

.kids-page-hero .hero-bg-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.kids-page-hero .floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.kids-page-hero .shape-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    left: -50px;
    animation: float-rotate 20s infinite linear;
}

.kids-page-hero .shape-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    right: 10%;
    animation: float-rotate 15s infinite linear reverse;
}

.kids-page-hero .shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: -30px;
    animation: float-rotate 18s infinite linear;
}

.kids-page-hero .floating-emoji {
    position: absolute;
    font-size: 2rem;
    opacity: 0.5;
    animation: float-rotate 10s infinite ease-in-out;
}

.kids-page-hero .emoji-1 { top: 20%; left: 10%; }
.kids-page-hero .emoji-2 { bottom: 20%; right: 15%; animation-delay: 2s; }
.kids-page-hero .emoji-3 { top: 40%; right: 25%; animation-delay: 4s; }

.kids-page-hero .hero-content {
    position: relative;
    z-index: 1;
}

.kids-page-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: var(--kids-radius-full);
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.kids-page-hero .hero-title {
    font-family: var(--kids-font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.kids-page-hero .hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.kids-page-hero .hero-stats .stat-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 15px 30px;
    border-radius: var(--kids-radius-lg);
    backdrop-filter: blur(10px);
}

.kids-page-hero .stat-number {
    font-size: 2rem;
    font-weight: 800;
    font-family: var(--kids-font-heading);
}

.kids-page-hero .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Courses Section */
.kids-courses-section {
    padding: 50px 0 80px;
    background: var(--kids-bg-light);
}

/* Courses Toolbar */
.courses-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    padding: 15px 20px;
    background: white;
    border-radius: var(--kids-radius-lg);
    box-shadow: var(--kids-shadow-sm);
}

.courses-toolbar .result-text {
    color: var(--kids-text-gray);
    font-size: 0.95rem;
}

.courses-toolbar .toolbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.kids-select {
    padding: 10px 35px 10px 15px;
    border: 2px solid #e0e0e0;
    border-radius: var(--kids-radius-md);
    font-size: 0.95rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.kids-select:focus {
    outline: none;
    border-color: var(--kids-primary);
}

.view-toggle {
    display: flex;
    gap: 5px;
}

.view-toggle .view-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: var(--kids-radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--kids-text-gray);
}

.view-toggle .view-btn.active,
.view-toggle .view-btn:hover {
    background: var(--kids-primary);
    border-color: var(--kids-primary);
    color: white;
}

/* Course Card */
.kids-course-card {
    background: white;
    border-radius: var(--kids-radius-xl);
    overflow: hidden;
    box-shadow: var(--kids-shadow);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-bottom: 30px;
}

.kids-course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--kids-shadow-lg);
}

.kids-course-card .course-card-image {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.kids-course-card .course-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.kids-course-card:hover .course-card-image img {
    transform: scale(1.1);
}

.kids-course-card .card-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 2;
}

.kids-course-card .badge {
    padding: 5px 12px;
    border-radius: var(--kids-radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.kids-course-card .badge-free { background: var(--kids-green); }
.kids-course-card .badge-sale { background: var(--kids-orange); }
.kids-course-card .badge-bundle { background: var(--kids-purple); }

.kids-course-card .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(108, 99, 255, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.kids-course-card:hover .card-overlay {
    opacity: 1;
}

.kids-course-card .play-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}

.kids-course-card .overlay-text {
    color: white;
    font-weight: 600;
}

.kids-course-card .course-card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.kids-course-card .card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.kids-course-card .category-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(108, 99, 255, 0.1);
    color: var(--kids-primary);
    padding: 5px 12px;
    border-radius: var(--kids-radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.kids-course-card .category-badge:hover {
    background: var(--kids-primary);
    color: white;
}

.kids-course-card .rating-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 700;
    color: var(--kids-yellow);
}

.kids-course-card .course-title {
    font-family: var(--kids-font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.kids-course-card .course-title a {
    color: var(--kids-text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.kids-course-card .course-title a:hover {
    color: var(--kids-primary);
}

.kids-course-card .course-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #e0e0e0;
}

.kids-course-card .stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: var(--kids-text-gray);
}

.kids-course-card .course-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.kids-course-card .course-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.kids-course-card .price-free {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--kids-green);
}

.kids-course-card .price-current {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--kids-primary);
}

.kids-course-card .price-original {
    font-size: 0.9rem;
    color: var(--kids-text-light);
    text-decoration: line-through;
}

.kids-course-card .btn-enroll {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: var(--kids-gradient-1);
    color: white;
    border-radius: var(--kids-radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.kids-course-card .btn-enroll:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(108, 99, 255, 0.4);
}

.kids-course-card .card-corner-deco {
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-size: 1.5rem;
    opacity: 0.3;
}

/* List View */
.kids-courses-grid.list-view .kids-course-card {
    flex-direction: row;
}

.kids-courses-grid.list-view .course-card-image {
    width: 280px;
    flex-shrink: 0;
    aspect-ratio: auto;
    height: 100%;
}

.kids-courses-grid.list-view .course-card-content {
    width: 100%;
}

/* Sidebar */
.kids-course-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    border-radius: var(--kids-radius-lg);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--kids-shadow-sm);
}

.sidebar-widget .widget-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px dashed #f0f0f0;
}

.sidebar-widget .widget-icon {
    font-size: 1.3rem;
}

.sidebar-widget .widget-header h4 {
    font-family: var(--kids-font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.sidebar-widget .total-badge {
    background: var(--kids-primary);
    color: white;
    padding: 2px 10px;
    border-radius: var(--kids-radius-full);
    font-size: 0.8rem;
    font-weight: 600;
}

.search-widget .search-input-wrap {
    display: flex;
    gap: 0;
    background: #f5f5f5;
    border-radius: var(--kids-radius-md);
    overflow: hidden;
}

.search-widget .kids-search-input {
    flex: 1;
    border: none;
    padding: 12px 15px;
    background: transparent;
    font-size: 0.95rem;
}

.search-widget .kids-search-input:focus {
    outline: none;
}

.search-widget .search-btn {
    padding: 12px 15px;
    background: var(--kids-primary);
    color: white;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-widget .search-btn:hover {
    background: var(--kids-primary-dark);
}

.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 250px;
    overflow-y: auto;
}

.filter-list li {
    margin-bottom: 10px;
}

.kids-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--kids-text-gray);
    transition: color 0.3s ease;
}

.kids-checkbox-label:hover {
    color: var(--kids-text-dark);
}

.kids-checkbox-label input {
    display: none;
}

.kids-checkbox-label .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.kids-checkbox-label input:checked + .checkmark {
    background: var(--kids-primary);
    border-color: var(--kids-primary);
}

.kids-checkbox-label input:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
}

.kids-checkbox-label .label-text {
    flex: 1;
}

.kids-checkbox-label .count {
    color: var(--kids-text-light);
    font-size: 0.85rem;
}

.sub-filter-list {
    list-style: none;
    padding: 0 0 0 25px;
    margin-top: 8px;
}

.rating-filter-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.kids-rating-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.kids-rating-label input {
    display: none;
}

.kids-rating-label .rating-stars {
    display: flex;
    gap: 2px;
}

.kids-rating-label .star {
    font-size: 0.9rem;
    filter: grayscale(1);
    opacity: 0.3;
}

.kids-rating-label .star.filled {
    filter: none;
    opacity: 1;
}

.kids-rating-label input:checked ~ .rating-stars .star.filled {
    transform: scale(1.1);
}

.sidebar-reset {
    margin-top: 10px;
}

/* Empty State */
.kids-empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: var(--kids-radius-xl);
}

.kids-empty-state .empty-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.kids-empty-state h3 {
    font-family: var(--kids-font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--kids-text-dark);
}

.kids-empty-state p {
    color: var(--kids-text-gray);
    margin-bottom: 25px;
}

/* Load More */
.courses-load-more {
    margin-top: 30px;
}

/* Featured Section */
.kids-featured-section {
    padding: 60px 0;
    background: white;
}

/* Responsive */
@media (max-width: 991px) {
    .kids-page-hero {
        padding: 60px 0 40px;
    }

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

    .kids-courses-grid.list-view .kids-course-card {
        flex-direction: column;
    }

    .kids-courses-grid.list-view .course-card-image {
        width: 100%;
        aspect-ratio: 16/10;
    }

    .kids-course-sidebar {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .kids-page-hero .hero-title {
        font-size: 1.8rem;
    }

    .courses-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .courses-toolbar .toolbar-right {
        justify-content: space-between;
    }

    .kids-course-card .course-title {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .kids-page-hero {
        padding: 40px 0 30px;
    }

    .kids-page-hero .hero-title {
        font-size: 1.5rem;
    }

    .kids-course-card .course-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .kids-course-card .btn-enroll {
        width: 100%;
        justify-content: center;
    }
}

/*==============================================================================
  Kids Course Detail Page Styles
==============================================================================*/

/* Course Detail Hero */
.kids-course-detail-hero {
    position: relative;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--kids-primary) 0%, var(--kids-purple) 100%);
    color: white;
    overflow: hidden;
}

.kids-course-detail-hero .hero-content .category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: var(--kids-radius-full);
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.kids-course-detail-hero .hero-content .category-badge:hover {
    background: rgba(255, 255, 255, 0.3);
}

.kids-course-detail-hero .course-title {
    font-family: var(--kids-font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

.kids-course-detail-hero .course-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.6;
}

.kids-course-detail-hero .course-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.kids-course-detail-hero .meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.kids-course-detail-hero .meta-item.rating .value {
    font-weight: 700;
    font-size: 1.1rem;
}

/* Course Content Section */
.kids-course-detail-content {
    padding: 50px 0 80px;
    background: var(--kids-bg-light);
}

.course-content-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Content Cards */
.content-card {
    background: white;
    border-radius: var(--kids-radius-xl);
    overflow: hidden;
    box-shadow: var(--kids-shadow);
}

.content-card .card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 25px;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.05) 0%, rgba(255, 107, 157, 0.05) 100%);
    border-bottom: 2px dashed #f0f0f0;
}

.content-card .card-header .header-icon {
    font-size: 1.5rem;
}

.content-card .card-header h3 {
    font-family: var(--kids-font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
}

.content-card .card-header .progress-badge {
    background: var(--kids-green);
    color: white;
    padding: 5px 12px;
    border-radius: var(--kids-radius-full);
    font-size: 0.85rem;
    font-weight: 600;
}

.content-card .card-body {
    padding: 25px;
}

/* Instructors Grid */
.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.instructor-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: var(--kids-radius-lg);
    transition: all 0.3s ease;
}

.instructor-card:hover {
    background: #f0f0f0;
}

.instructor-card .instructor-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--kids-primary);
}

.instructor-card h4 {
    font-size: 1rem;
    margin: 0 0 5px;
}

.instructor-card h4 a {
    color: var(--kids-text-dark);
    text-decoration: none;
}

.instructor-card p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--kids-text-gray);
}

/* Curriculum Accordion */
.curriculum-accordion .accordion-item,
.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 10px;
    background: #f8f9fa;
    border-radius: var(--kids-radius-lg) !important;
    overflow: hidden;
}

.curriculum-accordion .accordion-header,
.faq-accordion .accordion-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.curriculum-accordion .accordion-header:hover,
.faq-accordion .accordion-header:hover {
    background: rgba(108, 99, 255, 0.1);
}

.curriculum-accordion .section-icon,
.faq-accordion .faq-icon {
    font-size: 1.2rem;
}

.curriculum-accordion .section-title,
.faq-accordion .faq-question {
    flex: 1;
    font-weight: 600;
    color: var(--kids-text-dark);
}

.curriculum-accordion .section-count {
    font-size: 0.85rem;
    color: var(--kids-text-gray);
    background: white;
    padding: 4px 12px;
    border-radius: var(--kids-radius-full);
}

.curriculum-accordion .accordion-body,
.faq-accordion .accordion-body {
    padding: 15px 20px;
    background: white;
}

/* Lesson Items */
.lesson-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: var(--kids-radius-md);
    transition: all 0.3s ease;
}

.lesson-item:hover {
    background: #f8f9fa;
}

.lesson-item.is-free {
    background: rgba(82, 196, 26, 0.1);
}

.lesson-item .lesson-icon {
    font-size: 1.2rem;
}

.lesson-item .lesson-info {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lesson-item .lesson-title {
    font-size: 0.95rem;
    color: var(--kids-text-dark);
}

.lesson-item .free-badge {
    background: var(--kids-green);
    color: white;
    padding: 2px 8px;
    border-radius: var(--kids-radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.lesson-item .lesson-duration {
    font-size: 0.85rem;
    color: var(--kids-text-gray);
}

/* Rating Summary */
.rating-summary {
    display: flex;
    gap: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: var(--kids-radius-lg);
    margin-bottom: 30px;
}

.rating-big {
    text-align: center;
    padding: 20px;
}

.rating-big .rating-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--kids-primary);
    line-height: 1;
}

.rating-big .rating-stars {
    display: block;
    font-size: 1.2rem;
    margin: 10px 0;
}

.rating-big .rating-count {
    font-size: 0.9rem;
    color: var(--kids-text-gray);
}

.rating-bars {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-bar-item .bar-label {
    width: 50px;
    font-size: 0.85rem;
}

.rating-bar-item .bar-track {
    flex: 1;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar-item .bar-fill {
    height: 100%;
    background: var(--kids-yellow);
    border-radius: 4px;
}

.rating-bar-item .bar-percent {
    width: 40px;
    font-size: 0.85rem;
    color: var(--kids-text-gray);
}

/* Write Review Form */
.write-review-form {
    padding: 25px;
    background: #f8f9fa;
    border-radius: var(--kids-radius-lg);
    margin-bottom: 30px;
}

.write-review-form h4 {
    font-family: var(--kids-font-heading);
    margin-bottom: 20px;
}

.write-review-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: var(--kids-radius-md);
    resize: vertical;
    margin-bottom: 15px;
    transition: border-color 0.3s ease;
}

.write-review-form textarea:focus {
    outline: none;
    border-color: var(--kids-primary);
}

.write-review-form .rating-input {
    margin-bottom: 15px;
}

/* Reviews List */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: var(--kids-radius-lg);
}

.review-item .review-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-item .review-content {
    flex: 1;
}

.review-item .review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review-item .reviewer-name {
    font-weight: 600;
    color: var(--kids-text-dark);
}

.review-item .review-text {
    margin: 0 0 10px;
    color: var(--kids-text-gray);
    line-height: 1.6;
}

.review-item .review-date {
    font-size: 0.85rem;
    color: var(--kids-text-light);
}

/* Course Detail Sidebar */
.course-detail-sidebar {
    position: relative;
}

.sticky-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: white;
    border-radius: var(--kids-radius-xl);
    overflow: hidden;
    box-shadow: var(--kids-shadow-lg);
}

.course-video-preview {
    position: relative;
}

.course-video-preview img,
.course-video-preview video,
.course-video-preview iframe {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.course-price-box {
    padding: 20px;
    text-align: center;
    border-bottom: 1px dashed #e0e0e0;
}

.discount-countdown {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 71, 71, 0.1);
    color: #ff4747;
    padding: 8px 15px;
    border-radius: var(--kids-radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.price-display .price-current {
    font-size: 2rem;
    font-weight: 800;
    color: var(--kids-primary);
}

.price-display .price-current.free {
    color: var(--kids-green);
}

.price-display .price-original {
    font-size: 1.2rem;
    color: var(--kids-text-light);
    text-decoration: line-through;
}

/* Course Features */
.course-features {
    padding: 20px;
    border-bottom: 1px dashed #e0e0e0;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.feature-item .feature-icon {
    width: 30px;
    font-size: 1.1rem;
}

.feature-item .feature-label {
    flex: 1;
    color: var(--kids-text-gray);
}

.feature-item .feature-value {
    font-weight: 600;
    color: var(--kids-text-dark);
}

/* Course Actions */
.course-actions {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wishlist-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: var(--kids-radius-md);
    color: var(--kids-text-gray);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.wishlist-btn:hover {
    background: rgba(255, 107, 157, 0.1);
    color: var(--kids-pink);
}

/* Course Share */
.course-share {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
}

.course-share .share-label {
    font-size: 0.9rem;
    color: var(--kids-text-gray);
}

.course-share .share-buttons {
    display: flex;
    gap: 8px;
}

.course-share .share-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.course-share .share-btn:hover {
    transform: scale(1.1);
}

.course-share .share-btn.facebook { background: #3b5998; }
.course-share .share-btn.twitter { background: #1da1f2; }
.course-share .share-btn.linkedin { background: #0077b5; }
.course-share .share-btn.whatsapp { background: #25d366; }

/* Related Courses */
.kids-related-courses {
    padding: 60px 0;
    background: white;
}

/* Responsive */
@media (max-width: 991px) {
    .kids-course-detail-hero {
        padding: 60px 0 40px;
    }

    .kids-course-detail-hero .course-title {
        font-size: 1.8rem;
    }

    .sticky-sidebar {
        position: static;
        margin-bottom: 30px;
    }

    .rating-summary {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .kids-course-detail-hero .course-title {
        font-size: 1.5rem;
    }

    .kids-course-detail-hero .course-meta {
        flex-direction: column;
        gap: 10px;
    }

    .instructors-grid {
        grid-template-columns: 1fr;
    }
}

/*==============================================================================
  Kids Blog Pages - Fun & Engaging Blog Design
==============================================================================*/

/* Blog Hero Section */
.kids-blog-hero {
    background: var(--kids-gradient-hero);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.kids-blog-hero .hero-decoration .floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
}

.kids-blog-hero .floating-shape.shape-1 {
    width: 150px;
    height: 150px;
    background: var(--kids-yellow);
    top: 20%;
    left: 5%;
    animation: floatAnimation 4s ease-in-out infinite;
}

.kids-blog-hero .floating-shape.shape-2 {
    width: 100px;
    height: 100px;
    background: var(--kids-green);
    top: 40%;
    right: 10%;
    animation: floatAnimation 5s ease-in-out infinite 1s;
}

.kids-blog-hero .floating-shape.shape-3 {
    width: 80px;
    height: 80px;
    background: var(--kids-pink);
    bottom: 20%;
    left: 15%;
    animation: floatAnimation 3.5s ease-in-out infinite 0.5s;
}

.kids-blog-hero .hero-content {
    position: relative;
    z-index: 2;
}

.kids-blog-hero .hero-title {
    font-family: var(--kids-font-primary);
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.kids-blog-hero .hero-title .title-icon {
    margin: 0 10px;
    display: inline-block;
    animation: bounceAnimation 1.5s ease-in-out infinite;
}

.kids-blog-hero .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.kids-blog-hero .hero-stats {
    display: inline-flex;
    gap: 30px;
}

.kids-blog-hero .stat-item {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 30px;
    border-radius: var(--kids-radius-lg);
    backdrop-filter: blur(10px);
}

.kids-blog-hero .stat-number {
    font-family: var(--kids-font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: white;
    display: block;
}

.kids-blog-hero .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Blog Section */
.kids-blog-section {
    padding: 60px 0;
    background: var(--kids-bg-light);
}

.blog-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px 25px;
    background: white;
    border-radius: var(--kids-radius-lg);
    box-shadow: var(--kids-shadow-sm);
}

.blog-header-bar .section-title {
    font-family: var(--kids-font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--kids-text-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-header-bar .section-title .icon {
    font-size: 1.8rem;
}

.blog-header-bar .results-info {
    color: var(--kids-text-gray);
    font-size: 0.95rem;
}

/* Blog Grid */
.blog-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.blog-grid > div {
    padding: 15px;
}

/* Kids Blog Card */
.kids-blog-card {
    background: white;
    border-radius: var(--kids-radius-xl);
    overflow: hidden;
    box-shadow: var(--kids-shadow);
    transition: var(--kids-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.kids-blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--kids-shadow-lg);
}

.kids-blog-card .card-image {
    position: relative;
    overflow: hidden;
}

.kids-blog-card .card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--kids-transition);
}

.kids-blog-card:hover .card-image img {
    transform: scale(1.1);
}

.kids-blog-card .card-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: white;
    padding: 8px 15px;
    border-radius: var(--kids-radius);
    font-size: 0.85rem;
    color: var(--kids-text-gray);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.kids-blog-card .card-date i {
    color: var(--kids-primary);
}

.kids-blog-card .featured-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--kids-gradient-5);
    color: white;
    padding: 6px 12px;
    border-radius: var(--kids-radius);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.kids-blog-card .card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.kids-blog-card .card-title {
    font-family: var(--kids-font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.kids-blog-card .card-title a {
    color: var(--kids-text-dark);
    transition: var(--kids-transition);
}

.kids-blog-card .card-title a:hover {
    color: var(--kids-primary);
}

.kids-blog-card .card-excerpt {
    color: var(--kids-text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.kids-blog-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px dashed #e0e0e0;
}

.kids-blog-card .card-meta {
    display: flex;
    gap: 15px;
}

.kids-blog-card .card-meta span {
    font-size: 0.85rem;
    color: var(--kids-text-gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.kids-blog-card .card-meta i {
    color: var(--kids-primary);
}

.kids-blog-card .read-more-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--kids-primary);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--kids-transition);
}

.kids-blog-card .read-more-link:hover {
    color: var(--kids-primary-dark);
    gap: 10px;
}

/* Blog Sidebar Kids */
.blog-sidebar-kids {
    position: sticky;
    top: 100px;
}

.blog-sidebar-kids .sidebar-widget {
    background: white;
    border-radius: var(--kids-radius-xl);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--kids-shadow);
}

.blog-sidebar-kids .widget-title {
    font-family: var(--kids-font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--kids-text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-sidebar-kids .widget-title .icon {
    font-size: 1.4rem;
}

.blog-sidebar-kids .category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-sidebar-kids .category-list li {
    margin-bottom: 12px;
}

.blog-sidebar-kids .category-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 10px 15px;
    border-radius: var(--kids-radius);
    transition: var(--kids-transition);
}

.blog-sidebar-kids .category-item:hover {
    background: var(--kids-bg-light);
}

.blog-sidebar-kids .category-item input[type="checkbox"] {
    display: none;
}

.blog-sidebar-kids .category-item .checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid #ddd;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--kids-transition);
}

.blog-sidebar-kids .category-item input:checked + .checkmark {
    background: var(--kids-primary);
    border-color: var(--kids-primary);
}

.blog-sidebar-kids .category-item input:checked + .checkmark::after {
    content: '\2713';
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.blog-sidebar-kids .category-name {
    font-size: 0.95rem;
    color: var(--kids-text-dark);
}

.blog-sidebar-kids .tip-widget {
    background: var(--kids-gradient-4);
    text-align: center;
    color: white;
}

.blog-sidebar-kids .tip-widget .tip-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.blog-sidebar-kids .tip-widget h4 {
    font-family: var(--kids-font-primary);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.blog-sidebar-kids .tip-widget p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

/* Blog Pagination */
.blog-pagination {
    margin-top: 40px;
}

/* Featured Blog Section */
.kids-featured-blog-section {
    padding: 80px 0;
    background: white;
    position: relative;
}

.kids-featured-blog-section.detail-page {
    background: var(--kids-bg-light);
}

.kids-featured-blog-section .section-decoration .deco-star {
    position: absolute;
    font-size: 2rem;
    opacity: 0.5;
}

.kids-featured-blog-section .deco-star.star-1 {
    top: 30px;
    left: 10%;
    animation: twinkle 2s ease-in-out infinite;
}

.kids-featured-blog-section .deco-star.star-2 {
    top: 50px;
    right: 15%;
    animation: twinkle 2s ease-in-out infinite 0.5s;
}

.kids-featured-blog-section .section-header {
    margin-bottom: 50px;
}

.kids-featured-blog-section .section-title {
    font-family: var(--kids-font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: var(--kids-text-dark);
    margin-bottom: 10px;
}

.kids-featured-blog-section .section-title .icon {
    margin: 0 10px;
}

.kids-featured-blog-section .section-subtitle {
    color: var(--kids-text-gray);
    font-size: 1.1rem;
}

.featured-pagination {
    margin-top: 40px;
}

/* Empty State */
.kids-empty-state {
    text-align: center;
    padding: 60px 30px;
    background: white;
    border-radius: var(--kids-radius-xl);
    box-shadow: var(--kids-shadow);
}

.kids-empty-state .empty-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.kids-empty-state h4 {
    font-family: var(--kids-font-primary);
    font-size: 1.5rem;
    color: var(--kids-text-dark);
    margin-bottom: 10px;
}

.kids-empty-state p {
    color: var(--kids-text-gray);
}

/*==============================================================================
  Blog Detail Page Styles
==============================================================================*/

/* Blog Detail Hero */
.kids-blog-detail-hero {
    background: var(--kids-gradient-hero);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.kids-blog-detail-hero .hero-decoration .floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.kids-blog-detail-hero .floating-shape.shape-1 {
    width: 200px;
    height: 200px;
    background: var(--kids-yellow);
    top: -50px;
    right: 10%;
    animation: floatAnimation 6s ease-in-out infinite;
}

.kids-blog-detail-hero .floating-shape.shape-2 {
    width: 120px;
    height: 120px;
    background: var(--kids-green);
    bottom: 20%;
    left: 5%;
    animation: floatAnimation 5s ease-in-out infinite 1s;
}

.kids-blog-detail-hero .hero-content {
    position: relative;
    z-index: 2;
}

.kids-blog-detail-hero .blog-meta-top {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.kids-blog-detail-hero .date-badge,
.kids-blog-detail-hero .author-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: var(--kids-radius);
    color: white;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(5px);
}

.kids-blog-detail-hero .blog-title {
    font-family: var(--kids-font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.3;
}

/* Blog Detail Section */
.kids-blog-detail-section {
    padding: 60px 0;
    background: var(--kids-bg-light);
}

.blog-detail-content {
    background: white;
    border-radius: var(--kids-radius-xl);
    overflow: hidden;
    box-shadow: var(--kids-shadow);
}

.blog-featured-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.blog-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-body-content {
    padding: 40px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--kids-text-dark);
}

.blog-body-content p {
    margin-bottom: 20px;
}

.blog-body-content h2,
.blog-body-content h3,
.blog-body-content h4 {
    font-family: var(--kids-font-primary);
    margin: 30px 0 15px;
    color: var(--kids-text-dark);
}

.blog-body-content img {
    max-width: 100%;
    border-radius: var(--kids-radius-lg);
    margin: 20px 0;
}

.blog-body-content ul,
.blog-body-content ol {
    padding-left: 25px;
    margin-bottom: 20px;
}

.blog-body-content li {
    margin-bottom: 10px;
}

/* Share Section */
.blog-share-section {
    padding: 30px 40px;
    border-top: 1px dashed #e0e0e0;
}

.blog-share-section h5 {
    font-family: var(--kids-font-primary);
    font-size: 1.1rem;
    color: var(--kids-text-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-share-section .share-buttons {
    display: flex;
    gap: 12px;
}

.blog-share-section .share-btn {
    width: 45px;
    height: 45px;
    border-radius: var(--kids-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: var(--kids-transition);
}

.blog-share-section .share-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--kids-shadow);
}

.blog-share-section .share-btn.facebook { background: #1877f2; }
.blog-share-section .share-btn.twitter { background: #1da1f2; }
.blog-share-section .share-btn.linkedin { background: #0077b5; }

/* Comments Section */
.blog-comments-section {
    padding: 40px;
    border-top: 1px dashed #e0e0e0;
}

.blog-comments-section .section-title {
    font-family: var(--kids-font-primary);
    font-size: 1.3rem;
    color: var(--kids-text-dark);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-comments-section .comment-count {
    font-size: 0.9rem;
    color: var(--kids-text-gray);
    font-weight: normal;
}

.comment-form-wrapper {
    background: var(--kids-bg-light);
    padding: 25px;
    border-radius: var(--kids-radius-lg);
    margin-bottom: 30px;
}

.comment-form textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: var(--kids-radius);
    font-size: 1rem;
    resize: vertical;
    transition: var(--kids-transition);
}

.comment-form textarea:focus {
    border-color: var(--kids-primary);
    outline: none;
}

.comment-form .form-actions {
    margin-top: 15px;
    text-align: right;
}

/* Login to Comment */
.login-to-comment {
    padding: 40px;
    border-top: 1px dashed #e0e0e0;
}

.login-prompt {
    text-align: center;
    padding: 40px;
    background: var(--kids-bg-light);
    border-radius: var(--kids-radius-lg);
}

.login-prompt .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.login-prompt p {
    color: var(--kids-text-gray);
    margin-bottom: 20px;
}

/* Blog Detail Sidebar */
.blog-detail-sidebar {
    position: sticky;
    top: 100px;
}

.blog-detail-sidebar .sidebar-widget {
    background: white;
    border-radius: var(--kids-radius-xl);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--kids-shadow);
}

.blog-detail-sidebar .widget-title {
    font-family: var(--kids-font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--kids-text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.related-posts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-post-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #e0e0e0;
}

.related-post-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.related-post-item .post-image {
    width: 80px;
    height: 60px;
    flex-shrink: 0;
    border-radius: var(--kids-radius);
    overflow: hidden;
}

.related-post-item .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-post-item .post-info h5 {
    font-family: var(--kids-font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
}

.related-post-item .post-info h5 a {
    color: var(--kids-text-dark);
    transition: var(--kids-transition);
}

.related-post-item .post-info h5 a:hover {
    color: var(--kids-primary);
}

.related-post-item .post-date {
    font-size: 0.8rem;
    color: var(--kids-text-gray);
    display: flex;
    align-items: center;
    gap: 5px;
}

.related-post-item .post-date i {
    color: var(--kids-primary);
}

/* Back to Blog Widget */
.back-to-blog-widget {
    background: var(--kids-gradient-1) !important;
}

.back-to-blog-widget .back-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 10px;
    transition: var(--kids-transition);
}

.back-to-blog-widget .back-link:hover {
    gap: 15px;
}

/* Blog Responsive */
@media (max-width: 991px) {
    .kids-blog-hero {
        padding: 60px 0 40px;
    }

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

    .kids-blog-detail-hero .blog-title {
        font-size: 1.8rem;
    }

    .blog-sidebar-kids,
    .blog-detail-sidebar {
        position: static;
        margin-top: 40px;
    }

    .blog-featured-image {
        height: 280px;
    }
}

@media (max-width: 767px) {
    .kids-blog-hero .hero-title {
        font-size: 1.6rem;
    }

    .kids-blog-hero .hero-title .title-icon {
        display: none;
    }

    .blog-header-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .kids-blog-detail-hero .blog-meta-top {
        flex-direction: column;
        gap: 10px;
    }

    .kids-blog-detail-hero .blog-title {
        font-size: 1.5rem;
    }

    .blog-body-content,
    .blog-share-section,
    .blog-comments-section,
    .login-to-comment {
        padding: 25px;
    }

    .blog-featured-image {
        height: 220px;
    }

    .kids-blog-card .card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

/*==============================================================================
  Kids Dashboard & Profile Pages
==============================================================================*/

/* Dashboard Hero */
.kids-dashboard-hero {
    background: var(--kids-gradient-hero);
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}

.kids-dashboard-hero .hero-decoration .floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.kids-dashboard-hero .floating-shape.shape-1 {
    width: 120px;
    height: 120px;
    background: var(--kids-yellow);
    top: 20%;
    left: 5%;
    animation: floatAnimation 4s ease-in-out infinite;
}

.kids-dashboard-hero .floating-shape.shape-2 {
    width: 80px;
    height: 80px;
    background: var(--kids-green);
    top: 50%;
    right: 10%;
    animation: floatAnimation 5s ease-in-out infinite 1s;
}

.kids-dashboard-hero .floating-shape.shape-3 {
    width: 60px;
    height: 60px;
    background: var(--kids-pink);
    bottom: 20%;
    left: 20%;
    animation: floatAnimation 3.5s ease-in-out infinite 0.5s;
}

.kids-dashboard-hero .hero-content {
    position: relative;
    z-index: 2;
}

.kids-dashboard-hero .welcome-message {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.kids-dashboard-hero .wave-emoji {
    font-size: 2.5rem;
    animation: waveAnimation 2s ease-in-out infinite;
}

@keyframes waveAnimation {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(20deg); }
    75% { transform: rotate(-20deg); }
}

.kids-dashboard-hero h1 {
    font-family: var(--kids-font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 0;
}

.kids-dashboard-hero h1 .user-name {
    color: var(--kids-yellow);
}

.kids-dashboard-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 10px 0 0;
    width: 100%;
}

/* Dashboard Section */
.kids-dashboard-section {
    padding: 40px 0 80px;
    background: var(--kids-bg-light);
}

/* Profile Sidebar */
.kids-profile-sidebar {
    background: white;
    border-radius: var(--kids-radius-xl);
    box-shadow: var(--kids-shadow);
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.kids-profile-sidebar .user-profile-card {
    background: var(--kids-gradient-1);
    padding: 25px;
    text-align: center;
    position: relative;
}

.kids-profile-sidebar .profile-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 15px;
    position: relative;
    border: 4px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.kids-profile-sidebar .profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kids-profile-sidebar .avatar-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 24px;
    height: 24px;
    background: var(--kids-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.kids-profile-sidebar .profile-info .user-name {
    font-family: var(--kids-font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin: 0 0 5px;
}

.kids-profile-sidebar .profile-info .user-role {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
}

.kids-profile-sidebar .edit-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--kids-transition);
}

.kids-profile-sidebar .edit-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Sidebar Navigation */
.kids-profile-sidebar .sidebar-nav {
    padding: 15px;
}

.kids-profile-sidebar .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.kids-profile-sidebar .nav-list li {
    margin-bottom: 5px;
}

.kids-profile-sidebar .nav-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: var(--kids-radius);
    color: var(--kids-text-dark);
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--kids-transition);
}

.kids-profile-sidebar .nav-list li a:hover {
    background: var(--kids-bg-light);
    color: var(--kids-primary);
}

.kids-profile-sidebar .nav-list li.active a {
    background: var(--kids-primary);
    color: white;
}

.kids-profile-sidebar .nav-list li.active a .nav-icon {
    filter: none;
}

.kids-profile-sidebar .nav-icon {
    font-size: 1.2rem;
}

.kids-profile-sidebar .logout-item a {
    color: var(--kids-orange);
}

.kids-profile-sidebar .logout-item a:hover {
    background: rgba(255, 107, 107, 0.1);
}

/* Motivation Widget */
.kids-profile-sidebar .motivation-widget {
    background: var(--kids-gradient-4);
    padding: 20px;
    text-align: center;
    margin: 15px;
    border-radius: var(--kids-radius-lg);
}

.kids-profile-sidebar .motivation-widget .widget-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.kids-profile-sidebar .motivation-widget p {
    color: white;
    font-size: 0.9rem;
    margin: 0;
    font-weight: 500;
}

/* Dashboard Stats */
.dashboard-stats .stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: var(--kids-radius-lg);
    box-shadow: var(--kids-shadow-sm);
    transition: var(--kids-transition);
    height: 100%;
}

.dashboard-stats .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--kids-shadow);
}

.dashboard-stats .stat-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.dashboard-stats .stat-info {
    flex: 1;
}

.dashboard-stats .stat-number {
    font-family: var(--kids-font-primary);
    font-size: 1.8rem;
    font-weight: 800;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.dashboard-stats .stat-label {
    font-size: 0.85rem;
    color: var(--kids-text-gray);
}

/* Stat Card Colors */
.dashboard-stats .stat-courses { border-left: 4px solid var(--kids-primary); }
.dashboard-stats .stat-courses .stat-number { color: var(--kids-primary); }

.dashboard-stats .stat-books { border-left: 4px solid var(--kids-green); }
.dashboard-stats .stat-books .stat-number { color: var(--kids-green); }

.dashboard-stats .stat-assignments { border-left: 4px solid var(--kids-orange); }
.dashboard-stats .stat-assignments .stat-number { color: var(--kids-orange); }

.dashboard-stats .stat-wishlist { border-left: 4px solid var(--kids-pink); }
.dashboard-stats .stat-wishlist .stat-number { color: var(--kids-pink); }

.dashboard-stats .stat-book-wishlist { border-left: 4px solid var(--kids-purple); }
.dashboard-stats .stat-book-wishlist .stat-number { color: var(--kids-purple); }

.dashboard-stats .stat-meetings { border-left: 4px solid var(--kids-blue); }
.dashboard-stats .stat-meetings .stat-number { color: var(--kids-blue); }

.dashboard-stats .stat-bundles { border-left: 4px solid var(--kids-yellow); }
.dashboard-stats .stat-bundles .stat-number { color: #c4a000; }

/* Wallet Card */
.wallet-card {
    background: var(--kids-gradient-5);
    border-radius: var(--kids-radius-xl);
    padding: 25px;
    color: white;
    height: 100%;
}

.wallet-card .wallet-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.wallet-card .wallet-icon {
    font-size: 1.5rem;
}

.wallet-card h5 {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

.wallet-card .wallet-balance {
    font-family: var(--kids-font-primary);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.wallet-card .wallet-link {
    color: white;
    font-size: 0.9rem;
    opacity: 0.9;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--kids-transition);
}

.wallet-card .wallet-link:hover {
    opacity: 1;
    gap: 10px;
}

/* Profile Card */
.profile-card {
    background: white;
    border-radius: var(--kids-radius-xl);
    padding: 25px;
    box-shadow: var(--kids-shadow);
    height: 100%;
}

.profile-card .profile-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed #e0e0e0;
}

.profile-card .profile-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.profile-card .profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-card .profile-info {
    flex: 1;
}

.profile-card .profile-info h5 {
    font-family: var(--kids-font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 5px;
}

.profile-card .role-badge {
    background: var(--kids-bg-light);
    color: var(--kids-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.profile-card .edit-btn {
    font-size: 0.9rem;
    color: var(--kids-primary);
    font-weight: 600;
}

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

.profile-card .contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9rem;
    color: var(--kids-text-gray);
}

.profile-card .contact-list li:last-child {
    border-bottom: none;
}

.profile-card .contact-list i {
    color: var(--kids-primary);
    width: 20px;
}

/* Recent Orders */
.recent-orders,
.quick-actions {
    background: white;
    border-radius: var(--kids-radius-xl);
    padding: 25px;
    box-shadow: var(--kids-shadow);
}

.recent-orders .section-header,
.quick-actions .section-header {
    margin-bottom: 20px;
}

.recent-orders .section-header h4,
.quick-actions .section-header h4 {
    font-family: var(--kids-font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--kids-text-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.recent-orders .section-header .icon,
.quick-actions .section-header .icon {
    font-size: 1.4rem;
}

/* Order Items */
.orders-list .order-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--kids-bg-light);
    border-radius: var(--kids-radius-lg);
    margin-bottom: 10px;
}

.orders-list .order-item:last-child {
    margin-bottom: 0;
}

.orders-list .order-image {
    width: 60px;
    height: 80px;
    border-radius: var(--kids-radius);
    overflow: hidden;
    flex-shrink: 0;
}

.orders-list .order-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.orders-list .order-info {
    flex: 1;
}

.orders-list .order-info h5 {
    font-family: var(--kids-font-primary);
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 5px;
}

.orders-list .order-info .author {
    font-size: 0.85rem;
    color: var(--kids-text-gray);
    margin: 0 0 5px;
}

.orders-list .order-info .price {
    font-weight: 700;
    color: var(--kids-primary);
}

.orders-list .view-btn {
    background: var(--kids-primary);
    color: white;
    padding: 8px 16px;
    border-radius: var(--kids-radius);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--kids-transition);
}

.orders-list .view-btn:hover {
    background: var(--kids-primary-dark);
}

/* Quick Actions */
.quick-actions .actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.quick-actions .action-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--kids-bg-light);
    border-radius: var(--kids-radius-lg);
    text-align: center;
    transition: var(--kids-transition);
}

.quick-actions .action-card:hover {
    background: var(--kids-primary);
    color: white;
}

.quick-actions .action-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.quick-actions .action-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: inherit;
}

/* Dashboard Responsive */
@media (max-width: 991px) {
    .kids-dashboard-hero h1 {
        font-size: 1.5rem;
    }

    .kids-profile-sidebar {
        position: static;
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .kids-dashboard-hero {
        padding: 40px 0 30px;
    }

    .kids-dashboard-hero .welcome-message {
        justify-content: center;
        text-align: center;
    }

    .dashboard-stats .stat-card {
        padding: 15px;
    }

    .dashboard-stats .stat-icon {
        font-size: 2rem;
    }

    .dashboard-stats .stat-number {
        font-size: 1.4rem;
    }

    .quick-actions .actions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/*==============================================================================
  Kids Instructor Pages
==============================================================================*/

/* Instructor Hero */
.kids-instructor-hero {
    background: var(--kids-gradient-hero);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.kids-instructor-hero .hero-decoration .floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.kids-instructor-hero .floating-shape.shape-1 {
    width: 150px;
    height: 150px;
    background: var(--kids-yellow);
    top: 20%;
    left: 5%;
    animation: floatAnimation 4s ease-in-out infinite;
}

.kids-instructor-hero .floating-shape.shape-2 {
    width: 100px;
    height: 100px;
    background: var(--kids-green);
    top: 40%;
    right: 10%;
    animation: floatAnimation 5s ease-in-out infinite 1s;
}

.kids-instructor-hero .floating-shape.shape-3 {
    width: 80px;
    height: 80px;
    background: var(--kids-pink);
    bottom: 20%;
    left: 15%;
    animation: floatAnimation 3.5s ease-in-out infinite 0.5s;
}

.kids-instructor-hero .hero-content {
    position: relative;
    z-index: 2;
}

.kids-instructor-hero .hero-title {
    font-family: var(--kids-font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.kids-instructor-hero .hero-title .title-icon {
    margin: 0 10px;
    display: inline-block;
}

.kids-instructor-hero .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.kids-instructor-hero .hero-stats {
    background: rgba(255, 255, 255, 0.2);
    display: inline-block;
    padding: 10px 25px;
    border-radius: var(--kids-radius);
    color: white;
    backdrop-filter: blur(5px);
}

/* Instructors Section */
.kids-instructors-section {
    padding: 60px 0;
    background: var(--kids-bg-light);
}

.instructors-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -15px;
}

.instructors-grid > div {
    padding: 15px;
}

/* Instructor Card */
.kids-instructor-card {
    background: white;
    border-radius: var(--kids-radius-xl);
    padding: 30px;
    text-align: center;
    box-shadow: var(--kids-shadow);
    transition: var(--kids-transition);
    height: 100%;
    position: relative;
}

.kids-instructor-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--kids-shadow-lg);
}

.kids-instructor-card .popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--kids-gradient-5);
    color: white;
    padding: 5px 12px;
    border-radius: var(--kids-radius);
    font-size: 0.8rem;
    font-weight: 600;
}

.kids-instructor-card .card-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--kids-primary);
    box-shadow: 0 5px 20px rgba(108, 99, 255, 0.3);
}

.kids-instructor-card .card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kids-instructor-card .instructor-name {
    font-family: var(--kids-font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.kids-instructor-card .instructor-name a {
    color: var(--kids-text-dark);
    transition: var(--kids-transition);
}

.kids-instructor-card .instructor-name a:hover {
    color: var(--kids-primary);
}

.kids-instructor-card .instructor-role {
    color: var(--kids-text-gray);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.kids-instructor-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px dashed #e0e0e0;
}

.kids-instructor-card .social-links {
    display: flex;
    gap: 8px;
}

.kids-instructor-card .social-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--kids-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kids-text-gray);
    transition: var(--kids-transition);
}

.kids-instructor-card .social-link:hover {
    background: var(--kids-primary);
    color: white;
}

/* Instructor Pagination */
.instructor-pagination {
    margin-top: 40px;
}

/* Popular Instructors Section */
.kids-popular-instructors-section {
    padding: 80px 0;
    background: var(--kids-gradient-hero);
    position: relative;
}

.kids-popular-instructors-section .section-decoration .deco-star {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    color: white;
}

.kids-popular-instructors-section .deco-star.star-1 {
    top: 30px;
    left: 10%;
    animation: twinkle 2s ease-in-out infinite;
}

.kids-popular-instructors-section .deco-star.star-2 {
    top: 50px;
    right: 15%;
    animation: twinkle 2s ease-in-out infinite 0.5s;
}

.kids-popular-instructors-section .section-header {
    margin-bottom: 50px;
}

.kids-popular-instructors-section .section-title {
    font-family: var(--kids-font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.kids-popular-instructors-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.kids-popular-instructors-section .kids-instructor-card {
    background: white;
}

/* Best Teachers Section */
.kids-best-teachers-section {
    padding: 60px 0;
    background: var(--kids-bg-light);
}

.kids-best-teachers-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
}

.kids-best-teachers-section .section-title {
    font-family: var(--kids-font-primary);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--kids-text-dark);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.kids-best-teachers-section .results-count {
    color: var(--kids-text-gray);
}

.best-teachers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.best-teacher-card {
    background: white;
    border-radius: var(--kids-radius-xl);
    padding: 25px;
    display: flex;
    gap: 20px;
    box-shadow: var(--kids-shadow);
    transition: var(--kids-transition);
}

.best-teacher-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--kids-shadow-lg);
}

.best-teacher-card .teacher-avatar {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    position: relative;
}

.best-teacher-card .teacher-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--kids-primary);
}

.best-teacher-card .avatar-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28px;
    height: 28px;
    background: var(--kids-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    border: 2px solid white;
}

.best-teacher-card .teacher-info {
    flex: 1;
}

.best-teacher-card .teacher-name {
    font-family: var(--kids-font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.best-teacher-card .teacher-name a {
    color: var(--kids-text-dark);
    transition: var(--kids-transition);
}

.best-teacher-card .teacher-name a:hover {
    color: var(--kids-primary);
}

.best-teacher-card .teacher-expertise {
    margin-bottom: 15px;
}

.best-teacher-card .expertise-tag {
    display: inline-block;
    background: var(--kids-bg-light);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    color: var(--kids-text-gray);
    margin-right: 5px;
    margin-bottom: 5px;
}

.best-teacher-card .teacher-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Become Instructor Section */
.kids-become-instructor-section {
    padding: 80px 0;
    background: white;
}

.become-instructor-card {
    background: var(--kids-gradient-4);
    border-radius: var(--kids-radius-xl);
    padding: 50px;
    overflow: hidden;
}

.become-instructor-card .content-block {
    color: white;
}

.become-instructor-card .content-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.become-instructor-card h3 {
    font-family: var(--kids-font-primary);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.become-instructor-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.become-instructor-card .image-block {
    text-align: center;
}

.become-instructor-card .image-block img {
    max-width: 100%;
    border-radius: var(--kids-radius-lg);
}

/*==============================================================================
  Kids Ranking Pages
==============================================================================*/

/* Ranking Hero */
.kids-ranking-hero {
    background: var(--kids-gradient-hero);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.kids-ranking-hero .hero-decoration .floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.kids-ranking-hero .floating-shape.shape-1 {
    width: 150px;
    height: 150px;
    background: var(--kids-yellow);
    top: 20%;
    left: 5%;
    animation: floatAnimation 4s ease-in-out infinite;
}

.kids-ranking-hero .floating-shape.shape-2 {
    width: 100px;
    height: 100px;
    background: var(--kids-green);
    top: 40%;
    right: 10%;
    animation: floatAnimation 5s ease-in-out infinite 1s;
}

.kids-ranking-hero .floating-shape.shape-3 {
    width: 80px;
    height: 80px;
    background: var(--kids-pink);
    bottom: 20%;
    left: 15%;
    animation: floatAnimation 3.5s ease-in-out infinite 0.5s;
}

.kids-ranking-hero .hero-content {
    position: relative;
    z-index: 2;
}

.kids-ranking-hero .trophy-animation {
    font-size: 5rem;
    margin-bottom: 20px;
    animation: bounce 2s ease-in-out infinite;
}

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

.kids-ranking-hero .hero-title {
    font-family: var(--kids-font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.kids-ranking-hero .hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Podium Section */
.kids-podium-section {
    padding: 60px 0;
    background: var(--kids-bg-light);
}

.podium-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

.podium-item {
    width: 280px;
    text-align: center;
}

.podium-item.first {
    order: 2;
}

.podium-item.second {
    order: 1;
}

.podium-item.third {
    order: 3;
}

.podium-card {
    background: white;
    border-radius: var(--kids-radius-xl);
    padding: 30px 20px;
    box-shadow: var(--kids-shadow);
    position: relative;
    margin-bottom: -20px;
}

.podium-card.champion {
    background: linear-gradient(135deg, #fff9e6 0%, #fffdf5 100%);
    border: 2px solid var(--kids-yellow);
}

.podium-card .champion-crown {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    animation: bounce 2s ease-in-out infinite;
}

.podium-card .rank-medal {
    font-size: 3rem;
    margin-bottom: 15px;
}

.podium-card .student-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--kids-primary);
    background: var(--kids-gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
}

.podium-card .student-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.podium-card .student-avatar .avatar-letter {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

.podium-card .student-name {
    font-family: var(--kids-font-primary);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--kids-text-dark);
    margin-bottom: 5px;
}

.podium-card .student-stats {
    font-size: 0.9rem;
    color: var(--kids-text-gray);
    margin-bottom: 15px;
}

.podium-card .student-score {
    background: var(--kids-gradient-1);
    color: white;
    padding: 10px 20px;
    border-radius: var(--kids-radius);
    display: inline-block;
}

.podium-card .student-score .score-value {
    font-family: var(--kids-font-primary);
    font-size: 1.5rem;
    font-weight: 800;
}

.podium-card .student-score .score-label {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-left: 5px;
}

.podium-base {
    height: 80px;
    border-radius: var(--kids-radius-lg) var(--kids-radius-lg) 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--kids-font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.podium-base.first-base {
    height: 120px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.podium-base.second-base {
    height: 90px;
    background: linear-gradient(135deg, #C0C0C0 0%, #A8A8A8 100%);
}

.podium-base.third-base {
    height: 70px;
    background: linear-gradient(135deg, #CD7F32 0%, #B8860B 100%);
}

/* Leaderboard Section */
.kids-leaderboard-section {
    padding: 0 0 60px;
    background: var(--kids-bg-light);
}

.leaderboard-card {
    background: white;
    border-radius: var(--kids-radius-xl);
    box-shadow: var(--kids-shadow);
    overflow: hidden;
}

.leaderboard-header {
    background: var(--kids-gradient-1);
    padding: 25px 30px;
}

.leaderboard-header h3 {
    font-family: var(--kids-font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.leaderboard-body {
    padding: 20px;
}

.leaderboard-row {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    border-radius: var(--kids-radius-lg);
    transition: var(--kids-transition);
    margin-bottom: 10px;
}

.leaderboard-row:last-child {
    margin-bottom: 0;
}

.leaderboard-row:hover {
    background: var(--kids-bg-light);
}

.leaderboard-row .row-rank {
    width: 50px;
    text-align: center;
}

.leaderboard-row .rank-number {
    font-family: var(--kids-font-primary);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--kids-primary);
}

.leaderboard-row .row-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--kids-gradient-hero);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.leaderboard-row .row-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leaderboard-row .row-avatar .avatar-letter {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.leaderboard-row .row-info {
    flex: 1;
}

.leaderboard-row .row-info h5 {
    font-family: var(--kids-font-primary);
    font-size: 1rem;
    font-weight: 700;
    color: var(--kids-text-dark);
    margin: 0 0 3px;
}

.leaderboard-row .row-info span {
    font-size: 0.85rem;
    color: var(--kids-text-gray);
}

.leaderboard-row .score-badge {
    background: var(--kids-gradient-1);
    color: white;
    padding: 8px 16px;
    border-radius: var(--kids-radius);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Motivation Section */
.kids-motivation-section {
    padding: 0 0 80px;
    background: var(--kids-bg-light);
}

.motivation-card {
    background: var(--kids-gradient-4);
    border-radius: var(--kids-radius-xl);
    padding: 50px;
    text-align: center;
    color: white;
}

.motivation-card .motivation-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.motivation-card h3 {
    font-family: var(--kids-font-primary);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.motivation-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 991px) {
    .kids-instructor-hero .hero-title,
    .kids-ranking-hero .hero-title {
        font-size: 2rem;
    }

    .best-teachers-grid {
        grid-template-columns: 1fr;
    }

    .podium-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .podium-item.first,
    .podium-item.second,
    .podium-item.third {
        order: unset;
    }

    .podium-base.first-base,
    .podium-base.second-base,
    .podium-base.third-base {
        height: 60px;
    }
}

@media (max-width: 767px) {
    .kids-instructor-hero .hero-title .title-icon {
        display: none;
    }

    .become-instructor-card {
        padding: 30px;
    }

    .become-instructor-card .image-block {
        margin-top: 30px;
    }

    .best-teacher-card {
        flex-direction: column;
        text-align: center;
    }

    .best-teacher-card .teacher-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .leaderboard-row {
        flex-wrap: wrap;
    }

    .leaderboard-row .row-info {
        flex-basis: calc(100% - 130px);
    }

    .leaderboard-row .score-badge {
        margin-left: 65px;
        margin-top: 10px;
    }
}

/*==============================================================================
  Kids Instructor Details Page Styles
==============================================================================*/

/* Instructor Hero Section */
.kids-instructor-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 60px 0 100px;
    position: relative;
    overflow: hidden;
}

.instructor-hero-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.instructor-hero-decorations .hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.instructor-hero-decorations .shape-1 {
    width: 300px;
    height: 300px;
    background: white;
    top: -100px;
    left: -100px;
}

.instructor-hero-decorations .shape-2 {
    width: 200px;
    height: 200px;
    background: white;
    bottom: -50px;
    right: 10%;
}

.instructor-hero-decorations .shape-3 {
    width: 150px;
    height: 150px;
    background: white;
    top: 50%;
    right: -50px;
}

.instructor-hero-decorations .floating-star {
    position: absolute;
    font-size: 2rem;
    animation: floatStar 4s ease-in-out infinite;
}

.instructor-hero-decorations .star-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.instructor-hero-decorations .star-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.instructor-hero-decorations .star-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes floatStar {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(15deg);
    }
}

/* Profile Card */
.instructor-profile-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 1;
}

.profile-image-wrapper {
    flex-shrink: 0;
    position: relative;
}

.profile-image-container {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
}

.profile-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-image-container .profile-ring {
    position: absolute;
    inset: -8px;
    border: 4px solid transparent;
    border-radius: 50%;
    background: linear-gradient(45deg, #FF6B6B, #4ECDC4, #45B7D1, #96CEB4) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: ringRotate 8s linear infinite;
}

@keyframes ringRotate {
    100% {
        transform: rotate(360deg);
    }
}

/* Floating Badges */
.instructor-badges-floating {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    background: white;
    padding: 8px 16px;
    border-radius: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.instructor-badges-floating .badge-item {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.instructor-badges-floating .badge-item:hover {
    transform: scale(1.2);
}

.instructor-badges-floating .badge-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Profile Info Section */
.profile-info-section {
    flex: 1;
}

.profile-header {
    margin-bottom: 24px;
}

.instructor-name {
    font-family: 'Baloo 2', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2D3436;
    margin-bottom: 8px;
    line-height: 1.2;
}

.instructor-designation {
    font-size: 1.1rem;
    color: #636E72;
    margin-bottom: 12px;
}

.instructor-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.instructor-rating .rating-count {
    color: #636E72;
    font-size: 0.95rem;
}

/* Stats Row */
.instructor-stats-row {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 16px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 140px;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-card.stat-students {
    background: linear-gradient(135deg, #FFE5E5 0%, #FFD1D1 100%);
}

.stat-card.stat-courses {
    background: linear-gradient(135deg, #E0F7F5 0%, #B2F2E8 100%);
}

.stat-card.stat-books {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFEAA7 100%);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.stat-emoji {
    font-size: 1.5rem;
}

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

.stat-number {
    font-family: 'Baloo 2', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D3436;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: #636E72;
    text-transform: capitalize;
}

/* Social Section */
.instructor-social-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
}

.follow-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.follow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.follow-count {
    font-family: 'Baloo 2', cursive;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2D3436;
}

.follow-label {
    font-size: 0.8rem;
    color: #636E72;
    text-transform: capitalize;
}

.follow-divider {
    width: 2px;
    height: 40px;
    background: #dee2e6;
    border-radius: 2px;
}

.follow-btn-wrapper {
    display: flex;
    gap: 12px;
}

.social-links-row {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    color: white;
}

.social-facebook { background: linear-gradient(135deg, #4267B2, #3b5998); }
.social-twitter { background: linear-gradient(135deg, #1DA1F2, #0d8ecf); }
.social-instagram { background: linear-gradient(135deg, #E4405F, #C13584); }
.social-linkedin { background: linear-gradient(135deg, #0077B5, #005885); }
.social-youtube { background: linear-gradient(135deg, #FF0000, #CC0000); }

/* Instructor Content Section */
.kids-instructor-content {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

/* Kids Tabs */
.kids-tabs-wrapper {
    margin-bottom: 40px;
}

.kids-tab-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    list-style: none;
    background: white;
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.kids-tab-nav .tab-item {
    flex-shrink: 0;
}

.kids-tab-nav .tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: none;
    background: transparent;
    border-radius: 14px;
    font-family: 'Baloo 2', cursive;
    font-size: 1rem;
    font-weight: 600;
    color: #636E72;
    cursor: pointer;
    transition: all 0.3s ease;
}

.kids-tab-nav .tab-btn:hover {
    background: #f8f9fa;
    color: #2D3436;
}

.kids-tab-nav .tab-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.kids-tab-nav .tab-btn .tab-icon {
    font-size: 1.3rem;
}

/* Tab Content Cards */
.kids-tab-content .tab-pane {
    animation: fadeInUp 0.4s ease;
}

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

.about-content-card,
.contact-form-card,
.contact-info-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.card-header-fun {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px dashed #e9ecef;
}

.card-header-fun .header-emoji {
    font-size: 2rem;
}

.card-header-fun h3 {
    font-family: 'Baloo 2', cursive;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2D3436;
    margin: 0;
}

.about-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #4a5568;
}

.about-text p {
    margin-bottom: 16px;
}

/* Courses Grid */
.courses-grid,
.books-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -12px;
}

.courses-grid > div,
.books-grid > div {
    padding: 12px;
}

.load-more-wrapper {
    text-align: center;
    margin-top: 40px;
}

/* Kids Contact Form */
.kids-contact-form .form-group {
    margin-bottom: 20px;
}

.kids-contact-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Baloo 2', cursive;
    font-weight: 600;
    color: #2D3436;
    margin-bottom: 10px;
}

.kids-contact-form .label-icon {
    font-size: 1.2rem;
}

.kids-contact-form .form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 14px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.kids-contact-form .form-control:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.kids-contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.kids-contact-form .error-message {
    color: #FF6B6B;
    font-size: 0.85rem;
    margin-top: 6px;
}

.kids-contact-form .submit-btn {
    width: 100%;
    margin-top: 10px;
}

/* Contact Info List */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: #f8f9fa;
    border-radius: 14px;
    color: #2D3436;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateX(5px);
}

.contact-item .contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-item span {
    font-size: 0.95rem;
    word-break: break-all;
}

/* Kids Buttons */
.kids-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-family: 'Baloo 2', cursive;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.kids-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    color: white;
}

.kids-btn-primary .btn-icon {
    font-size: 1.2rem;
}

.kids-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
    border-radius: 14px;
    font-family: 'Baloo 2', cursive;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.kids-btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
}

/* Responsive Design for Instructor Details */
@media (max-width: 992px) {
    .instructor-profile-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-info-section {
        width: 100%;
    }

    .profile-header {
        text-align: center;
    }

    .instructor-rating {
        justify-content: center;
    }

    .instructor-stats-row {
        justify-content: center;
    }

    .instructor-social-section {
        justify-content: center;
    }

    .kids-tab-nav {
        gap: 8px;
    }

    .kids-tab-nav .tab-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .kids-instructor-hero {
        padding: 40px 0 80px;
    }

    .instructor-profile-card {
        padding: 24px;
        border-radius: 20px;
    }

    .profile-image-container {
        width: 160px;
        height: 160px;
    }

    .instructor-name {
        font-size: 1.8rem;
    }

    .stat-card {
        min-width: 100%;
    }

    .kids-tab-nav .tab-btn .tab-text {
        display: none;
    }

    .kids-tab-nav .tab-btn {
        padding: 14px 18px;
    }

    .kids-tab-nav .tab-btn .tab-icon {
        font-size: 1.5rem;
    }

    .about-content-card,
    .contact-form-card,
    .contact-info-card {
        padding: 24px;
        border-radius: 18px;
    }
}

@media (max-width: 576px) {
    .instructor-hero-decorations .floating-star {
        font-size: 1.5rem;
    }

    .instructor-badges-floating {
        padding: 6px 12px;
    }

    .instructor-badges-floating .badge-item {
        width: 30px;
        height: 30px;
    }

    .follow-stats {
        padding: 10px 16px;
        gap: 16px;
    }

    .social-link {
        width: 38px;
        height: 38px;
    }
}
