/* ============================================
   HOMEPAGE STYLES
   ============================================ */

.modern-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: url('https://images.unsplash.com/photo-1555252333-9f8e92e65df9?w=1920&h=1080&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.modern-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(43, 42, 40, 0.35);
    background-size: 50px 50px;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 6rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255, 255, 255, 0.2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.hero-stat-item {
    text-align: left;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    display: block;
}

.hero-stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite;
}

.floating-card .rounded-circle {
    width: 52px;
    height: 52px;
    padding: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-card .rounded-circle i {
    line-height: 1;
}

.floating-card-1 {
    top: 10%;
    right: -10%;
}

.floating-card-2 {
    bottom: 15%;
    left: -10%;
    animation-delay: 1.5s;
}

.bg-teal-gradient {
    background: var(--gradient-teal);
}

.programs-section {
    background: #f8f9fa;
}

.section-title-xl {
    font-size: 2.5rem;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
}

.program-card {
    transition: all 0.3s;
    overflow: hidden;
}

.program-card-media {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.program-card-media-pre {
    background-image: url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?w=400&h=250&fit=crop');
}

.program-card-media-main {
    background-image: url('https://images.unsplash.com/photo-1493863641943-9b68992a8d07?w=400&h=250&fit=crop');
}

.program-card-media-post {
    background-image: url('https://images.unsplash.com/photo-1519689373023-dd07c7988603?w=400&h=250&fit=crop');
}

.program-icon-size {
    font-size: 2.5rem;
}

.program-list-spacing {
    line-height: 2;
}

.program-list-spacing li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.program-list-spacing li i {
    margin-top: 0.28rem;
    flex-shrink: 0;
}

.text-strike {
    text-decoration: line-through;
}

.text-brand-primary {
    color: var(--primary-purple);
}

.text-brand-secondary {
    color: var(--primary-teal);
}

.feature-card {
    background: #ffffff;
    transition: transform 0.3s;
}

.feature-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.feature-icon-size {
    font-size: 1.75rem;
}

.feature-icon-wrap .feature-icon-size {
    width: 100%;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.achievements-section {
    background: rgba(127, 62, 155, 0.05);
}

.achievement-card {
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-radius: 15px;
}

.achievement-icon,
.achievement-value {
    font-size: 2.5rem;
}

.section-body-md {
    font-size: 1.1rem;
}

.rating-stars {
    color: #ffc107;
    font-size: 1.25rem;
}

.testimonial-quote {
    line-height: 1.8;
    font-style: italic;
}

.avatar-chip {
    width: 50px;
    height: 50px;
    color: #fff;
    font-weight: 600;
}

.avatar-chip-purple {
    background: var(--gradient-purple);
}

.avatar-chip-teal {
    background: var(--gradient-teal);
}

.course-card {
    overflow: hidden;
    transition: transform 0.3s;
}

.course-card:hover {
    transform: translateY(-8px);
}

.course-media {
    height: 180px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-media-1 {
    background-image: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=400&h=250&fit=crop');
}

.course-media-2 {
    background-image: url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?w=400&h=250&fit=crop');
}

.course-media-3 {
    background-image: url('https://images.unsplash.com/photo-1490645935967-10de6ba17061?w=400&h=250&fit=crop');
}

.course-media-4 {
    background-image: url('https://images.unsplash.com/photo-1511632765486-a01980e01a18?w=400&h=250&fit=crop');
}

.course-icon {
    font-size: 3rem;
    color: #fff;
}

.meta-small {
    font-size: 0.875rem;
}

.program-card-highlight {
    background: var(--gradient-primary);
    color: #fff;
    transition: all 0.3s;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(127, 62, 155, 0.3);
}

.program-highlight-text {
    color: rgba(255, 255, 255, 0.9);
}

.opacity-80 {
    opacity: 0.8;
}

.feature-icon-purple {
    background: var(--gradient-purple);
}

.feature-icon-teal {
    background: var(--gradient-teal);
}

.final-cta {
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.final-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.final-cta-bubble-lg {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: #fff;
    border-radius: 50%;
}

.final-cta-bubble-xl {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: #fff;
    border-radius: 50%;
}

.final-cta-content {
    position: relative;
    z-index: 1;
    padding: 3rem 0;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.875rem;
}

.cta-title {
    font-size: 2.5rem;
    color: #fff;
}

.cta-subtitle {
    font-size: 1.125rem;
    opacity: 0.95;
    color: #fff;
}

.cta-btn {
    border-radius: 50px;
    font-weight: 600;
}

.cta-note {
    font-size: 0.875rem;
    opacity: 0.8;
}

.modern-hero .btn i,
.programs-section .btn i,
.final-cta .btn i,
.final-cta .cta-note i,
.hero-badge i,
.cta-badge i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    vertical-align: middle;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .modern-hero {
        min-height: 70vh;
    }
}