/* ===========================
   Reset & Base Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #24D4CC;
    --primary-dark: #1BAAA3;
    --primary-light: #4FDDD6;
    --secondary-color: #00a651;
    --accent-color: #ff6b35;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    
    /* Typography */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-secondary: 'Arial', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    width: 100%;
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 5px 0;
}

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

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: all 0.3s ease;
}

/* ===========================
   Hero Section - Modern Design
   =========================== */
.hero {
    min-height: 100vh;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 80px 20px 60px;
    overflow: hidden;
}

/* Animated Background Shapes */
.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(36, 212, 204, 0.12) 0%, rgba(79, 221, 214, 0.06) 40%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -100px;
    animation: float 20s ease-in-out infinite, pulse 8s ease-in-out infinite;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 166, 81, 0.08) 0%, rgba(79, 221, 214, 0.04) 40%, transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse, pulse 6s ease-in-out infinite;
    z-index: 0;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    33% {
        transform: translate(40px, -40px) scale(1.15) rotate(5deg);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.85) rotate(-5deg);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* Animated Background Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    background: rgba(36, 212, 204, 0.15);
    border-radius: 50%;
    pointer-events: none;
}

.particle-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation: floatParticle 25s ease-in-out infinite;
}

.particle-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation: floatParticle 20s ease-in-out infinite 2s;
}

.particle-3 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 20%;
    animation: floatParticle 30s ease-in-out infinite 4s;
}

.particle-4 {
    width: 50px;
    height: 50px;
    top: 40%;
    right: 25%;
    animation: floatParticle 18s ease-in-out infinite 1s;
}

.particle-5 {
    width: 70px;
    height: 70px;
    top: 70%;
    left: 50%;
    animation: floatParticle 22s ease-in-out infinite 3s;
}

.particle-6 {
    width: 90px;
    height: 90px;
    top: 10%;
    right: 30%;
    animation: floatParticle 28s ease-in-out infinite 5s;
}

@keyframes floatParticle {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(50px, -50px) scale(1.2);
        opacity: 0.5;
    }
    50% {
        transform: translate(-30px, -80px) scale(0.8);
        opacity: 0.2;
    }
    75% {
        transform: translate(30px, -40px) scale(1.1);
        opacity: 0.4;
    }
}

.hero-container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 0 20px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f0f7ff;
    padding: 10px 24px;
    border-radius: 50px;
    border: 1px solid #0052a3;
    margin-bottom: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #0052a3;
    box-shadow: 0 2px 8px rgba(0, 82, 163, 0.1);
}

.hero-badge i {
    color: #ffd700;
    font-size: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    color: #1a1a1a;
    letter-spacing: -1px;
}

.highlight-text {
    position: relative;
    display: inline-block;
    color: var(--primary-color);
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 20px;
    background: rgba(0, 166, 81, 0.2);
    z-index: -1;
    border-radius: 3px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 35px;
    font-weight: 400;
    line-height: 1.6;
    color: #555;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.btn-hero {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    font-size: 1.05rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-hero i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-hero:hover i {
    transform: translateX(5px);
}

/* Trust Indicators */
.hero-trust {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #555;
}

.trust-item i {
    color: #00a651;
    font-size: 1.1rem;
}

/* Hero Image */
.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

/* Floating Review Cards */
.floating-card {
    position: absolute;
    background: white;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 82, 163, 0.08);
    z-index: 2;
    animation: floatCard 3s ease-in-out infinite;
    min-width: 160px;
}

.floating-card-1 {
    top: 8%;
    left: -50px;
    text-align: center;
    animation-delay: 0s;
    z-index: 2;
}

.floating-card-2 {
    bottom: 25%;
    right: -40px;
    text-align: center;
    animation-delay: 1s;
    z-index: 0;
}

.floating-card-3 {
    top: 15%;
    right: -35px;
    text-align: center;
    animation-delay: 2s;
    z-index: 0;
}

.floating-card-1 .card-icon,
.floating-card-2 .card-icon,
.floating-card-3 .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #00a651 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    box-shadow: 0 8px 20px rgba(0, 82, 163, 0.3);
}

.floating-card-1 .card-icon i,
.floating-card-2 .card-icon i,
.floating-card-3 .card-icon i {
    color: white;
    font-size: 1.6rem;
}

.floating-card-1 h4,
.floating-card-2 h4,
.floating-card-3 h4 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
}

.floating-card-1 p,
.floating-card-2 p,
.floating-card-3 p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    font-weight: 600;
}

.floating-card-3 .location-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 5px;
}

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

/* Hero Bottom Overlay Card */
.hero-bottom-card {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    padding: 18px 30px;
    width: 90%;
    max-width: 600px;
}

.bottom-card-motto {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.bottom-card-motto i {
    font-size: 1.2rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.bottom-card-motto p {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    text-align: center;
    font-style: italic;
    line-height: 1.5;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--primary-color);
    opacity: 0.7;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator span {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator i {
    font-size: 1.5rem;
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-in;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-in 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s both;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background: linear-gradient(135deg, #24D4CC 0%, #4FDDD6 100%);
    border: 2px solid transparent;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(36, 212, 204, 0.25);
}

.btn-secondary span,
.btn-secondary i {
    position: relative;
    z-index: 1;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4FDDD6 0%, #6FE8E0 100%);
    transition: left 0.3s ease;
    z-index: 0;
}

.btn-secondary:hover::before {
    left: 0;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(36, 212, 204, 0.4);
}

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

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

.btn-large {
    padding: 18px 48px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* ===========================
   Stats Section
   =========================== */
.stats-section {
    padding: var(--section-padding);
    background: var(--primary-color);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, background 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
}

.stat-suffix {
    font-size: 2.5rem;
    font-weight: 700;
    display: inline-block;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-description {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* ===========================
   Video Section
   =========================== */
.video-section {
    padding: var(--section-padding);
    background: white;
}

.video-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(36, 212, 204, 0.2);
    background: #000;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.video-info {
    padding: 20px;
}

.video-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.video-badge i {
    font-size: 1.2rem;
}

.video-info h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.video-info p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 25px;
}

.video-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-dark);
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* ===========================
   Section Common Styles
   =========================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
}

/* ===========================
   About Section
   =========================== */
.about-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    margin-top: 30px;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

/* ===========================
   Pillars Section
   =========================== */
.pillars-section {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.pillar-card {
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.pillar-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.pillar-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.pillar-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ===========================
   Direction Section
   =========================== */
.direction-section {
    padding: var(--section-padding);
    background: white;
}

.direction-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.direction-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.direction-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.direction-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,102,204,0.15);
}

.direction-image-wrapper {
    position: relative;
    margin-bottom: 25px;
    display: inline-block;
}

.direction-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid white;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.direction-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 3px 10px rgba(0,102,204,0.3);
}

.direction-info {
    position: relative;
    z-index: 1;
}

.direction-info h4 {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 8px;
}

.direction-info h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.direction-description {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.direction-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-link-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.contact-link-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.contact-link-item:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* ===========================
   Programs Section
   =========================== */
.programs-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

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

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

.program-image {
    height: 220px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.1);
}

.program-content {
    padding: 30px;
}

.program-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.program-level {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 102, 204, 0.2);
}

.program-level i {
    font-size: 1rem;
}

.program-level strong {
    font-weight: 700;
}

.program-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.program-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.program-content p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* ===========================
   Pedagogy Section
   =========================== */
.pedagogy-section {
    padding: var(--section-padding);
    background: var(--bg-white);
}

.pedagogy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.pedagogy-item {
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
}

.pedagogy-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.pedagogy-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 15px;
}

.pedagogy-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.pedagogy-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* ===========================
   Admission Section
   =========================== */
.admission-section {
    padding: var(--section-padding);
    background: var(--bg-light);
}

.admission-steps {
    display: grid;
    gap: 40px;
    margin-bottom: 50px;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    padding: 40px;
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.step-list {
    list-style: none;
    padding: 0;
}

.step-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--text-medium);
}

.step-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.admission-cta {
    text-align: center;
}

/* ===========================
   Contact Section - Enhanced
   =========================== */
.contact-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-intro {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.2);
}

.contact-intro h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-intro p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.95;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-card-enhanced {
    padding: 25px;
    background: white;
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-card-enhanced:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.15);
    transform: translateY(-5px);
}

.contact-card-enhanced .contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0;
    transition: transform 0.3s ease;
}

.contact-card-enhanced:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-weight: 600;
}

.contact-card-content p {
    color: var(--text-medium);
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 8px 0;
    font-size: 0.9rem;
}

.contact-detail i {
    color: var(--primary-color);
    margin-top: 3px;
    font-size: 0.9rem;
}

.contact-detail a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary-color);
    gap: 12px;
}

.contact-link i {
    font-size: 0.85rem;
}

.director-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.director-link:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.contact-social {
    background: white;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #e9ecef;
}

.contact-social h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
}

.social-links-contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--bg-light);
    border: 2px solid #e9ecef;
    border-radius: 10px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-btn i {
    font-size: 1.2rem;
}

.social-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.social-btn:has(.fa-instagram):hover {
    background: #C13584;
    border-color: #C13584;
}

.whatsapp-btn:hover {
    background: #25D366;
    border-color: #25D366;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(36, 212, 204, 0.08);
    border: 1px solid rgba(36, 212, 204, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.form-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.form-header h3 i {
    color: var(--primary-color);
    font-size: 1.6rem;
}

.form-header p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e8f5f4;
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-primary);
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #f0ffff;
    box-shadow: 0 4px 16px rgba(36, 212, 204, 0.15);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    font-weight: 400;
}

.form-group select {
    cursor: pointer;
    color: #666;
}

.form-group select:focus {
    color: var(--text-dark);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.btn-block {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border: none;
    color: white;
    box-shadow: 0 8px 25px rgba(36, 212, 204, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.btn-block i {
    transition: transform 0.3s ease;
}

.btn-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(36, 212, 204, 0.4);
}

.btn-block:hover i {
    transform: translateX(5px);
}

.btn-block:active {
    transform: translateY(-1px);
}

/* Contact Right Content */
.contact-right-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Contact FAQ Section */
.contact-faq {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(36, 212, 204, 0.1);
}

.contact-faq h4 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-faq h4 i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    padding: 15px;
    background: #f8fffe;
    border-radius: 12px;
    border-left: 3px solid var(--primary-color);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: #f0ffff;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(36, 212, 204, 0.1);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.faq-question strong {
    color: var(--text-dark);
    font-size: 1rem;
}

.faq-item p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    padding-left: 20px;
}

/* Contact Address Box */
.contact-address-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(36, 212, 204, 0.25);
}

.address-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.address-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
}

.address-icon i {
    color: white;
    font-size: 1.8rem;
}

.address-text h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 8px;
    font-weight: 700;
}

.address-text p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    margin: 0;
    line-height: 1.6;
}

/* ===========================
   Footer - Modern Design
   =========================== */
.footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--primary-color) 50%, 
        transparent 100%);
}

.footer-main {
    padding: 70px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}

/* About Column */
.footer-col-about {
    max-width: 350px;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(1.1);
    transition: transform 0.3s ease;
}

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

.footer-description {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 166, 81, 0.1);
    border: 1px solid rgba(0, 166, 81, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 25px;
    font-size: 0.85rem;
    color: #00a651;
}

.footer-badge i {
    color: #ffd700;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-link:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.4);
}

.social-link:has(.fa-instagram):hover {
    background: #C13584;
    border-color: #C13584;
    box-shadow: 0 5px 15px rgba(193, 53, 132, 0.4);
}

/* Footer Titles */
.footer-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: white;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
}

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

/* Footer Links */
.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.75rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-links a:hover i {
    opacity: 1;
    transform: translateX(3px);
}

/* Footer CTA Button */
.footer-cta {
    margin-top: 25px;
}

.footer-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.footer-btn:hover {
    background: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.footer-btn i {
    font-size: 1rem;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    gap: 12px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 3px;
    font-size: 1.1rem;
    min-width: 18px;
}

/* Footer Hours */
.footer-hours {
    margin-top: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 3px solid var(--secondary-color);
}

.footer-hours h5 {
    color: white;
    margin-bottom: 12px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-hours h5 i {
    color: var(--secondary-color);
}

.footer-hours p {
    color: rgba(255, 255, 255, 0.75);
    margin: 6px 0;
    font-size: 0.9rem;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-copyright strong {
    color: var(--primary-color);
}

.footer-links-bottom {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

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

.footer-links-bottom a:hover {
    color: var(--primary-color);
}

.footer-links-bottom .separator {
    color: rgba(255, 255, 255, 0.3);
}

.footer-credit {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-credit i {
    color: #e74c3c;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.developer-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.developer-link:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    10%, 30% { transform: scale(1.1); }
    20%, 40% { transform: scale(1); }
}

/* ===========================
   Program Detail Pages
   =========================== */
.program-hero {
    height: 60vh;
    min-height: 500px;
    background: linear-gradient(135deg, #0052a3 0%, #003d7a 50%, #002952 100%);
    background-image:
        linear-gradient(135deg, rgba(0, 82, 163, 0.92) 0%, rgba(0, 61, 122, 0.94) 50%, rgba(0, 41, 82, 0.96) 100%),
        url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 130px;
}

.program-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,82,163,0.88) 0%, rgba(0,41,82,0.92) 100%);
}

.program-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    width: 100%;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

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

.breadcrumb a:hover {
    color: white;
}

.breadcrumb i {
    font-size: 0.7rem;
    opacity: 0.6;
}

.breadcrumb span {
    color: white;
    font-weight: 600;
}

.program-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
}

.program-hero-meta {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.2);
}

.meta-item i {
    font-size: 1.2rem;
    color: #00a651;
}

.program-content-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.program-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
}

.program-main {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.program-intro h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.program-image-featured {
    width: 100%;
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.program-image-featured img {
    width: 100%;
    height: auto;
    display: block;
}

.program-section {
    margin: 50px 0;
    padding: 40px 0;
    border-top: 2px solid #e9ecef;
}

.program-section:first-of-type {
    border-top: none;
    padding-top: 0;
}

.program-section h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 700;
}

.program-section h3 i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.program-list {
    list-style: none;
    padding: 0;
}

.program-list li {
    padding: 15px 0 15px 35px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.program-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.program-years {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.program-year {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
}

.program-year h4 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    font-weight: 700;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.module-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,102,204,0.1);
}

.module-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.module-card h5 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.module-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.career-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.career-card:hover {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 5px 20px rgba(0,102,204,0.1);
}

.career-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.career-card h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.career-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

.program-cta-section {
    margin-top: 60px;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,102,204,0.2);
}

.cta-box h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Sidebar */
.program-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.sidebar-card h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.sidebar-info {
    list-style: none;
    padding: 0;
}

.sidebar-info li {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

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

.sidebar-info i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 30px;
    text-align: center;
}

.sidebar-info strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.sidebar-info span {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.sidebar-list {
    list-style: none;
    padding: 0;
}

.sidebar-list li {
    padding: 12px 0;
    display: flex;
    align-items: start;
    gap: 12px;
    color: var(--text-medium);
    line-height: 1.6;
}

.sidebar-list i {
    color: var(--secondary-color);
    margin-top: 3px;
}

.sidebar-cta {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid var(--primary-color);
}

.sidebar-cta p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-block {
    width: 100%;
    justify-content: center;
    margin-bottom: 10px;
}

.related-programs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.related-program-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.related-program-link:hover {
    background: white;
    border-color: var(--primary-color);
    color: var(--primary-color);
    padding-left: 20px;
}

.related-program-link i {
    color: var(--primary-color);
}

/* ===========================
   Director Page
   =========================== */
.director-hero {
    height: 50vh;
    min-height: 400px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 90px;
}

.director-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,82,163,0.9) 0%, rgba(0,41,82,0.95) 100%);
}

.director-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    width: 100%;
}

.director-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.director-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

.director-content-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.director-layout {
    max-width: 1000px;
    margin: 0 auto;
}

.director-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}

.director-image-wrapper {
    position: relative;
    flex-shrink: 0;
}

.director-image {
    width: 250px;
    height: 250px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,102,204,0.2);
}

.director-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,102,204,0.3);
    white-space: nowrap;
}

.director-info h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.director-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 600;
}

.director-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-medium);
}

.contact-item i {
    color: var(--primary-color);
    width: 20px;
}

.contact-item a {
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.director-message {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-bottom: 40px;
}

.message-intro {
    position: relative;
    margin-bottom: 35px;
    padding-left: 60px;
}

.quote-icon {
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
}

.message-intro h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    font-weight: 600;
}

.message-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 25px;
    text-align: justify;
}

.message-content h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-top: 35px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
}

.message-content h4 i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.message-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.message-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.message-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.message-closing {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 3px solid var(--primary-color);
}

.closing-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 500;
}

.signature {
    margin-top: 40px;
    text-align: right;
}

.signature-name {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 5px;
}

.signature-title {
    font-size: 1rem;
    color: var(--text-medium);
    font-style: italic;
}

.director-cta {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

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

.cta-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-item:hover {
    border-color: var(--primary-color);
    background: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,102,204,0.1);
}

.cta-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-item h4 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.cta-item p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-content {
        text-align: center;
        padding: 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .floating-card-1 {
        left: -20px;
        min-width: 120px;
        padding: 15px;
    }
    
    .floating-card-2,
    .floating-card-3 {
        right: -20px;
        min-width: 120px;
        padding: 15px;
    }
    
    .floating-card-1 h4,
    .floating-card-2 h4,
    .floating-card-3 h4 {
        font-size: 1.5rem;
    }
    
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    /* Program Pages - Tablet */
    .program-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .program-sidebar {
        order: 2;
    }
    
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .careers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .program-hero h1,
    .director-hero h1 {
        font-size: 2.5rem;
    }
    
    /* Director Page - Tablet */
    .director-layout {
        gap: 40px;
    }
    
    .director-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Direction Section - Tablet */
    .direction-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-col-about {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
    }
    
    .footer-logo img {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-badge {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        padding: 30px;
        box-shadow: var(--shadow);
        transition: left 0.3s ease;
        gap: 10px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .logo img {
        height: 45px;
    }
    
    .hero {
        min-height: auto;
        padding: 80px 20px 50px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-image {
        max-width: 100%;
    }
    
    .floating-card {
        padding: 15px;
        min-width: 100px;
    }
    
    .floating-card-1 {
        top: 5%;
        left: -15px;
    }
    
    .floating-card-2 {
        bottom: 20%;
        right: -15px;
    }
    
    .floating-card-3 {
        top: 10%;
        right: -15px;
    }
    
    .floating-card-1 .card-icon,
    .floating-card-2 .card-icon,
    .floating-card-3 .card-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .floating-card-1 .card-icon i,
    .floating-card-2 .card-icon i,
    .floating-card-3 .card-icon i {
        font-size: 1.2rem;
    }
    
    .floating-card-1 h4,
    .floating-card-2 h4,
    .floating-card-3 h4 {
        font-size: 1.6rem;
    }
    
    .floating-card-1 p,
    .floating-card-2 p,
    .floating-card-3 p {
        font-size: 0.8rem;
    }
    
    .floating-card-3 .location-text {
        font-size: 1rem;
    }
    
    .hero-particles {
        display: none;
    }
    
    .hero-bottom-card {
        padding: 15px 20px;
        width: 95%;
        bottom: -15px;
    }
    
    .bottom-card-motto {
        gap: 10px;
    }
    
    .bottom-card-motto i {
        font-size: 1rem;
    }
    
    .bottom-card-motto p {
        font-size: 0.9rem;
    }
    
    .video-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .video-info h3 {
        font-size: 1.6rem;
    }
    
    .video-info p {
        font-size: 1rem;
    }
    
    .program-hero,
    .director-hero {
        padding-top: 100px;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 15px;
    }
    
    .trust-item {
        font-size: 0.85rem;
    }
    
    .btn {
        min-width: 200px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid,
    .pillars-grid,
    .programs-grid,
    .pedagogy-grid,
    .direction-grid {
        grid-template-columns: 1fr;
    }
    
    .direction-card {
        padding: 30px;
    }
    
    .direction-image {
        width: 120px;
        height: 120px;
    }
    
    .direction-info h3 {
        font-size: 1.3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links-contact {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image {
        order: -1;
    }
    
    .program-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .program-sidebar {
        order: 2;
    }
    
    .modules-grid,
    .careers-grid {
        grid-template-columns: 1fr;
    }
    
    .director-card {
        flex-direction: column;
        text-align: center;
        padding: 35px;
    }
    
    .director-image {
        width: 180px;
        height: 180px;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-col-about {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .footer-btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links-bottom {
        justify-content: center;
    }
    
    :root {
        --section-padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 50px;
    }
    
    .hero {
        min-height: 90vh;
        padding: 40px 0;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.25;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        width: 100%;
        margin-bottom: 20px;
        justify-content: center;
    }
    
    .btn-hero {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .trust-item {
        font-size: 0.8rem;
        text-align: center;
        justify-content: center;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .scroll-indicator span {
        font-size: 0.75rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .form-header h3 {
        font-size: 1.4rem;
    }
    
    .form-header p {
        font-size: 0.9rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .address-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo img {
        height: 50px;
    }
    
    .footer-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-links a,
    .footer-contact li {
        font-size: 0.9rem;
    }
    
    .footer-hours {
        padding: 15px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
    }
    
    /* Program Pages Responsive */
    .program-hero h1,
    .director-hero h1 {
        font-size: 1.8rem;
    }
    
    .program-hero-meta,
    .breadcrumb {
        flex-direction: column;
        gap: 10px;
        font-size: 0.85rem;
    }
    
    .meta-item {
        justify-content: center;
    }
    
    .program-intro h2,
    .program-section h3 {
        font-size: 1.4rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .module-card,
    .career-card {
        padding: 20px;
    }
    
    .module-card h5,
    .career-card h4 {
        font-size: 1rem;
    }
    
    .sidebar-card {
        padding: 20px;
    }
    
    .sidebar-card h4 {
        font-size: 1.1rem;
    }
    
    .program-cta-section h3,
    .cta-box h3 {
        font-size: 1.5rem;
    }
    
    /* Director Page Responsive */
    .director-info h2 {
        font-size: 1.6rem;
    }
    
    .director-badge span {
        font-size: 0.8rem;
    }
    
    .message-content h4 {
        font-size: 1.2rem;
    }
    
    .message-content p,
    .message-list li {
        font-size: 0.95rem;
    }
    
    .cta-item h4 {
        font-size: 1.1rem;
    }
    
    .cta-item p {
        font-size: 0.9rem;
    }
    
    /* Direction Section Responsive */
    .direction-description {
        font-size: 0.9rem;
    }
    
    .direction-info h4 {
        font-size: 0.85rem;
    }
    
    .contact-link-item {
        font-size: 0.9rem;
    }
    
    /* Admission Steps Responsive */
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .step h3 {
        font-size: 1.3rem;
    }
    
    /* Contact Section Responsive */
    .contact-intro h2 {
        font-size: 1.6rem;
    }
    
    .contact-card {
        padding: 25px;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .social-btn {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
    
    /* Ensure proper spacing on very small screens */
    :root {
        --container-padding: 0 15px;
    }
    
    .btn-large {
        width: 100%;
        padding: 14px 20px;
    }
    
    .btn-block {
        width: 100%;
    }
    
    /* Prevent text overflow */
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    /* Responsive tables if any */
    table {
        width: 100%;
        overflow-x: auto;
        display: block;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .logo img {
        height: 40px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .direction-card,
    .program-card,
    .pillar-card {
        padding: 20px;
    }
}

/* ===========================
   Registration Notification (Beautiful Enhanced Design)
   =========================== */
.registration-notification {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fc 100%);
    border-radius: 20px;
    padding: 0;
    max-width: 360px;
    box-shadow: 
        0 20px 60px rgba(0, 102, 204, 0.25),
        0 0 0 1px rgba(0, 102, 204, 0.1);
    z-index: 9999;
    transform: translateX(450px) scale(0.9);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

.registration-notification.show {
    transform: translateX(0) scale(1);
    opacity: 1;
}

/* Animated shine effect */
.notification-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    animation: shine 3s infinite;
    pointer-events: none;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Badge "Nouveau" */
.notification-badge {
    position: absolute;
    top: 15px;
    right: 50px;
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.notification-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.notification-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.notification-close i {
    font-size: 0.85rem;
    color: white;
}

/* Header with icon and title */
.notification-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 25px 20px 20px;
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.notification-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: headerGlow 4s linear infinite;
}

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

.notification-icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: iconFloat 3s ease-in-out infinite;
    flex-shrink: 0;
}

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

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.3);
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
}

.notification-icon i {
    font-size: 1.6rem;
    color: white;
    position: relative;
    z-index: 1;
}

.notification-title {
    flex: 1;
    position: relative;
}

.notification-title h3 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 5px;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.notification-sparkles {
    display: flex;
    gap: 5px;
}

.notification-sparkles i {
    font-size: 0.7rem;
    color: #ffd700;
    animation: sparkle 1.5s ease-in-out infinite;
}

.notification-sparkles i:nth-child(2) {
    animation-delay: 0.3s;
}

.notification-sparkles i:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.8);
    }
}

/* Body content */
.notification-body {
    padding: 20px;
    background: white;
}

.notification-body p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 10px;
    font-weight: 500;
}

.notification-body p i {
    color: var(--primary-color);
    font-size: 1rem;
}

.notification-body p.highlight {
    color: #ff6b35;
    font-weight: 700;
    animation: highlightBounce 2s ease-in-out infinite;
}

.notification-body p.highlight i {
    color: #ff6b35;
    animation: fireFlicker 1s ease-in-out infinite;
}

@keyframes fireFlicker {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.1) rotate(-5deg);
    }
    75% {
        transform: scale(1.1) rotate(5deg);
    }
}

@keyframes highlightBounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(3px);
    }
}

/* Footer with button */
.notification-footer {
    padding: 0 20px 20px;
    background: white;
}

.notification-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
    position: relative;
    overflow: hidden;
}

.notification-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.notification-btn:hover::before {
    width: 300px;
    height: 300px;
}

.notification-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

.notification-btn i {
    transition: transform 0.3s ease;
}

.notification-btn:hover i {
    transform: translateX(5px);
}

/* Notification Responsive */
@media (max-width: 576px) {
    .registration-notification {
        bottom: 20px;
        right: 20px;
        left: 20px;
        max-width: none;
    }
    
    .notification-header {
        padding: 20px 15px 15px;
    }
    
    .notification-icon {
        width: 48px;
        height: 48px;
    }
    
    .notification-icon i {
        font-size: 1.4rem;
    }
    
    .notification-title h3 {
        font-size: 1.15rem;
    }
    
    .notification-body {
        padding: 15px;
    }
    
    .notification-body p {
        font-size: 0.9rem;
    }
    
    .notification-footer {
        padding: 0 15px 15px;
    }
    
    .notification-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .notification-badge {
        top: 12px;
        right: 45px;
        font-size: 0.7rem;
        padding: 3px 10px;
    }
}
