/* Custom Styles for Metin Aydın Sürücü Kursu - Professional Driving School Design */

:root {
    /* Professional Color Palette - Driving School Theme */
    --primary-color: #0066cc;
    --primary-dark: #004499;
    --primary-light: #0088ff;
    --secondary-color: #00a86b;
    --accent-color: #ff6b35;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
    
    /* Neutral Colors */
    --dark: #1a1a2e;
    --dark-light: #2d2d44;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --white: #ffffff;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0066cc 0%, #0088ff 50%, #00a8e6 100%);
    --gradient-hero: linear-gradient(135deg, #004499 0%, #0066cc 50%, #0088ff 100%);
    --gradient-success: linear-gradient(135deg, #00a86b 0%, #28a745 100%);
    --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(0,102,204,0.9) 0%, rgba(0,136,255,0.8) 100%);
    
    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15);
    --shadow-2xl: 0 25px 50px rgba(0,0,0,0.25);
    
    /* Spacing */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
}

/* ============================================
   NAVBAR - Modern & Professional
   ============================================ */
.navbar {
    background: #ffffff !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid #e5e7eb;
}

.navbar.scrolled {
    background: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-bottom-color: var(--primary-color);
    backdrop-filter: blur(20px);
}

/* Navbar collapse (mobil menü) */
.navbar-collapse {
    background: #ffffff !important;
}

.navbar-collapse.show {
    background: #ffffff !important;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid #e5e7eb;
}

/* Navbar toggler */
.navbar-toggler {
    border: 2px solid var(--gray-300);
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 102, 204, 0.25);
    border-color: var(--primary-color);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(31, 41, 55, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Mobil menü açıkken navbar */
@media (max-width: 991px) {
    .navbar-collapse {
        background: #ffffff !important;
    }
    
    .navbar-nav {
        background: #ffffff !important;
    }
    
    .navbar-nav .nav-link {
        color: #1f2937 !important;
        padding: 0.75rem 1rem !important;
        margin: 0.25rem 0;
        border-radius: var(--radius-sm);
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: rgba(0, 102, 204, 0.1) !important;
        color: var(--primary-color) !important;
    }
    
    .dropdown-menu {
        background: #ffffff !important;
        border: 1px solid #e5e7eb;
        margin-top: 0.5rem;
        margin-left: 1rem;
    }
    
    .dropdown-item {
        color: #1f2937 !important;
    }
    
    .dropdown-item:hover {
        background: rgba(0, 102, 204, 0.1) !important;
        color: var(--primary-color) !important;
    }
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    transform: translateX(3px);
    color: var(--primary-dark) !important;
}

.navbar-brand i {
    font-size: 1.8rem;
    color: var(--accent-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--dark) !important;
    padding: 0.5rem 1.25rem !important;
    margin: 0 0.25rem;
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-size: 0.95rem;
}

.navbar-nav .nav-link,
.navbar-nav .nav-link:focus {
    color: #1f2937 !important;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    transition: width 0.3s ease;
    border-radius: var(--radius-full);
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 80%;
}

.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(0, 102, 204, 0.1);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
    background: rgba(0, 102, 204, 0.05);
    transform: translateY(-2px);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    margin-top: 0.75rem;
    padding: 0.5rem;
    background: var(--white);
}

.dropdown-item {
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 0.25rem;
}

.dropdown-item:hover {
    background: var(--gradient-primary);
    color: var(--white) !important;
    transform: translateX(5px);
}

.dropdown-item:last-child {
    margin-bottom: 0;
}

/* ============================================
   HERO SECTION - Eye-catching & Modern
   ============================================ */
.hero-section {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.15) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--white));
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1.5px;
    animation: fadeInUp 0.8s ease;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.hero-section .lead {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.6;
    animation: fadeInUp 1s ease;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.hero-section .btn {
    animation: fadeInUp 1.2s ease;
    font-weight: 700;
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-xl);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-section .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-section .btn:hover::before {
    width: 400px;
    height: 400px;
}

.hero-section .btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-2xl);
}

.hero-section .btn-light {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
}

.hero-section .btn-light:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(5deg); 
    }
}

/* ============================================
   SECTION SPACING
   ============================================ */
.section-spacing {
    padding: 100px 0;
    position: relative;
}

.section-spacing:nth-child(even) {
    background: var(--white);
}

.section-spacing:nth-child(odd) {
    background: linear-gradient(to bottom, var(--white) 0%, var(--gray-100) 100%);
}

/* ============================================
   PAGE TITLE & SUBTITLE
   ============================================ */
.page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    letter-spacing: -1px;
    line-height: 1.2;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    animation: slideInLeft 0.8s ease;
}

.page-title.text-white::after {
    background: rgba(255, 255, 255, 0.8);
}

.page-subtitle {
    color: var(--gray-600);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.6;
}

/* ============================================
   VIDEO CARDS - Modern & Interactive
   ============================================ */
.video-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: relative;
    cursor: pointer;
}

.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.video-card:hover::before {
    transform: scaleX(1);
}

.video-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.video-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.video-card:hover img {
    transform: scale(1.15);
}

.video-card .card-body {
    padding: 1.75rem;
    background: var(--white);
    position: relative;
}

.video-card .card-title {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.video-card:hover .card-title {
    color: var(--primary-color);
}

.video-card .card-text {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.video-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Play Icon Overlay */
.video-card::after {
    content: '\F4CA';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 4rem;
    color: var(--white);
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
    pointer-events: none;
}

.video-card:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* ============================================
   CATEGORY CARDS
   ============================================ */
.category-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    cursor: pointer;
    background: var(--white);
    box-shadow: var(--shadow-md);
    position: relative;
    border: 2px solid transparent;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
    z-index: 1;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-light);
}

.category-card .card-body {
    padding: 3rem 2rem;
    text-align: center;
    background: var(--white);
    position: relative;
    z-index: 1;
}

.category-card .card-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.category-card:hover .card-title {
    color: var(--primary-color);
}

.category-card .badge {
    font-size: 1rem;
    padding: 0.6rem 1.4rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
}

.category-card:hover i {
    transform: scale(1.3) rotate(10deg);
    color: var(--accent-color);
}

/* ============================================
   FEATURE CARDS
   ============================================ */
.feature-card {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 110px;
    height: 110px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 3px solid var(--primary-light);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: var(--shadow-2xl);
}

.feature-card:hover .feature-icon::after {
    opacity: 0.5;
    animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.3); opacity: 0; }
}

.feature-icon i {
    font-size: 2.8rem;
    color: var(--white);
    z-index: 1;
}

.feature-card h4 {
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.35rem;
    transition: color 0.3s ease;
}

.feature-card:hover h4 {
    color: var(--primary-color);
}

.feature-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-card {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.stats-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-2xl);
}

.stats-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1;
    color: var(--white);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.stats-label {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.stats-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* ============================================
   HERO ICON
   ============================================ */
.hero-icon {
    font-size: 4rem;
    opacity: 0.9;
    animation: float 3s ease-in-out infinite;
    color: var(--white);
}

/* ============================================
   STATS TOP SECTION
   ============================================ */
.stats-top-section {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
    padding: 60px 0;
}

.stats-card-top {
    background: var(--white);
    border: 2px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stats-card-top:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.stats-icon-top {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
}

.stats-card-top:hover .stats-icon-top {
    transform: scale(1.15) rotate(10deg);
    box-shadow: var(--shadow-lg);
}

.stats-icon-top i {
    font-size: 2rem;
    color: var(--white);
}

.stats-number-top {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
}

.stats-label-top {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.5rem;
}

/* ============================================
   VIDEOS SECTION WHITE
   ============================================ */
.videos-section-white {
    background: var(--white);
}

/* ============================================
   FEATURES SECTION COLORED
   ============================================ */
.features-section-colored {
    background: linear-gradient(135deg, #0066cc 0%, #0088ff 50%, #00a8e6 100%);
    position: relative;
    overflow: hidden;
}

.features-section-colored::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
}

.features-section-colored .container {
    position: relative;
    z-index: 1;
}

.feature-card-colored {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card-colored:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.feature-icon-colored {
    width: 110px;
    height: 110px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    border: 3px solid rgba(255, 255, 255, 0.4);
}

.feature-card-colored:hover .feature-icon-colored {
    transform: scale(1.15) rotate(10deg);
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.feature-icon-colored i {
    font-size: 2.8rem;
    color: var(--white);
}

/* ============================================
   LICENSE CLASSES SECTION WHITE
   ============================================ */
.license-classes-section-white {
    background: linear-gradient(to bottom, #ffffff 0%, #f8f9fa 100%);
}

.license-class-card-white {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.license-class-card-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.license-class-card-white:hover::before {
    transform: scaleX(1);
}

.license-class-card-white:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.license-icon-white {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
}

.license-icon-blue {
    background: linear-gradient(135deg, #0066cc 0%, #0088ff 100%);
}

.license-icon-green {
    background: linear-gradient(135deg, #00a86b 0%, #28a745 100%);
}

.license-icon-orange {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
}

.license-icon-red {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.license-class-card-white:hover .license-icon-white {
    transform: scale(1.15) rotate(10deg);
    box-shadow: var(--shadow-2xl);
}

.license-icon-white i {
    font-size: 2.5rem;
    color: var(--white);
}

.license-class-card-white h4 {
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.license-desc {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* ============================================
   EDUCATION PROCESS COLORED SECTION
   ============================================ */
.education-process-colored-section {
    background: linear-gradient(135deg, #00a86b 0%, #28a745 50%, #20c997 100%);
    position: relative;
    overflow: hidden;
}

.education-process-colored-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 102, 204, 0.1) 0%, transparent 50%);
}

.education-process-colored-section .container {
    position: relative;
    z-index: 1;
}

.process-step-colored {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.process-step-colored:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.step-number-colored {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 1;
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.step-icon-colored {
    width: 100px;
    height: 100px;
    margin: 2rem auto 1.5rem;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    border: 3px solid rgba(255, 255, 255, 0.4);
}

.process-step-colored:hover .step-icon-colored {
    background: rgba(255, 255, 255, 0.35);
    transform: scale(1.1) rotate(10deg);
}

.step-icon-colored i {
    font-size: 2.5rem;
    color: var(--white);
}

.process-step-colored h5 {
    font-weight: 800;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.process-step-colored p {
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   WHY US SECTION WHITE
   ============================================ */
.why-us-section-white {
    background: var(--white);
}

.why-us-item-white {
    padding: 1.5rem;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.why-us-item-white:hover {
    background: var(--white);
    border-left-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.why-us-icon-white {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.why-us-icon-white i {
    font-size: 1.5rem;
    color: var(--white);
}

.info-boxes-white {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-box-white {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.info-box-white:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.info-box-icon-white {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-box-icon-white i {
    font-size: 2rem;
    color: var(--white);
}

.info-box-content-white h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.info-box-content-white p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ============================================
   CONTACT SECTION WHITE
   ============================================ */
.contact-section-white {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.contact-card-white {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.contact-card-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contact-card-white:hover::before {
    transform: scaleX(1);
}

.contact-card-white:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.contact-icon-white {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
}

.contact-icon-blue {
    background: linear-gradient(135deg, #0066cc 0%, #0088ff 100%);
}

.contact-icon-green {
    background: linear-gradient(135deg, #00a86b 0%, #28a745 100%);
}

.contact-icon-orange {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
}

.contact-card-white:hover .contact-icon-white {
    transform: scale(1.15) rotate(10deg);
    box-shadow: var(--shadow-2xl);
}

.contact-icon-white i {
    font-size: 2.2rem;
    color: var(--white);
}

.contact-card-white h5 {
    font-weight: 800;
    color: var(--dark);
    font-size: 1.3rem;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--gradient-hero);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 107, 53, 0.15) 0%, transparent 50%);
    animation: gradientShift 20s ease infinite;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
    letter-spacing: -1px;
}

.cta-section .lead {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.cta-section .btn {
    border-radius: var(--radius-full);
    font-weight: 700;
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: var(--shadow-xl);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
}

.cta-section .btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-2xl);
}

.cta-section .btn-light {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.cta-section .btn-light:hover {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-section .btn-outline-light {
    border-width: 2px;
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.cta-section .btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* ============================================
   BUTTONS - Modern & Animated
   ============================================ */
.btn {
    border-radius: var(--radius-md);
    font-weight: 700;
    padding: 0.875rem 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: var(--white);
}

.btn-success {
    background: var(--gradient-success);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-success:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: var(--white);
}

.btn-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-danger:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: var(--white);
}

.btn-warning {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    color: var(--dark);
    box-shadow: var(--shadow-md);
}

.btn-warning:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: var(--dark);
}

/* ============================================
   VIDEO PLAYER & LIST
   ============================================ */
.video-player-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
    box-shadow: var(--shadow-xl);
    background: var(--dark);
}

.video-player-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-list-item {
    padding: 1.25rem;
    margin-bottom: 1rem;
    background: var(--white);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
    box-shadow: var(--shadow-sm);
}

.video-list-item:hover {
    border-left-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
    background: linear-gradient(to right, rgba(0, 102, 204, 0.05), var(--white));
}

.video-list-item.active {
    border-left-color: var(--primary-color);
    background: linear-gradient(to right, rgba(0, 102, 204, 0.1), var(--white));
    box-shadow: var(--shadow-md);
}

.video-list-item h6 {
    margin: 0;
    font-weight: 700;
    color: var(--dark);
    font-size: 1rem;
}

.video-list-item small {
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* ============================================
   ACCORDION (SSS)
   ============================================ */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--white);
}

.accordion-button {
    font-weight: 700;
    background-color: var(--white);
    color: var(--dark);
    border: none;
    padding: 1.25rem 1.5rem;
    font-size: 1.05rem;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 1.5rem;
    background: var(--gray-100);
    color: var(--dark);
    line-height: 1.8;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    color: #ffffff;
    padding: 60px 0 30px;
    margin-top: 100px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

footer h5 {
    color: #ffffff !important;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    letter-spacing: -0.5px;
}

footer p {
    color: rgba(255, 255, 255, 0.9) !important;
}

footer .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

footer a {
    transition: all 0.3s ease;
    display: inline-block;
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
}

footer a:hover {
    color: #60a5fa !important;
    transform: translateX(5px);
}

footer hr {
    border-color: rgba(255, 255, 255, 0.2);
    opacity: 1;
    margin: 2rem 0;
}

/* ============================================
   ADMIN PANEL
   ============================================ */
.admin-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.admin-form {
    background: var(--gray-100);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    border: 1px solid var(--gray-200);
}

.admin-table {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.admin-table th {
    background: var(--gradient-primary);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
    padding: 1rem;
}

/* ============================================
   EMPTY STATE
   ============================================ */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--gray-600);
}

.empty-state i {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    opacity: 0.3;
    color: var(--primary-color);
}

.empty-state h4 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
    .section-spacing {
        padding: 70px 0;
    }
    
    .hero-section {
        padding: 120px 0 80px;
        min-height: 500px;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .feature-icon {
        width: 90px;
        height: 90px;
    }
    
    .feature-icon i {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .hero-section {
        padding: 100px 0 60px;
        min-height: 450px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .section-spacing {
        padding: 60px 0;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .video-card img {
        height: 200px;
    }
    
    .stats-number {
        font-size: 2.5rem;
    }
    
    .feature-card {
        padding: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
    }
    
    .feature-icon i {
        font-size: 2rem;
    }
    
    .category-card .card-body {
        padding: 2rem 1.5rem;
    }
    
    .category-card .card-title {
        font-size: 1.5rem;
    }
    
    .cta-section {
        padding: 70px 0;
    }
    
    footer {
        padding: 50px 0 25px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 80px 0 50px;
        min-height: 400px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .btn {
        padding: 0.9rem 1.75rem;
        font-size: 0.95rem;
    }
    
    .video-card img {
        height: 180px;
    }
    
    .stats-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .license-class-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .license-icon {
        width: 80px;
        height: 80px;
    }
    
    .license-icon i {
        font-size: 2rem;
    }
    
    .process-step {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }
    
    .step-icon {
        width: 80px;
        height: 80px;
        margin: 1.5rem auto 1rem;
    }
    
    .step-icon i {
        font-size: 2rem;
    }
    
    .info-box {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .info-box-icon {
        width: 70px;
        height: 70px;
    }
    
    .info-box-content h3 {
        font-size: 2rem;
    }
    
    .why-us-item {
        padding: 1.25rem;
    }
    
    .why-us-icon {
        width: 50px;
        height: 50px;
    }
    
    .why-us-icon i {
        font-size: 1.25rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .contact-icon i {
        font-size: 1.8rem;
    }
    
    .features-section-colored,
    .education-process-colored-section {
        padding: 60px 0;
    }
    
    .page-title.text-white {
        font-size: 2rem;
    }
    
    .page-subtitle.text-white {
        font-size: 1rem;
    }
    
    .stats-card-top {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .stats-icon-top {
        width: 60px;
        height: 60px;
    }
    
    .stats-icon-top i {
        font-size: 1.5rem;
    }
    
    .stats-number-top {
        font-size: 2rem;
    }
    
    .feature-icon-colored {
        width: 90px;
        height: 90px;
    }
    
    .feature-icon-colored i {
        font-size: 2.2rem;
    }
    
    .license-icon-white {
        width: 80px;
        height: 80px;
    }
    
    .license-icon-white i {
        font-size: 2rem;
    }
    
    .step-icon-colored {
        width: 80px;
        height: 80px;
    }
    
    .step-icon-colored i {
        font-size: 2rem;
    }
    
    .info-box-white {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .info-box-icon-white {
        width: 70px;
        height: 70px;
    }
    
    .info-box-content-white h3 {
        font-size: 2rem;
    }
    
    .contact-icon-white {
        width: 70px;
        height: 70px;
    }
    
    .contact-icon-white i {
        font-size: 1.8rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: var(--shadow-xl);
}

.rounded-custom {
    border-radius: var(--radius-lg);
}

/* Scroll Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--white);
}

.contact-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.contact-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: var(--shadow-2xl);
}

.contact-icon i {
    font-size: 2.2rem;
    color: var(--white);
}

.contact-card h5 {
    font-weight: 800;
    color: var(--dark);
    font-size: 1.3rem;
}

/* ============================================
   LICENSE CLASSES SECTION
   ============================================ */
.license-classes-section {
    background: var(--white);
}

.license-class-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.license-class-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.license-class-card:hover::before {
    transform: scaleX(1);
}

.license-class-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.license-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
}

.license-class-card:hover .license-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: var(--shadow-2xl);
}

.license-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.license-class-card h4 {
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.license-desc {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.license-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.license-features li {
    padding: 0.5rem 0;
    color: var(--dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.license-features i {
    color: var(--success-color);
    font-size: 1.2rem;
}

/* ============================================
   EDUCATION PROCESS SECTION
   ============================================ */
.education-process-section {
    background: linear-gradient(to bottom, var(--white) 0%, var(--gray-100) 100%);
}

.process-step {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-md);
    height: 100%;
    border: 2px solid transparent;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 2rem auto 1.5rem;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 136, 255, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.process-step:hover .step-icon {
    background: var(--gradient-primary);
    transform: scale(1.1) rotate(10deg);
}

.step-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: color 0.4s ease;
}

.process-step:hover .step-icon i {
    color: var(--white);
}

.process-step h5 {
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.process-step p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us-section {
    background: var(--white);
}

.why-us-item {
    padding: 1.5rem;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.why-us-item:hover {
    background: var(--white);
    border-left-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.why-us-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.why-us-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.why-us-item h5 {
    color: var(--dark);
    font-size: 1.1rem;
}

.info-boxes {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-box {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.info-box:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.info-box-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-box-icon i {
    font-size: 2rem;
    color: var(--white);
}

.info-box-content h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0;
    color: var(--white);
    line-height: 1;
}

.info-box-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}
