/* ==========================================================================
   The Instrument Path - Main Stylesheet
   ========================================================================== */

:root {
    /* Colors */
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #f59e0b;
    --dark: #1a1a2e;
    --light: #f8fafc;
    --success: #10b981;
    --danger: #ef4444;
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 5rem;
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
body {
    font-family: var(--font-body);
    color: #334155;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--dark);
}

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

a:hover {
    color: var(--primary-dark);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.1rem;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    font-weight: 500;
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.btn-donate {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    font-weight: 600;
}

.btn-donate:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar {
    padding: 0.75rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    transition: height 0.3s ease;
}

.nav-link {
    font-weight: 500;
    color: #475569;
    padding: 0.5rem 1rem !important;
    position: relative;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

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

/* ==========================================================================
   Hero Slider
   ========================================================================== */
.hero-slider {
    margin-top: -76px;
}

.hero-slide {
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(37, 99, 235, 0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 700px;
}

.hero-content.text-center {
    margin: 0 auto;
}

.hero-content.text-left {
    margin-right: auto;
}

.hero-content.text-right {
    margin-left: auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.section-stats {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.stat-item {
    padding: 1.5rem;
}

.stat-icon {
    font-size: 2.5rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-display);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.85;
}

/* ==========================================================================
   Program Cards
   ========================================================================== */
.program-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.program-icon i {
    font-size: 2rem;
    color: #fff;
}

.program-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* ==========================================================================
   Testimonial Cards
   ========================================================================== */
.testimonial-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.testimonial-content {
    font-style: italic;
    color: #64748b;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
    margin-top: 1rem;
}

.author-avatar,
.author-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-avatar-placeholder {
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* ==========================================================================
   Event Cards
   ========================================================================== */
.event-card {
    background: #fff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.event-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-date-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-align: center;
}

.event-date-badge .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-date-badge .month {
    font-size: 0.75rem;
    text-transform: uppercase;
}

.event-content {
    padding: 1.5rem;
}

.event-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.event-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 1rem;
}

.event-meta i {
    margin-right: 0.25rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f1419 100%);
    position: relative;
}

.footer-wave {
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 50px;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
}

.footer-brand-large {
    margin-bottom: 20px;
}

.footer-brand-large img {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.footer-links-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links-main li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links-main li a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #41659f, #f5a623);
    transition: transform 0.3s ease;
}

.footer-links-main li a:hover {
    color: #fff;
    transform: translateY(-2px);
}

.footer-links-main li a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.footer-contact-simple {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-simple li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.footer-contact-simple i {
    color: #f5a623;
    font-size: 1.2rem;
}

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

.footer-contact-simple a:hover {
    color: #fff;
}

.social-links-center {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.3rem;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: linear-gradient(135deg, #41659f, #2d4873);
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(65, 101, 159, 0.3);
    border-color: transparent;
}

/* ==========================================================================
   Back to Top Button
   ========================================================================== */
.btn-back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.btn-back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   Forms
   ========================================================================== */
.form-control,
.form-select {
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #e2e8f0;
}

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

/* ==========================================================================
   Alerts
   ========================================================================== */
.alert {
    border: none;
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
}

/* ==========================================================================
   Page Headers
   ========================================================================== */
.page-header {
    background: linear-gradient(135deg, var(--dark), var(--primary-dark));
    color: #fff;
    padding: 4rem 0;
    margin-bottom: 3rem;
}

.page-header h1 {
    color: #fff;
    font-size: 2.5rem;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

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

.breadcrumb-item.active {
    color: #fff;
}

/* ==========================================================================
   Gallery
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* ==========================================================================
   Contact Page
   ========================================================================== */
.contact-info-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: #fff;
}

/* ==========================================================================
   Animations
   ========================================================================== */
[data-aos] {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991.98px) {
    .section-title {
        font-size: 2rem;
    }
    
    :root {
        --section-padding: 3rem;
    }
}

@media (max-width: 767.98px) {
    .hero-slide {
        min-height: 500px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}




 /*=============================================
   HERO VIDEO SECTION
   ============================================= */
.hero-video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 1000px;
    overflow: hidden;
    margin-top: -160px; /* Compensar el header fijo */
}

/* Video Background */
.video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overlay con gradiente azul */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(30, 74, 142, 0.85) 0%,
        rgba(30, 74, 142, 0.6) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 2;
}

/* Content Wrapper */
.hero-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    padding-top: 80px; /* Espacio para el header */
}

/* Hero Content */
.hero-content {
    max-width: 900px;
    color: #fff;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1rem;
    opacity: 0.95;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Buttons */
.hero-buttons .btn {
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background: var(--tip-gold, #f5a623);
    border-color: var(--tip-gold, #f5a623);
}

.hero-buttons .btn-primary:hover {
    background: #e09100;
    border-color: #e09100;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.4);
}

.hero-buttons .btn-outline-light:hover {
    background: #fff;
    color: var(--tip-blue, #1e4a8e);
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.scroll-indicator a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    transition: all 0.3s;
}

.scroll-indicator a:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

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

/* Responsive */
@media (max-width: 991.98px) {
    .hero-video-section {
        margin-top: -120px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        padding: 12px 25px;
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .hero-buttons .btn.me-3 {
        margin-right: 0 !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}


/* Google Font - Musical Style */
@import url('https://fonts.googleapis.com/css2?family=Satisfy&family=Lobster&display=swap');

/* =============================================
   MISSION SECTION - MUSICAL STYLE
   ============================================= */
.section-mission {
    position: relative;
    padding: 100px 0 120px;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4f8 50%, #f0f7ff 100%);
    overflow: hidden;
}

/* Floating Music Notes Background */
.music-notes-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.music-notes-bg i {
    position: absolute;
    color: rgba(30, 74, 142, 0.08);
    font-size: 3rem;
    animation: floatNote 15s infinite ease-in-out;
}

.note-1 { top: 10%; left: 5%; animation-delay: 0s; font-size: 2.5rem; }
.note-2 { top: 20%; right: 10%; animation-delay: 2s; font-size: 4rem; }
.note-3 { top: 60%; left: 8%; animation-delay: 4s; font-size: 3rem; }
.note-4 { top: 70%; right: 5%; animation-delay: 6s; font-size: 2rem; }
.note-5 { top: 40%; left: 3%; animation-delay: 8s; font-size: 3.5rem; }
.note-6 { top: 30%; right: 3%; animation-delay: 10s; font-size: 2.5rem; }

@keyframes floatNote {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.5;
    }
    25% {
        transform: translateY(-20px) rotate(10deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-10px) rotate(-5deg);
        opacity: 0.6;
    }
    75% {
        transform: translateY(-30px) rotate(15deg);
        opacity: 0.9;
    }
}

/* Mission Icon */
.mission-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--tip-blue, #1e4a8e), #2d6cb5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 15px 40px rgba(30, 74, 142, 0.3);
    animation: pulse 2s infinite;
}

.mission-icon i {
    font-size: 2.5rem;
    color: #fff;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 15px 40px rgba(30, 74, 142, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 20px 50px rgba(30, 74, 142, 0.4);
    }
}

/* Mission Title - Musical Font */
.mission-title {
    font-family: 'Lobster', cursive;
    font-size: 3.5rem;
    color: var(--tip-blue, #1e4a8e);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(30, 74, 142, 0.1);
}

.title-decoration-left,
.title-decoration-right {
    display: inline-block;
    font-size: 2.5rem;
    color: var(--tip-gold, #f5a623);
    animation: bounce-note 1.5s infinite;
    margin: 0 15px;
}

.title-decoration-right {
    animation-delay: 0.3s;
}

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

/* Title Underline */
.title-underline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.title-underline span {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--tip-gold, #f5a623), transparent);
    border-radius: 3px;
}

.title-underline i {
    font-size: 1.5rem;
    color: var(--tip-gold, #f5a623);
    animation: spin 8s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Mission Text */
.mission-text {
    font-size: 1.3rem;
    color: #1d0564ff;
    line-height: 1.9;
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
}

.mission-text::before,
.mission-text::after {
    content: '"';
    font-family: 'Lobster', cursive;
    font-size: 4rem;
    color: rgba(30, 74, 142, 0.15);
    position: absolute;
}

.mission-text::before {
    top: -30px;
    left: -20px;
}

.mission-text::after {
    bottom: -50px;
    right: -20px;
}

/* Mission Values */
.mission-values {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.value-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover .value-icon {
    background: var(--tip-blue, #1e4a8e);
    box-shadow: 0 15px 40px rgba(30, 74, 142, 0.3);
}

.value-icon i {
    font-size: 1.8rem;
    color: var(--tip-blue, #1e4a8e);
    transition: color 0.3s ease;
}

.value-item:hover .value-icon i {
    color: #fff;
}

.value-item span {
    font-weight: 600;
    color: #190648ff;
    font-size: 1rem;
}

/* Wave Bottom */
.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.wave-bottom svg {
    width: 100%;
    height: 60px;
}

/* Responsive */
@media (max-width: 991.98px) {
    .section-mission {
        padding: 70px 0 100px;
    }
    
    .mission-title {
        font-size: 2.5rem;
    }
    
    .title-decoration-left,
    .title-decoration-right {
        font-size: 1.8rem;
        margin: 0 10px;
    }
    
    .mission-text {
        font-size: 1.1rem;
    }
    
    .mission-values {
        gap: 25px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .value-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .mission-title {
        font-size: 2rem;
    }
    
    .mission-icon {
        width: 80px;
        height: 80px;
    }
    
    .mission-icon i {
        font-size: 2rem;
    }
    
    .mission-text::before,
    .mission-text::after {
        display: none;
    }
}
/* =============================================
   HOME PAGE STYLES - The Instrument Path
   ============================================= */

:root {
    --tip-blue: #1e4a8e;
    --tip-blue-dark: #163a70;
    --tip-gold: #f5a623;
}

/* =============================================
   HERO VIDEO SECTION
   ============================================= */
.hero-video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 1000px;
    overflow: hidden;
    margin-top: -160px;
}

.hero-video-section .video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video-section .video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-section .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 74, 142, 0.85) 0%, rgba(30, 74, 142, 0.6) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.hero-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    padding-top: 80px;
}

.hero-content {
    max-width: 900px;
    color: #fff;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1rem;
    opacity: 0.95;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.hero-buttons .btn {
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
    background: var(--tip-gold);
    border-color: var(--tip-gold);
}

.hero-buttons .btn-primary:hover {
    background: #e09100;
    border-color: #e09100;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.4);
}

.hero-buttons .btn-outline-light:hover {
    background: #fff;
    color: var(--tip-blue);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.scroll-indicator a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    transition: all 0.3s;
}

.scroll-indicator a:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

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

/* =============================================
   MISSION SECTION
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Satisfy&family=Lobster&display=swap');

.section-mission {
    position: relative;
    padding: 100px 0 120px;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4f8 50%, #f0f7ff 100%);
    overflow: hidden;
}

.music-notes-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.music-notes-bg i {
    position: absolute;
    color: rgba(30, 74, 142, 0.08);
    font-size: 3rem;
    animation: floatNote 15s infinite ease-in-out;
}

.music-notes-bg .note-1 { top: 10%; left: 5%; animation-delay: 0s; font-size: 2.5rem; }
.music-notes-bg .note-2 { top: 20%; right: 10%; animation-delay: 2s; font-size: 4rem; }
.music-notes-bg .note-3 { top: 60%; left: 8%; animation-delay: 4s; font-size: 3rem; }
.music-notes-bg .note-4 { top: 70%; right: 5%; animation-delay: 6s; font-size: 2rem; }
.music-notes-bg .note-5 { top: 40%; left: 3%; animation-delay: 8s; font-size: 3.5rem; }
.music-notes-bg .note-6 { top: 30%; right: 3%; animation-delay: 10s; font-size: 2.5rem; }

@keyframes floatNote {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
    25% { transform: translateY(-20px) rotate(10deg); opacity: 0.8; }
    50% { transform: translateY(-10px) rotate(-5deg); opacity: 0.6; }
    75% { transform: translateY(-30px) rotate(15deg); opacity: 0.9; }
}

.mission-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--tip-blue), #2d6cb5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 15px 40px rgba(30, 74, 142, 0.3);
    animation: pulse 2s infinite;
}

.mission-icon i {
    font-size: 2.5rem;
    color: #fff;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 15px 40px rgba(30, 74, 142, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 20px 50px rgba(30, 74, 142, 0.4); }
}

.mission-title {
    font-family: 'Lobster', cursive;
    font-size: 3.5rem;
    color: var(--tip-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(30, 74, 142, 0.1);
}

.title-decoration-left,
.title-decoration-right {
    display: inline-block;
    font-size: 2.5rem;
    color: var(--tip-gold);
    animation: bounce-note 1.5s infinite;
    margin: 0 15px;
}

.title-decoration-right {
    animation-delay: 0.3s;
}

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

.title-underline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.title-underline span {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--tip-gold), transparent);
    border-radius: 3px;
}

.title-underline i {
    font-size: 1.5rem;
    color: var(--tip-gold);
    animation: spin 8s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.mission-text {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.9;
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
}

.mission-text::before,
.mission-text::after {
    content: '"';
    font-family: 'Lobster', cursive;
    font-size: 4rem;
    color: rgba(30, 74, 142, 0.15);
    position: absolute;
}

.mission-text::before { top: -30px; left: -20px; }
.mission-text::after { bottom: -50px; right: -20px; }

.mission-values {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.mission-values .value-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.mission-values .value-item:hover {
    transform: translateY(-10px);
}

.mission-values .value-icon {
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.mission-values .value-item:hover .value-icon {
    background: var(--tip-blue);
    box-shadow: 0 15px 40px rgba(30, 74, 142, 0.3);
}

.mission-values .value-icon i {
    font-size: 1.8rem;
    color: var(--tip-blue);
    transition: color 0.3s ease;
}

.mission-values .value-item:hover .value-icon i {
    color: #fff;
}

.mission-values .value-item span {
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.section-mission .wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

.section-mission .wave-bottom svg {
    width: 100%;
    height: 60px;
}

/* =============================================
   TESTIMONIAL VIDEO SECTION
   ============================================= */
.section-testimonial-video {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #1e4a8e 0%, #163a70 50%, #0f2847 100%);
    overflow: hidden;
}

.pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.video-container {
    position: relative;
}

.video-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.section-testimonial-video .video-wrapper {
    position: relative;
    padding-top: 56.25%;
    background: #000;
}

.section-testimonial-video .video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    cursor: pointer;
}

.play-overlay:hover {
    background: rgba(0, 0, 0, 0.3);
}

.play-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.play-btn {
    width: 100px;
    height: 100px;
    border: none;
    border-radius: 50%;
    background: var(--tip-gold);
    color: #fff;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(245, 166, 35, 0.5);
    padding-left: 8px;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(245, 166, 35, 0.6);
}

.play-btn i {
    line-height: 1;
}

.play-text {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.frame-decoration {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 4px solid var(--tip-gold);
    pointer-events: none;
}

.frame-top-left {
    top: -15px;
    left: -15px;
    border-right: none;
    border-bottom: none;
    border-radius: 20px 0 0 0;
}

.frame-bottom-right {
    bottom: -15px;
    right: -15px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 20px 0;
}

.floating-notes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-notes i {
    position: absolute;
    color: var(--tip-gold);
    opacity: 0.6;
    animation: floatUpDown 3s ease-in-out infinite;
}

.floating-notes .note-1 { top: -20px; left: -30px; font-size: 2.5rem; animation-delay: 0s; }
.floating-notes .note-2 { bottom: 20px; left: -40px; font-size: 2rem; animation-delay: 0.5s; }
.floating-notes .note-3 { top: 30%; right: -35px; font-size: 2.2rem; animation-delay: 1s; }

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
}

.testimonial-content {
    color: #fff;
    padding-left: 30px;
}

.content-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 166, 35, 0.2);
    color: var(--tip-gold);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(245, 166, 35, 0.3);
}

.section-testimonial-video .section-title {
    font-family: 'Lobster', cursive;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
}

.testimonial-quote {
    position: relative;
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    padding-left: 30px;
    font-style: italic;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: 0;
    font-size: 2rem;
    color: var(--tip-gold);
    opacity: 0.5;
}

.mini-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.mini-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.mini-stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-icon-wrap {
    width: 45px;
    height: 45px;
    background: var(--tip-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon-wrap i {
    font-size: 1.3rem;
    color: #fff;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-info .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.stat-info .stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.btn-more-stories {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--tip-gold);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-more-stories:hover {
    color: #fff;
    gap: 15px;
}

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

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

/* =============================================
   PROGRAMS SECTION
   ============================================= */
.section-programs {
    position: relative;
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

.musical-bg-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.musical-bg-light .floating-note {
    position: absolute;
    color: var(--tip-blue);
    opacity: 0.05;
    animation: floatSoft 15s ease-in-out infinite;
}

.musical-bg-light .n1 { top: 10%; left: 5%; font-size: 3rem; animation-delay: 0s; }
.musical-bg-light .n2 { top: 20%; right: 8%; font-size: 4rem; animation-delay: 2s; }
.musical-bg-light .n3 { top: 50%; left: 3%; font-size: 2.5rem; animation-delay: 4s; }
.musical-bg-light .n4 { top: 70%; right: 5%; font-size: 3rem; animation-delay: 6s; }
.musical-bg-light .n5 { top: 80%; left: 10%; font-size: 2rem; animation-delay: 8s; }
.musical-bg-light .n6 { top: 35%; right: 3%; font-size: 2.5rem; animation-delay: 10s; }

@keyframes floatSoft {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.programs-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--tip-blue);
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(30, 74, 142, 0.3);
}

.section-badge i {
    color: var(--tip-gold);
}

.section-programs .section-title {
    font-family: 'Lobster', cursive;
    font-size: 3.5rem;
    color: var(--tip-blue);
    margin-bottom: 20px;
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.title-decoration .line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--tip-gold), transparent);
}

.decoration-icon {
    width: 50px;
    height: 50px;
    background: var(--tip-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: spin 10s linear infinite;
}

.decoration-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.section-subtitle {
    color: #666;
    font-size: 1.15rem;
    max-width: 500px;
    margin: 0 auto;
}

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

.program-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 40px 25px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(30, 74, 142, 0.15);
    border-color: var(--tip-blue);
}

.card-top-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--tip-blue), var(--tip-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.program-card:hover .card-top-bar {
    transform: scaleX(1);
}

.program-icon {
    position: relative;
    margin-bottom: 25px;
}

.icon-circle {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--tip-blue), #2d5aa0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(30, 74, 142, 0.3);
}

.program-card:hover .icon-circle {
    background: linear-gradient(135deg, var(--tip-gold), #e09100);
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 40px rgba(245, 166, 35, 0.4);
}

.icon-circle i {
    font-size: 2.2rem;
    color: #fff;
}

.icon-note {
    position: absolute;
    top: -5px;
    right: calc(50% - 60px);
    color: var(--tip-gold);
    font-size: 1.2rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.program-card:hover .icon-note {
    opacity: 1;
    transform: translateY(0);
    animation: iconBounce 1s ease-in-out infinite;
}

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

.program-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--tip-blue);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.program-card:hover .program-title {
    color: var(--tip-gold);
}

.program-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.program-stats {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(30, 74, 142, 0.08);
    padding: 8px 15px;
    border-radius: 20px;
    color: var(--tip-blue);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.program-stats i {
    color: var(--tip-gold);
}

.program-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--tip-blue);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.program-link:hover {
    color: var(--tip-gold);
    gap: 12px;
}

.programs-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--tip-blue);
    color: #fff;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(30, 74, 142, 0.3);
}

.btn-view-all:hover {
    background: var(--tip-gold);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 166, 35, 0.4);
}

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

/* =============================================
   ABOUT SECTION
   ============================================= */
.section-about {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #1e4a8e 0%, #163a70 50%, #0f2847 100%);
    overflow: hidden;
}

.about-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}

.bg-circle.circle-1 {
    width: 500px;
    height: 500px;
    top: -150px;
    left: -150px;
}

.bg-circle.circle-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    right: -100px;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

.section-about .floating-note {
    position: absolute;
    color: rgba(255, 255, 255, 0.08);
    animation: floatNote 12s ease-in-out infinite;
}

.section-about .fn-1 { top: 15%; right: 10%; font-size: 4rem; animation-delay: 0s; }
.section-about .fn-2 { bottom: 20%; left: 5%; font-size: 3rem; animation-delay: 3s; }
.section-about .fn-3 { top: 50%; right: 5%; font-size: 2.5rem; animation-delay: 6s; }

.about-images {
    position: relative;
    padding: 30px;
}

.image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.image-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.image-border {
    position: absolute;
    top: -15px;
    left: -15px;
    right: 15px;
    bottom: 15px;
    border: 3px solid var(--tip-gold);
    border-radius: 20px;
    z-index: -1;
}

.image-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 180px;
    height: 180px;
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.years-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 110px;
    height: 110px;
    background: var(--tip-gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(245, 166, 35, 0.5);
    z-index: 3;
    animation: pulse 2s ease-in-out infinite;
}

.years-badge .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.years-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}

.floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 4;
}

.floating-icon i {
    font-size: 1.3rem;
    color: var(--tip-blue);
}

.floating-icon.fi-1 {
    top: 20%;
    right: 10px;
    animation: bounce1 3s ease-in-out infinite;
}

.floating-icon.fi-2 {
    bottom: 25%;
    left: 10px;
    animation: bounce2 3s ease-in-out infinite;
}

.floating-icon.fi-2 i {
    color: var(--tip-gold);
}

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

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

.about-content {
    color: #fff;
    padding-left: 20px;
}

.about-content .content-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 166, 35, 0.2);
    color: var(--tip-gold);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid rgba(245, 166, 35, 0.3);
}

.content-title {
    font-family: 'Lobster', cursive;
    font-size: 3rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.about-content .title-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.about-content .title-divider span {
    width: 50px;
    height: 2px;
    background: var(--tip-gold);
}

.about-content .title-divider i {
    font-size: 1.2rem;
    color: var(--tip-gold);
    animation: spin 10s linear infinite;
}

.content-lead {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-lead strong {
    color: var(--tip-gold);
}

.content-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-values {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.about-values .value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-values .value-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: var(--tip-gold);
}

.about-values .value-icon {
    width: 45px;
    height: 45px;
    background: var(--tip-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-values .value-icon i {
    font-size: 1.2rem;
    color: #fff;
}

.value-info h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.value-info p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.about-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-about-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--tip-gold);
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(245, 166, 35, 0.4);
}

.btn-about-primary:hover {
    background: #fff;
    color: var(--tip-blue);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.btn-about-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.btn-about-secondary:hover {
    background: #fff;
    color: var(--tip-blue);
    border-color: #fff;
    transform: translateY(-3px);
}

.btn-about-secondary i {
    color: var(--tip-gold);
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.section-testimonials .testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

.testimonial-rating i {
    color: var(--tip-gold);
}

.section-testimonials .testimonial-content {
    font-style: italic;
    color: #555;
    line-height: 1.7;
    padding-left: 0;
}

.section-testimonials .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
    padding-top: 20px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--tip-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

/* =============================================
   EVENTS SECTION
   ============================================= */
.event-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.event-image {
    position: relative;
    height: 200px;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--tip-gold);
    color: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    text-align: center;
}

.event-date-badge .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-date-badge .month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.event-content {
    padding: 20px;
}

.event-title {
    font-weight: 700;
    color: var(--tip-blue);
    margin-bottom: 10px;
}

.event-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
}

.event-meta i {
    color: var(--tip-gold);
}

/* =============================================
   CTA SECTION
   ============================================= */
.section-cta {
    background: linear-gradient(135deg, var(--tip-blue), var(--tip-blue-dark));
}

.section-cta .btn-light {
    background: var(--tip-gold);
    border-color: var(--tip-gold);
    color: #fff;
}

.section-cta .btn-light:hover {
    background: #fff;
    color: var(--tip-blue);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991.98px) {
    .hero-video-section {
        margin-top: -120px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        padding: 12px 25px;
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .hero-buttons .btn.me-3 {
        margin-right: 0 !important;
    }
    
    .section-mission {
        padding: 70px 0 100px;
    }
    
    .mission-title {
        font-size: 2.5rem;
    }
    
    .title-decoration-left,
    .title-decoration-right {
        font-size: 1.8rem;
        margin: 0 10px;
    }
    
    .mission-text {
        font-size: 1.1rem;
    }
    
    .mission-values {
        gap: 25px;
    }
    
    .mission-values .value-icon {
        width: 60px;
        height: 60px;
    }
    
    .mission-values .value-icon i {
        font-size: 1.5rem;
    }
    
    .section-testimonial-video {
        padding: 70px 0;
    }
    
    .testimonial-content {
        padding-left: 0;
        text-align: center;
    }
    
    .section-testimonial-video .section-title {
        font-size: 2.2rem;
    }
    
    .testimonial-quote {
        padding-left: 0;
        text-align: center;
    }
    
    .quote-icon {
        position: relative;
        display: block;
        margin-bottom: 10px;
    }
    
    .mini-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .frame-decoration,
    .floating-notes {
        display: none;
    }
    
    .section-programs {
        padding: 80px 0;
    }
    
    .section-programs .section-title {
        font-size: 2.8rem;
    }
    
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-about {
        padding: 80px 0;
    }
    
    .about-content {
        padding-left: 0;
        text-align: center;
    }
    
    .content-title {
        font-size: 2.3rem;
    }
    
    .about-content .title-divider {
        justify-content: center;
    }
    
    .about-values {
        justify-content: center;
    }
    
    .about-buttons {
        justify-content: center;
    }
    
    .image-main img {
        height: 380px;
    }
    
    .image-secondary {
        width: 150px;
        height: 150px;
    }
    
    .years-badge {
        width: 90px;
        height: 90px;
    }
    
    .years-badge .number {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .programs-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .section-programs .section-title {
        font-size: 2.2rem;
    }
    
    .content-title {
        font-size: 1.9rem;
    }
    
    .about-values {
        flex-direction: column;
        align-items: center;
    }
    
    .about-values .value-item {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .image-border,
    .floating-icon {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .mission-title {
        font-size: 2rem;
    }
    
    .mission-icon {
        width: 80px;
        height: 80px;
    }
    
    .mission-icon i {
        font-size: 2rem;
    }
    
    .mission-text::before,
    .mission-text::after {
        display: none;
    }
    
    .section-testimonial-video .section-title {
        font-size: 1.8rem;
    }
    
    .play-btn {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .mini-stats {
        gap: 10px;
    }
    
    .mini-stat-item {
        padding: 12px 15px;
    }
    
    .stat-info .stat-number {
        font-size: 1.2rem;
    }
}

/* =============================================
   STORIES SECTION - 2 VIDEOS ELEGANT
   ============================================= */
.section-stories {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
    overflow: hidden;
}

/* Background */
.stories-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.section-stories .floating-note {
    position: absolute;
    color: var(--tip-blue, #1e4a8e);
    opacity: 0.05;
    animation: floatStory 15s ease-in-out infinite;
}

.sn-1 { top: 10%; left: 5%; font-size: 3rem; }
.sn-2 { top: 60%; right: 8%; font-size: 4rem; animation-delay: 3s; }
.sn-3 { bottom: 15%; left: 10%; font-size: 2.5rem; animation-delay: 6s; }

@keyframes floatStory {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Header */
.stories-header {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.stories-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--tip-blue, #1e4a8e);
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(30, 74, 142, 0.3);
}

.stories-badge i {
    color: var(--tip-gold, #f5a623);
}

.stories-title {
    font-family: 'Lobster', cursive;
    font-size: 3.5rem;
    color: var(--tip-blue, #1e4a8e);
    margin-bottom: 20px;
}

.title-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.title-line span {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--tip-gold, #f5a623), transparent);
}

.title-line i {
    color: var(--tip-gold, #f5a623);
    font-size: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.stories-subtitle {
    color: #666;
    font-size: 1.15rem;
    max-width: 550px;
    margin: 0 auto;
}

/* Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

/* Video Card */
.video-card {
    position: relative;
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(30, 74, 142, 0.2);
}

.video-card .video-wrapper {
    position: relative;
    overflow: hidden;
}

.video-card video {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    display: block;
}

/* Video Overlay */
.video-card .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(30, 74, 142, 0.3) 0%, rgba(30, 74, 142, 0.6) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.video-card .video-overlay:hover {
    background: linear-gradient(180deg, rgba(30, 74, 142, 0.2) 0%, rgba(30, 74, 142, 0.5) 100%);
}

.video-card .video-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.video-card .play-btn {
    width: 80px;
    height: 80px;
    background: var(--tip-gold, #f5a623);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(245, 166, 35, 0.5);
    padding-left: 5px;
}

.video-card .play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(245, 166, 35, 0.6);
}

.play-text {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Video Content */
.video-content {
    padding: 25px 30px;
}

.video-tag {
    display: inline-block;
    background: rgba(30, 74, 142, 0.1);
    color: var(--tip-blue, #1e4a8e);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.video-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--tip-blue, #1e4a8e);
    margin-bottom: 8px;
}

.video-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* CTA */
.stories-cta {
    position: relative;
    z-index: 2;
}

.btn-stories {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--tip-blue, #1e4a8e);
    color: #fff;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(30, 74, 142, 0.3);
}

.btn-stories:hover {
    background: var(--tip-gold, #f5a623);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 166, 35, 0.4);
}

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

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

/* Responsive */
@media (max-width: 991.98px) {
    .section-stories {
        padding: 80px 0;
    }
    
    .stories-title {
        font-size: 2.8rem;
    }
    
    .videos-grid {
        gap: 30px;
    }
}

@media (max-width: 767.98px) {
    .stories-title {
        font-size: 2.2rem;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .video-card .play-btn {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .video-content {
        padding: 20px;
    }
    
    .video-content h4 {
        font-size: 1.2rem;
    }
}

.section-cta-elegant {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #1e4a8e 0%, #163a70 50%, #0f2847 100%);
    overflow: hidden;
}

/* Background */
.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.08);
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -50px;
}

.section-cta-elegant .floating-note {
    position: absolute;
    color: rgba(255, 255, 255, 0.08);
    animation: floatCta 12s ease-in-out infinite;
}

.cn-1 { top: 20%; right: 10%; font-size: 3rem; }
.cn-2 { bottom: 20%; left: 8%; font-size: 2.5rem; animation-delay: 4s; }

@keyframes floatCta {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
}

/* Wrapper */
.cta-wrapper {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 650px;
    margin: 0 auto;
}

/* Icon */
.cta-icon {
    width: 80px;
    height: 80px;
    background: var(--tip-gold, #f5a623);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 15px 40px rgba(245, 166, 35, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.cta-icon i {
    font-size: 2rem;
    color: #fff;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 15px 40px rgba(245, 166, 35, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 20px 50px rgba(245, 166, 35, 0.5); }
}

/* Title */
.cta-title {
    font-family: 'Lobster', cursive;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Text */
.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 35px;
}

/* Button */
.btn-cta-donate {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--tip-gold, #f5a623);
    color: #fff;
    padding: 18px 40px;
    border-radius: 60px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(245, 166, 35, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-cta-donate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-cta-donate:hover::before {
    left: 100%;
}

.btn-cta-donate:hover {
    background: #fff;
    color: var(--tip-blue, #1e4a8e);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-icon i {
    font-size: 1.2rem;
    animation: heartbeat 1.5s ease-in-out infinite;
}

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

.btn-cta-donate:hover .btn-icon i {
    animation: none;
    color: #e74c3c;
}

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

.btn-cta-donate:hover .btn-arrow i {
    transform: translateX(5px);
}

/* Trust Badge */
.cta-trust {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.cta-trust i {
    color: var(--tip-gold, #f5a623);
    font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 991.98px) {
    .section-cta-elegant {
        padding: 80px 0;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-icon {
        width: 70px;
        height: 70px;
    }
    
    .cta-icon i {
        font-size: 1.7rem;
    }
    
    .btn-cta-donate {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
}.nav-menu a { font-style: italic; }
