/* ============================================
   Global Styles
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #7c3aed;
    --accent-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
}

html {
    scroll-behavior: smooth;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
    background: var(--bg-white) !important;
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.05);
}

.brand-text {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

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

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="60" height="60" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
}

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

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    margin-bottom: 3rem;
}

.hero-stats {
    margin-top: 3rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
}

.hero-shape {
    width: 100%;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    animation: float 6s ease-in-out infinite;
}

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

/* ============================================
   Page Header
   ============================================ */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 60px;
    text-align: center;
    color: white;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Enhanced Page Header
   ============================================ */
.page-header-enhanced {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 140px 0 100px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.page-header-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-title-enhanced {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.page-header-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.breadcrumb-enhanced {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-flex;
}

.breadcrumb-enhanced .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-enhanced .breadcrumb-item.active {
    color: white;
}

.page-header-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    z-index: 1;
}

.page-header-shape svg {
    width: 100%;
    height: 100%;
    display: block;
}

@media (max-width: 768px) {
    .page-title-enhanced {
        font-size: 2.5rem;
    }
    
    .page-header-enhanced {
        padding: 120px 0 80px;
    }
}

/* ============================================
   Stats Section
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   Education Features Box
   ============================================ */
.education-features-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
}

.feature-item {
    text-align: center;
    color: white;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.feature-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.feature-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ============================================
   Enhanced Education Filters
   ============================================ */
.education-filters-enhanced {
    margin: 3rem 0;
}

.filter-wrapper {
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.education-filters-enhanced .nav-pills .nav-link {
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
    margin: 0 0.25rem;
}

.education-filters-enhanced .nav-pills .nav-link:hover {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
}

.education-filters-enhanced .nav-pills .nav-link.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* ============================================
   Enhanced Education Cards
   ============================================ */
.education-card-enhanced {
    background: var(--bg-white);
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    flex-direction: column;
}

.education-card-enhanced:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
    border-color: var(--primary-color);
}

.education-badge-enhanced {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.badge-popular {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
}

.badge-meb {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.badge-supervision {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

.badge-free {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
}

.education-icon {
    width: 80px;
    height: 80px;
    margin: 2rem auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.education-card-enhanced:hover .education-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.education-card-image {
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.education-card-enhanced:hover .education-card-image {
    transform: scale(1.05);
    filter: brightness(1.05);
}

.education-image {
    margin: 0 -1px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.education-image a {
    display: block;
    transition: transform 0.3s ease;
}

.education-image a:hover img {
    transform: scale(1.05);
}

.education-card-enhanced .education-content {
    padding: 0 2rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.education-card-enhanced .education-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
    min-height: 66px;
}

.education-card-enhanced .education-description {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.education-card-enhanced .education-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.education-card-enhanced .education-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
}

.education-card-enhanced .education-features li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.education-card-enhanced .education-features li span {
    flex: 1;
}

.education-card-enhanced .education-footer {
    margin-top: auto;
    padding-top: 1rem;
}

.education-card-enhanced .btn {
    font-weight: 600;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.education-card-enhanced .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.education-card-enhanced .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.education-card-enhanced .btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.education-card-enhanced .btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .education-card-enhanced .education-content {
        padding: 0 1.5rem 1.5rem;
    }
    
    .education-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
        margin: 1.5rem auto 1rem;
    }
    
    .page-title-enhanced {
        font-size: 2rem;
    }
}

/* ============================================
   Section Headers
   ============================================ */
.section-header {
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.section-scroll-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.35);
    animation: bounceDown 2s infinite;
    transition: all 0.3s ease;
    cursor: pointer;
}

.section-scroll-icon:hover {
    transform: translateY(5px) scale(1.1);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
}

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

/* ============================================
   Feature Cards
   ============================================ */
.features-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.feature-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   Course Cards
   ============================================ */
.popular-courses-section {
    padding: 100px 0;
}

.course-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.course-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.course-badge.badge-success {
    background: var(--accent-color);
}

.course-badge.badge-info {
    background: #06b6d4;
}

.course-content {
    padding: 2rem;
}

.course-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.course-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.course-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.course-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.course-features li i {
    color: var(--accent-color);
    margin-right: 0.75rem;
    font-size: 1rem;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.course-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
}

/* ============================================
   Education Cards
   ============================================ */
.education-programs-section {
    padding: 100px 0;
}

.education-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--border-color);
    position: relative;
}

.education-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.education-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.education-content {
    padding: 2rem;
}

.education-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.education-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.education-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.education-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.education-features li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1rem;
}

.education-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.education-price .price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
}

/* ============================================
   Team Section
   ============================================ */
.team-page-section {
    padding: 100px 0;
}

.team-category {
    margin-bottom: 4rem;
}

.team-category-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.team-member-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    height: 100%;
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.team-member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.team-member-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.team-member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.team-member-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.expertise-tag {
    padding: 0.375rem 0.875rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* ============================================
   About Section
   ============================================ */
.about-content-section {
    padding: 100px 0;
}

.about-image-box {
    padding: 2rem;
}

.stat-box {
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: scale(1.05);
}

.mission-vision-section {
    padding: 100px 0;
}

.mission-card,
.vision-card {
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.mission-icon,
.vision-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
}

.values-section {
    padding: 100px 0;
}

.value-card {
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin: 0 auto;
}

/* ============================================
   Contact Section
   ============================================ */
.contact-page-section {
    padding: 100px 0;
}

.contact-info-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-info-content h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-form-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.map-section {
    padding: 0;
}

.map-wrapper {
    width: 100%;
    height: 450px;
    border-radius: 0;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================
   Blog Section
   ============================================ */
.blog-section {
    padding: 100px 0;
}

.blog-post-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.blog-post-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.blog-post-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
}

.blog-post-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.blog-post-badge.badge-success {
    background: var(--accent-color);
}

.blog-post-content {
    padding: 2rem;
}

.blog-post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.blog-post-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.blog-post-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.blog-post-excerpt {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.blog-post-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.blog-post-link:hover {
    color: var(--primary-dark);
}

.blog-sidebar-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.sidebar-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.blog-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-categories li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.blog-categories li:last-child {
    border-bottom: none;
}

.blog-categories a {
    color: var(--text-dark);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.blog-categories a:hover {
    color: var(--primary-color);
}

.blog-categories span {
    color: var(--text-light);
    font-size: 0.875rem;
}

.recent-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-posts li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.recent-posts li:last-child {
    border-bottom: none;
}

.recent-posts a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.recent-posts a:hover {
    color: var(--primary-color);
}

.post-date {
    display: block;
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ============================================
   Registration Section
   ============================================ */
.registration-page-section {
    padding: 100px 0;
}

.registration-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.registration-form-wrapper {
    background: var(--bg-white);
}

/* ============================================
   Registration Form Enhancements
   ============================================ */
.registration-info-box {
    margin-bottom: 2rem;
}

.registration-info-box .alert {
    border-radius: 15px;
    border-left: 4px solid;
}

.registration-info-box .alert-info {
    border-left-color: #0dcaf0;
}

.registration-info-box .alert-warning {
    border-left-color: #ffc107;
}

.form-section {
    padding: 1.5rem;
    background: rgba(102, 126, 234, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(102, 126, 234, 0.1);
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(102, 126, 234, 0.2);
    margin-bottom: 1rem;
}

.form-section .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-section .form-control,
.form-section .form-select {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-section .form-control:focus,
.form-section .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.15);
}

.form-section .btn-group {
    border-radius: 10px;
    overflow: hidden;
}

.form-section .btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 0.75rem 2rem;
}

.form-section .btn-check:checked + .btn-outline-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: white;
}

.form-section .form-check {
    padding: 0.75rem;
    background: white;
    border-radius: 10px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.form-section .form-check:hover {
    background: rgba(102, 126, 234, 0.05);
}

.form-section .form-check-input {
    margin-top: 0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid var(--border-color);
}

.form-section .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-section .form-check-label {
    margin-left: 0.5rem;
    cursor: pointer;
}

.form-section input[type="file"] {
    padding: 0.5rem;
}

.form-section input[type="file"]::file-selector-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    margin-right: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-section input[type="file"]::file-selector-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

#submitBtn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    transition: all 0.3s ease;
}

#submitBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

#submitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .form-section {
        padding: 1rem;
    }
    
    .registration-form-wrapper {
        padding: 1.5rem !important;
    }
}

.registration-info-wrapper {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.registration-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.registration-benefits li {
    padding: 0.75rem 0;
    font-size: 1.125rem;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.whatsapp-cta-section {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.cta-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-cta-card {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.whatsapp-banner-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-banner-cta:hover {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.whatsapp-banner-cta i:first-child {
    font-size: 1.8rem;
}

.whatsapp-banner-cta i:last-child {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.whatsapp-banner-cta:hover i:last-child {
    transform: translateX(5px);
}

.btn-whatsapp-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    border: none;
}

.btn-whatsapp-cta:hover {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
    color: white;
}

.btn-whatsapp-cta i {
    font-size: 1.5rem;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: #1f2937;
    color: white;
    padding: 80px 0 30px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

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

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

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

.footer-contact li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
}

.footer-contact li i {
    margin-right: 0.75rem;
    color: var(--primary-light);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    color: white;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 3rem 0 2rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    text-align: center;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    border-radius: 12px;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

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

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    color: white;
}

.btn-light {
    background: white;
    color: var(--primary-color);
}

.btn-light:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* ============================================
   Forms
   ============================================ */
.form-control,
.form-select {
    border-radius: 12px;
    border: 2px solid var(--border-color);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .hero-shape {
        height: 300px;
        margin-top: 2rem;
    }
    
    .navbar-logo {
        height: 45px;
    }
    
    .banner-section {
        height: 100vh;
        min-height: 500px;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-description {
        font-size: 1.125rem;
    }
    
    .banner-section .carousel-control-prev,
    .banner-section .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .banner-section .carousel-control-prev {
        left: 15px;
    }
    
    .banner-section .carousel-control-next {
        right: 15px;
    }
    
    .testimonial-card {
        min-width: 300px;
        max-width: 300px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   Utilities
   ============================================ */
section {
    scroll-margin-top: 80px;
}

/* ============================================
   Education Detail Page
   ============================================ */
.education-detail-section {
    padding: 100px 0;
}

.education-intro {
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.badge-wrapper .badge {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.section-subtitle {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--primary-color);
}

.highlight-box {
    border-left: 4px solid var(--primary-color);
}

.info-box {
    border-radius: 15px;
}

.education-content-block {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.education-content-block:last-child {
    border-bottom: none;
}

.education-modules-table {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.education-modules-table thead {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.education-modules-table thead th {
    border: none;
    padding: 1rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.education-modules-table tbody td {
    padding: 1.25rem;
    vertical-align: top;
    border-bottom: 1px solid var(--border-color);
}

.education-modules-table tbody tr:hover {
    background: rgba(37, 99, 235, 0.05);
}

.education-modules-table tbody tr:last-child td {
    border-bottom: none;
}

.module-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1rem;
}

.eligibility-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    transition: all 0.3s ease;
    text-align: center;
}

.eligibility-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.supervision-info {
    border-left: 4px solid var(--primary-color);
}

.cert-feature {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.cert-feature:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.sidebar-card .card {
    border-radius: 15px;
}

.sidebar-card .card-body {
    padding: 2rem;
}

.contact-quick a {
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.contact-quick a:hover {
    color: var(--primary-color);
}

/* ============================================
   Hero Banner Slider
   ============================================ */
.hero-banner-slider {
    position: relative;
    width: 100%;
    margin-top: 80px; /* fixed navbar boşluğu */
    overflow: hidden;
}

.hero-banner-slider .carousel {
    width: 100%;
}

.hero-banner-slider .carousel-inner {
    width: 100%;
}

.hero-banner-slider .carousel-item {
    position: relative;
}

.hero-slide-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* farklı oranlı görsellerde hizalı dursun */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.85) 0%, rgba(124, 58, 237, 0.75) 100%);
    z-index: 1;
}

.hero-banner-slider .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease-out;
}

.hero-banner-slider .hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInDown 0.6s ease-out;
}

.hero-banner-slider .hero-badge.badge-meb {
    background: rgba(16, 185, 129, 0.3);
    border-color: rgba(16, 185, 129, 0.5);
}

.hero-banner-slider .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-banner-slider .hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-banner-slider .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-banner-slider .hero-buttons .btn {
    padding: 0.875rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-banner-slider .hero-buttons .btn-primary {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--bg-white);
}

.hero-banner-slider .hero-buttons .btn-primary:hover {
    background: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-banner-slider .hero-buttons .btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--bg-white);
}

.hero-banner-slider .hero-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Carousel Controls */
.hero-banner-slider .carousel-control-prev,
.hero-banner-slider .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-banner-slider .carousel-control-prev:hover,
.hero-banner-slider .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.25);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.hero-banner-slider .carousel-control-prev {
    left: 30px;
}

.hero-banner-slider .carousel-control-next {
    right: 30px;
}

.hero-banner-slider .carousel-control-prev-icon,
.hero-banner-slider .carousel-control-next-icon {
    width: 25px;
    height: 25px;
    filter: brightness(0) invert(1);
}

/* Carousel Indicators */
.hero-banner-slider .carousel-indicators {
    bottom: 40px;
    margin-bottom: 0;
    gap: 10px;
}

.hero-banner-slider .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    margin: 0 5px;
    transition: all 0.3s ease;
    opacity: 1;
}

.hero-banner-slider .carousel-indicators button.active {
    background: var(--bg-white);
    width: 35px;
    border-radius: 6px;
    border-color: var(--bg-white);
}

/* Fade Animation */
.hero-banner-slider .carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}

.hero-banner-slider .carousel-fade .carousel-item.active,
.hero-banner-slider .carousel-fade .carousel-item-next.carousel-item-start,
.hero-banner-slider .carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}

.hero-banner-slider .carousel-fade .active.carousel-item-start,
.hero-banner-slider .carousel-fade .active.carousel-item-end {
    opacity: 0;
}

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

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

/* Responsive Design */
@media (max-width: 992px) {
    .hero-banner-slider {
        margin-top: 70px;
    }

    .hero-banner-slider .hero-title {
        font-size: 2.5rem;
    }

    .hero-banner-slider .hero-description {
        font-size: 1.1rem;
    }

    .hero-banner-slider .carousel-control-prev,
    .hero-banner-slider .carousel-control-next {
        width: 50px;
        height: 50px;
    }

    .hero-banner-slider .carousel-control-prev {
        left: 15px;
    }

    .hero-banner-slider .carousel-control-next {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .hero-banner-slider {
        margin-top: 60px;
    }

    .hero-banner-slider .carousel-item {
        /* Bootstrap default davranışı yeterli, ekstra yükseklik tanımı yok */
    }

    .hero-slide-img {
        width: 100%;
        height: auto;
        margin-top: 31px;
    }

    /* Mobilde slider altındaki boşluğu azalt */
    .education-programs-section {
        padding-top: 1.5rem; /* py-5 (3rem) yerine daha az boşluk */
    }

    .hero-banner-slider .hero-content {
        padding: 1.5rem;
    }

    .hero-banner-slider .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-banner-slider .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-banner-slider .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-banner-slider .hero-buttons .btn {
        width: 100%;
        margin: 0;
    }

    .hero-banner-slider .carousel-control-prev,
    .hero-banner-slider .carousel-control-next {
        width: 40px;
        height: 40px;
    }

    .hero-banner-slider .carousel-indicators {
        bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero-banner-slider {
        height: 230px;
    }

    .hero-banner-slider .hero-title {
        font-size: 1.75rem;
    }

    .hero-banner-slider .hero-description {
        font-size: 0.95rem;
    }

    .hero-banner-slider .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
}

/* ============================================
   Banner Section
   ============================================ */
.banner-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    margin-top: 80px;
}

.banner-section .carousel {
    height: 100%;
}

.banner-section .carousel-inner {
    height: 100%;
}

.banner-section .carousel-item {
    height: 100%;
    position: relative;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

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

.banner-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

.banner-description {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.banner-buttons {
    animation: fadeInUp 1.2s ease-out;
}

.banner-section .carousel-control-prev,
.banner-section .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.banner-section .carousel-control-prev:hover,
.banner-section .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
}

.banner-section .carousel-control-prev {
    left: 30px;
}

.banner-section .carousel-control-next {
    right: 30px;
}

.banner-section .carousel-indicators {
    bottom: 30px;
    margin-bottom: 0;
}

.banner-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    margin: 0 5px;
    transition: all 0.3s ease;
}

.banner-section .carousel-indicators button.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

/* ============================================
   YouTube Videos Section
   ============================================ */
.youtube-videos-section {
    padding: 100px 0;
}

.video-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ============================================
   YouTube Shorts Section
   ============================================ */
.youtube-shorts-section {
    padding: 100px 0;
}

.shorts-scroll-container {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    padding: 20px 0;
    margin: 0 -15px;
    padding-left: 15px;
    padding-right: 15px;
}

.shorts-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.shorts-scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.shorts-scroll-container::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 10px;
}

.shorts-scroll-container::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.shorts-wrapper {
    display: flex;
    gap: 20px;
    padding-bottom: 10px;
    min-width: min-content;
}

.short-video-item {
    flex: 0 0 280px;
    min-width: 280px;
}

.short-video-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.short-video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.short-video-wrapper {
    position: relative;
    padding-bottom: 177.78%; /* 9:16 aspect ratio for shorts (vertical) */
    height: 0;
    overflow: hidden;
}

.short-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.short-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    color: var(--text-light);
}

/* Responsive adjustments for shorts */
@media (max-width: 768px) {
    .short-video-item {
        flex: 0 0 240px;
        min-width: 240px;
    }
    
    .shorts-wrapper {
        gap: 15px;
    }
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.testimonials-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 60px;
}

.testimonials-slider {
    overflow: hidden;
    width: 100%;
    touch-action: pan-y pinch-zoom;
    user-select: none;
    -webkit-user-select: none;
}

.testimonials-container {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    width: max-content;
    touch-action: pan-x;
    will-change: transform;
}

.testimonial-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    pointer-events: auto !important;
    user-select: none;
    -webkit-user-select: none;
}

.testimonial-nav-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.testimonial-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.testimonial-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.testimonial-nav-btn:disabled:hover {
    transform: translateY(-50%);
    background: var(--primary-color);
}

.testimonial-prev {
    left: 0;
}

.testimonial-next {
    right: 0;
}

.testimonial-nav-btn i {
    font-size: 1.25rem;
}

@media (max-width: 768px) {
    .testimonials-slider-wrapper {
        padding: 0 50px;
    }
    
    .testimonial-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .testimonial-nav-btn i {
        font-size: 1rem;
    }
}

.testimonial-card {
    min-width: 350px;
    max-width: 350px;
    background: var(--bg-white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.testimonial-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-rating {
    font-size: 1.25rem;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    font-size: 3rem;
    color: var(--primary-color);
}

.author-name {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   Fixed Contact Buttons
   ============================================ */
.fixed-contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.fixed-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.fixed-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    color: white;
}

.fixed-btn:active {
    transform: scale(0.95);
}

.fixed-phone {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

.fixed-phone:hover {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
}

.fixed-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.fixed-whatsapp i {
    font-size: 2rem !important;
}

.fixed-whatsapp:hover {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
}

.fixed-btn::after {
    content: attr(title);
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.fixed-btn:hover::after {
    opacity: 1;
}

@media (max-width: 768px) {
    .fixed-contact-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .fixed-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .fixed-whatsapp i {
        font-size: 1.6rem !important;
    }
    
    .fixed-btn::after {
        display: none;
    }
}

/* ============================================
   Footer Legal Links
   ============================================ */
.footer-legal {
    font-size: 0.875rem;
}

.footer-legal a {
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white !important;
}

/* ============================================
   Footer KVKK Section
   ============================================ */
.footer-kvkk-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 1rem;
}

.footer-kvkk-title {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-kvkk-title i {
    color: var(--primary-light);
    font-size: 1.5rem;
}

.footer-kvkk-content {
    color: rgba(255, 255, 255, 0.8);
}

.footer-kvkk-content h6 {
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.footer-kvkk-content ul {
    margin-bottom: 0.5rem;
}

.footer-kvkk-content ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-kvkk-content a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-kvkk-content a:hover {
    color: white;
    text-decoration: underline;
}

.footer-kvkk-content .btn-outline-primary {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.footer-kvkk-content .btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

@media (max-width: 768px) {
    .footer-kvkk-section {
        padding: 1.5rem;
    }
    
    .footer-kvkk-title {
        font-size: 1rem;
    }
    
    .footer-kvkk-content {
        font-size: 0.875rem;
    }
}

/* ============================================
   Education Detail Page Enhancements
   ============================================ */
.education-quick-stats {
    background: white;
    margin-top: -60px;
    position: relative;
    z-index: 2;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.08);
}

.quick-stat-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.quick-stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.quick-stat-item:hover .quick-stat-icon,
.quick-stat-item:hover .quick-stat-value,
.quick-stat-item:hover .quick-stat-label {
    color: white;
}

.quick-stat-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.quick-stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.quick-stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.highlight-box-enhanced {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border: 2px solid rgba(102, 126, 234, 0.2);
    position: relative;
    overflow: hidden;
}

.highlight-box-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.feature-check-item {
    display: flex;
    align-items: flex-start;
    padding: 0.75rem;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-check-item:hover {
    background: rgba(102, 126, 234, 0.05);
    transform: translateX(5px);
}

.feature-check-item i {
    font-size: 1.25rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.feature-check-item span {
    margin-left: 0.5rem;
    line-height: 1.6;
}

/* ============================================
   Module Cards
   ============================================ */
.modules-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.module-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.module-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
    transform: translateX(10px);
}

.module-card:hover::before {
    transform: scaleY(1);
}

.module-number {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.module-card:hover .module-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.module-content {
    flex: 1;
}

.module-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.module-description {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.module-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.module-date,
.module-duration {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--text-light);
    background: rgba(102, 126, 234, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
}

.module-date i,
.module-duration i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* ============================================
   Enhanced Sidebar Cards
   ============================================ */
.sidebar-card-enhanced {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.sidebar-card-enhanced:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.registration-card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2rem;
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.registration-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.registration-card-body {
    padding: 2rem;
}

.sidebar-video-wrapper-registration {
    padding: 0;
}

.sidebar-video-wrapper-registration .sidebar-video-card {
    background: transparent;
    box-shadow: none;
}

.contact-quick-enhanced {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: var(--primary-color);
}

.info-card-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem 2rem;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    color: var(--text-dark);
    font-weight: 600;
}

.info-card-header i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.info-card-body {
    padding: 1.5rem 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

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

.info-item:hover {
    padding-left: 0.5rem;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.info-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

/* Sidebar Video Styles */
.sidebar-video-wrapper {
    padding: 1.5rem 2rem;
}

.sidebar-video-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.sidebar-video-container {
    position: relative;
    padding-bottom: 177.78%; /* 9:16 aspect ratio for shorts (vertical) */
    height: 0;
    overflow: hidden;
}

.sidebar-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .module-card {
        flex-direction: column;
        gap: 1rem;
    }
    
    .module-number {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.25rem;
    }
    
    .module-meta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .quick-stat-item {
        padding: 1rem;
    }
    
    .quick-stat-icon {
        font-size: 1.5rem;
    }
    
    .quick-stat-value {
        font-size: 1.5rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ============================================
   Poster Hover Animation
   ============================================ */
.poster-hover {
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.poster-hover:hover {
    animation: shake 0.5s ease-in-out;
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
    opacity: 0.95;
}

.poster-hover:active {
    transform: scale(0.98);
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0) scale(1.02);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: translateX(-3px) scale(1.02);
    }
    20%, 40%, 60%, 80% {
        transform: translateX(3px) scale(1.02);
    }
}

/* ============================================
   Gallery Modal Styles
   ============================================ */
#galleryModal .modal-dialog {
    max-width: 95%;
    width: 95%;
    margin: 0.5rem auto;
    max-height: 95vh;
}

#galleryModal .modal-dialog.modal-fullscreen-lg-down {
    max-width: 95%;
    width: 95%;
}

#galleryModal .modal-content {
    background: rgba(0, 0, 0, 0.95);
    border-radius: 15px;
    padding: 0.5rem;
    max-height: 95vh;
    min-height: 95vh;
    display: flex;
    flex-direction: column;
}

#galleryModal .modal-body {
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    overflow: hidden;
    min-height: 0;
}

#galleryModalImage {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    animation: zoomIn 0.3s ease-in-out;
    cursor: zoom-out;
    display: block;
    margin: 0 auto;
}

@media (max-width: 991.98px) {
    #galleryModal .modal-dialog {
        max-width: 100%;
        width: 100%;
        margin: 0;
        max-height: 100vh;
    }
    
    #galleryModal .modal-content {
        border-radius: 0;
        max-height: 100vh;
        min-height: 100vh;
    }
    
    #galleryModalImage {
        max-height: 95vh;
    }
}

#galleryModal .btn-close {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    opacity: 1;
    padding: 0.75rem;
    z-index: 1060;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

#galleryModal .btn-close:hover {
    background-color: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transform: scale(1.1);
}

#galleryModal .btn-close:active {
    transform: scale(0.95);
}

#galleryModal .modal-dialog {
    pointer-events: none;
}

#galleryModal .modal-content {
    pointer-events: auto;
}

#galleryModal .modal-body {
    pointer-events: auto;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.gallery-item img {
    transition: all 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
