/* ============================================================ */
/* 1. RESET & BASE STYLES - VIBRANT THEME                     */
/* ============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Colors - Warm & Cheerful */
    --primary-color: #FF7B89;
    --primary-dark: #E85A6A;
    --primary-light: #FFD1D6;
    
    /* Secondary Colors - Playful */
    --secondary-color: #2D4059;
    --secondary-light: #3D5A80;
    
    /* Accent Colors - Fun & Bright */
    --accent-yellow: #FFD93D;
    --accent-green: #6BCB77;
    --accent-blue: #4FC3F7;
    --accent-purple: #B39DDB;
    --accent-orange: #FF8A5C;
    --accent-pink: #FF80AB;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #FF7B89 0%, #FF8A5C 50%, #FFD93D 100%);
    --gradient-card: linear-gradient(145deg, #FFF8E1, #FFF3E0);
    --gradient-primary: linear-gradient(135deg, #FF7B89, #FF8A5C);
    
    /* Backgrounds */
    --bg-light: #FFFDF7;
    --bg-white: #FFFFFF;
    --bg-warm: #FFF8E1;
    --bg-colorful: linear-gradient(135deg, #FFF8E1 0%, #F3E5F5 50%, #E8F5E9 100%);
    
    /* Shadows */
    --shadow: 0 8px 30px rgba(255, 123, 137, 0.15);
    --shadow-hover: 0 15px 50px rgba(255, 123, 137, 0.25);
    --shadow-card: 0 8px 25px rgba(0, 0, 0, 0.08);
    
    /* Border Radius */
    --border-radius: 25px;
    --border-radius-sm: 15px;
    --border-radius-lg: 40px;
    
    --transition: all 0.3s ease;
    
    /* Font */
    --font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--secondary-color);
    background: var(--bg-colorful);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================================ */
/* 2. SECTION TITLES - MORE PLAYFUL                           */
/* ============================================================ */

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    position: relative;
}

.section-title::before {
    content: '✦ ';
    color: var(--accent-yellow);
    font-size: 2.2rem;
}

.section-title::after {
    content: ' ✦';
    color: var(--accent-yellow);
    font-size: 2.2rem;
}

.section-title .underline {
    display: block;
    width: 100px;
    height: 6px;
    background: var(--gradient-primary);
    margin: 0.8rem auto 0;
    border-radius: 10px;
    position: relative;
}

.section-title .underline::before {
    content: '●';
    color: var(--accent-yellow);
    position: absolute;
    left: -15px;
    top: -8px;
    font-size: 1.2rem;
}

.section-title .underline::after {
    content: '●';
    color: var(--accent-yellow);
    position: absolute;
    right: -15px;
    top: -8px;
    font-size: 1.2rem;
}

.section-subtitle {
    text-align: center;
    color: var(--secondary-light);
    font-size: 1.15rem;
    margin-bottom: 3rem;
    font-weight: 300;
    position: relative;
}

.section-subtitle::before {
    content: '🌸 ';
}

.section-subtitle::after {
    content: ' 🌸';
}

/* ============================================================ */
/* 3. BUTTONS - MORE COLORFUL                                 */
/* ============================================================ */

.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: var(--border-radius-lg);
    font-weight: 700;
    font-size: 1.05rem;
    transition: var(--transition);
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 6px 25px rgba(255, 123, 137, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 40px rgba(255, 123, 137, 0.5);
}

.btn-primary i {
    margin-left: 10px;
    transition: var(--transition);
}

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

/* ============================================================ */
/* 4. HEADER - VIBRANT                                      */
/* ============================================================ */

header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 2px 30px rgba(255, 123, 137, 0.12);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    border-image: var(--gradient-primary);
    border-image-slice: 1;
}

header.scrolled {
    box-shadow: 0 4px 40px rgba(255, 123, 137, 0.2);
    padding: 6px 0;
    border-bottom: 3px solid var(--primary-color);
}

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

.logo-area {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 70px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 4px 10px rgba(255, 123, 137, 0.2));
}

.logo-img:hover {
    transform: rotate(-5deg) scale(1.05);
}

.logo-text-img {
    height: 70px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.06));
}

.logo-text-img:hover {
    transform: scale(1.03);
}

/* Navigation */
.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu li a {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 8px 16px;
    border-radius: var(--border-radius-lg);
}

.nav-menu li a::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 4px;
    background: var(--gradient-primary);
    transition: var(--transition);
    border-radius: 10px;
    transform: translateX(-50%);
}

.nav-menu li a:hover::before,
.nav-menu li a.active::before {
    width: 70%;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-color);
    background: rgba(255, 123, 137, 0.06);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.hamburger .bar {
    width: 28px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 10px;
    transition: var(--transition);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ============================================================ */
/* 5. HERO SECTION - SUPER VIBRANT                           */
/* ============================================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    background-image: url('../images/hero/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    margin-top: 0;
}

.hero-overlay {
    background: linear-gradient(135deg, 
        rgba(255, 123, 137, 0.85) 0%, 
        rgba(255, 138, 92, 0.8) 40%,
        rgba(255, 217, 61, 0.7) 100%
    );
    padding: 130px 0 110px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Playful Floating Shapes */
.hero-overlay::before {
    content: '✦ ✧ ★ ✦ ✧ ★ ✦ ✧ ★';
    position: absolute;
    top: 10%;
    left: 5%;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 30px;
    animation: floatShapes 20s linear infinite;
}

.hero-overlay::after {
    content: '● ○ ◯ ● ○ ◯ ● ○ ◯';
    position: absolute;
    bottom: 15%;
    right: 5%;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.12);
    letter-spacing: 25px;
    animation: floatShapes 25s linear infinite reverse;
}

@keyframes floatShapes {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

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

.hero-content h2 {
    font-size: 3.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 0.1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.hero-content h2:nth-child(1) { animation-delay: 0.2s; }
.hero-content h2:nth-child(2) { animation-delay: 0.4s; }
.hero-content .highlight { animation-delay: 0.6s; }

.hero-content .highlight {
    color: var(--accent-yellow);
    font-size: 4.5rem;
    display: inline-block;
    text-shadow: 0 4px 30px rgba(255, 217, 61, 0.4);
    position: relative;
}

.hero-content .highlight::after {
    content: '🌈';
    position: absolute;
    right: -60px;
    top: -10px;
    font-size: 2.5rem;
    animation: bounce 2s ease-in-out infinite;
}

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

.hero-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 1.5rem auto 2.5rem;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    opacity: 0;
    animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-content .btn {
    opacity: 0;
    animation: fadeUp 0.8s ease 1s forwards;
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.hero-content .btn:hover {
    background: var(--accent-yellow);
    color: var(--secondary-color);
    transform: translateY(-4px) scale(1.05);
}

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

/* ============================================================ */
/* 6. ABOUT SECTION - COLORFUL                               */
/* ============================================================ */

.about {
    padding: 100px 0 80px;
    background: var(--bg-white);
    position: relative;
}

.about::before {
    content: '🌸 🌺 🌻 🌷 🌹 🌸 🌺 🌻';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 1.8rem;
    opacity: 0.08;
    letter-spacing: 15px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 30px;
}

.about-text .acronym-explanation {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.about-text .acronym-letter {
    font-size: 1.15rem;
    color: var(--secondary-color);
    padding: 6px 15px;
    background: rgba(255, 123, 137, 0.06);
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--primary-color);
}

.about-text .acronym-letter strong {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.about-text .tagline {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0.5rem 0 1.5rem;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--secondary-light);
}

.vision-mission {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.vm-box {
    background: var(--gradient-card);
    padding: 30px 35px;
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.vm-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.vm-box:hover {
    transform: translateX(8px) scale(1.01);
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}

.vm-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.vm-box h3 i {
    color: var(--primary-color);
    margin-right: 12px;
}

.vm-box p {
    color: var(--secondary-light);
}

/* ============================================================ */
/* 7. PATHWAYS SECTION - COLORFUL CARDS                      */
/* ============================================================ */

.pathways {
    background: var(--bg-colorful);
    padding: 80px 0;
    position: relative;
}

.pathways::before {
    content: '🎈 🎈 🎈 🎈 🎈 🎈 🎈';
    position: absolute;
    bottom: 20px;
    left: 30px;
    font-size: 2rem;
    opacity: 0.06;
    letter-spacing: 20px;
}

.pathway-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

.pathway-card {
    background: var(--bg-white);
    padding: 45px 35px 50px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.pathway-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 123, 137, 0.03) 0%, transparent 70%);
    transition: var(--transition);
}

.pathway-card:hover::before {
    transform: scale(1.2);
}

.pathway-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.pathway-card:nth-child(1) .pathway-icon i {
    color: var(--accent-blue);
}

.pathway-card:nth-child(2) .pathway-icon i {
    color: var(--accent-green);
}

.pathway-icon i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: inline-block;
    transition: var(--transition);
}

.pathway-card:hover .pathway-icon i {
    transform: scale(1.15) rotate(-5deg);
}

.pathway-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.pathway-card p {
    color: var(--secondary-light);
    font-size: 1rem;
}

.pathway-list {
    margin-top: 20px;
    text-align: left;
    display: inline-block;
}

.pathway-list li {
    margin-bottom: 10px;
    font-weight: 400;
    color: var(--secondary-light);
    padding: 4px 10px;
    border-radius: 8px;
    transition: var(--transition);
}

.pathway-list li:hover {
    background: rgba(255, 123, 137, 0.06);
}

.pathway-list i {
    color: var(--accent-green);
    margin-right: 12px;
    font-size: 1.1rem;
}

/* ============================================================ */
/* 8. PROGRAMS SECTION - COLORFUL GRID                       */
/* ============================================================ */

.programs {
    padding: 80px 0;
    background: var(--bg-white);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 10px;
}

.program-item {
    background: var(--bg-white);
    padding: 30px 20px 35px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-card);
    border: 2px solid #f0f0f0;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.program-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.program-item:hover::after {
    transform: scaleX(1);
}

.program-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-light);
}

/* Different colors for each program icon */
.program-item:nth-child(1) .program-icon i { color: var(--accent-yellow); }
.program-item:nth-child(2) .program-icon i { color: var(--accent-blue); }
.program-item:nth-child(3) .program-icon i { color: var(--accent-green); }
.program-item:nth-child(4) .program-icon i { color: var(--accent-orange); }
.program-item:nth-child(5) .program-icon i { color: var(--accent-purple); }
.program-item:nth-child(6) .program-icon i { color: var(--accent-pink); }
.program-item:nth-child(7) .program-icon i { color: var(--primary-color); }
.program-item:nth-child(8) .program-icon i { color: var(--accent-yellow); }

.program-icon i {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: var(--transition);
}

.program-item:hover .program-icon i {
    transform: scale(1.2) rotate(-10deg);
}

.program-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.program-item p {
    font-size: 0.9rem;
    color: var(--secondary-light);
}

/* ============================================================ */
/* 9. GALLERY SECTION - WITH FUN OVERLAYS                    */
/* ============================================================ */

.gallery {
    background: var(--bg-colorful);
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 10px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    cursor: pointer;
    border: 3px solid transparent;
    transition: var(--transition);
}

.gallery-item:hover {
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(45, 64, 89, 0.85));
    padding: 30px 20px 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 4px 16px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-lg);
    display: inline-block;
}

/* ============================================================ */
/* 10. TESTIMONIALS - COLORFUL CARDS                         */
/* ============================================================ */

.testimonials {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.testimonial-item {
    background: var(--bg-colorful);
    padding: 35px 30px 40px;
    border-radius: var(--border-radius);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
}

.testimonial-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: -5px;
    left: 15px;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.15;
    font-family: Georgia, serif;
}

.testimonial-item i {
    color: var(--accent-yellow);
    font-size: 2rem;
    opacity: 0.5;
    margin-bottom: 15px;
}

.testimonial-item p {
    font-style: italic;
    font-size: 1rem;
    color: var(--secondary-color);
    line-height: 1.8;
}

.testimonial-author {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px dashed var(--primary-light);
}

.author-name {
    font-weight: 700;
    color: var(--primary-color);
    font-style: normal;
}

/* ============================================================ */
/* 11. LEADERSHIP - WITH COLORFUL BORDERS                    */
/* ============================================================ */

.leadership {
    background: var(--bg-colorful);
    padding: 80px 0;
}

.leader-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.leader-card {
    background: var(--bg-white);
    padding: 35px 30px 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 3px solid transparent;
    position: relative;
}

.leader-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: var(--border-radius);
    background: var(--gradient-primary);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.leader-card:hover::before {
    opacity: 1;
}

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

.leader-image {
    margin-bottom: 20px;
}

.leader-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-light);
    transition: var(--transition);
}

.leader-card:hover .leader-img {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.leader-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.leader-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.leader-qualifications {
    text-align: left;
    padding: 0 10px;
}

.leader-qualifications li {
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--secondary-light);
    position: relative;
    padding-left: 28px;
}

.leader-qualifications li::before {
    content: '✓';
    color: var(--accent-green);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

/* ============================================================ */
/* 12. CONTACT - COLORFUL FORM                              */
/* ============================================================ */

.contact {
    padding: 80px 0;
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 20px;
}

.contact-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 25px 0 15px;
    position: relative;
    padding-left: 15px;
    border-left: 4px solid var(--primary-color);
}

.contact-info h3:first-of-type {
    margin-top: 0;
}

.contact-info h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.contact-info p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    color: var(--secondary-light);
    padding: 8px 15px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
}

.contact-info p:hover {
    background: rgba(255, 123, 137, 0.05);
}

.contact-info p i {
    color: var(--primary-color);
    width: 20px;
    font-size: 1.1rem;
}

.contact-info p a {
    color: var(--secondary-light);
    transition: var(--transition);
}

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

/* Contact Form */
.contact-form {
    background: var(--bg-colorful);
    padding: 40px 35px 45px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-card);
    border: 2px solid transparent;
    transition: var(--transition);
}

.contact-form:hover {
    border-color: var(--primary-light);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-align: center;
}

.contact-form h3::after {
    content: ' ✨';
}

.form-group {
    margin-bottom: 18px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid #e8e8e8;
    border-radius: var(--border-radius-sm);
    font-family: var(--font-family);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-white);
    color: var(--secondary-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 123, 137, 0.15);
    transform: scale(1.01);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================================ */
/* 13. CONTACT MAP                                           */
/* ============================================================ */

.contact-map {
    margin-top: 40px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 4px solid var(--primary-light);
    transition: var(--transition);
}

.contact-map:hover {
    border-color: var(--primary-color);
    transform: scale(1.01);
}

/* ============================================================ */
/* 14. FOOTER - COLORFUL                                     */
/* ============================================================ */

footer {
    background: var(--secondary-color);
    padding: 40px 0 0;
    color: #fff;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '✦ ✧ ★ ✦ ✧ ★ ✦ ✧ ★';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 1.5rem;
    opacity: 0.06;
    letter-spacing: 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo p {
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: var(--transition);
    padding: 4px 12px;
    border-radius: var(--border-radius-lg);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-yellow);
    background: rgba(255, 217, 61, 0.1);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    color: #fff;
    font-size: 1.1rem;
}

.footer-social a:hover {
    background: var(--gradient-primary);
    transform: translateY(-4px) scale(1.1);
    color: #fff;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    opacity: 0.6;
}

.footer-bottom i {
    color: var(--primary-color);
    animation: heartbeat 1.5s ease-in-out infinite;
}

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

/* ============================================================ */
/* 15. RESPONSIVE DESIGN                                     */
/* ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pathway-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .leader-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .hero-content h2 {
        font-size: 2.8rem;
    }
    
    .hero-content .highlight {
        font-size: 3.2rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .section-title::before,
    .section-title::after {
        font-size: 1.8rem;
    }
    
    .logo-img {
        height: 55px;
    }
    
    .logo-text-img {
        height: 45px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        flex-wrap: nowrap;
    }
    
    .logo-link {
        gap: 8px;
    }
    
    .logo-img {
        height: 45px;
    }
    
    .logo-text-img {
        height: 35px;
        max-width: 150px;
    }
    
    .nav-menu {
        position: fixed;
        top: 65px;
        left: -100%;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 30px 20px;
        gap: 15px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
        text-align: center;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content .highlight {
        font-size: 2.4rem;
    }
    
    .hero-content .highlight::after {
        right: -40px;
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .hero-overlay {
        padding: 100px 0 80px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-title::before,
    .section-title::after {
        font-size: 1.4rem;
    }
    
    .section-subtitle::before,
    .section-subtitle::after {
        content: '';
    }
    
    .programs-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .gallery-item img {
        height: 200px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .contact-info p {
        font-size: 0.95rem;
    }
    
    .pathway-card h3 {
        font-size: 1.3rem;
    }
    
    .hero-overlay::before,
    .hero-overlay::after {
        display: none;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .logo-link {
        gap: 5px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .logo-text-img {
        height: 28px;
        max-width: 100px;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-content h2 {
        font-size: 1.6rem;
    }
    
    .hero-content .highlight {
        font-size: 2rem;
    }
    
    .hero-content .highlight::after {
        display: none;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-title::before,
    .section-title::after {
        content: '';
    }
    
    .about-text .tagline {
        font-size: 1.2rem;
    }
    
    .vm-box {
        padding: 20px 25px;
    }
    
    .contact-form {
        padding: 25px 20px 30px;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo-img {
        height: 40px;
    }
    
    .pathway-card {
        padding: 30px 20px 35px;
    }
    
    .pathway-icon i {
        font-size: 3rem;
    }
}