/* Home Page Specific Styles - Enhanced Version */

/* Enhanced Geometric Shapes */
.geometric-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
    pointer-events: none;
}

.geometric-shape {
    position: absolute;
    opacity: 0.08;
    animation: geometricFloat 30s ease-in-out infinite;
}

.geometric-shape:nth-child(1) {
    top: 20%;
    left: 10%;
    width: 18px;
    height: 18px;
    background: var(--epsf-blue);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    animation-delay: 0s;
    animation-duration: 35s;
}

.geometric-shape:nth-child(2) {
    top: 70%;
    left: 80%;
    width: 12px;
    height: 12px;
    background: var(--kinetic-blue);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    animation-delay: -10s;
    animation-duration: 40s;
}

.geometric-shape:nth-child(3) {
    top: 40%;
    left: 85%;
    width: 15px;
    height: 15px;
    background: var(--epsf-blue);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    animation-delay: -20s;
    animation-duration: 45s;
}

.geometric-shape:nth-child(4) {
    top: 80%;
    left: 15%;
    width: 10px;
    height: 10px;
    background: var(--kinetic-blue);
    clip-path: polygon(20% 0%, 80% 0%, 100% 20%, 100% 80%, 80% 100%, 20% 100%, 0% 80%, 0% 20%);
    animation-delay: -30s;
    animation-duration: 50s;
}

@keyframes geometricFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.12;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 0.18;
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
        opacity: 0.12;
    }
    75% {
        transform: translateY(-30px) rotate(270deg);
        opacity: 0.15;
    }
}

/* Enhanced Pulsing Orbs */
.pulsing-orbs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.pulsing-orb {
    position: absolute;
    border-radius: 50%;
    animation: pulseAnimation 8s ease-in-out infinite;
}

.pulsing-orb:nth-child(1) {
    top: 30%;
    left: 20%;
    width: 30px;
    height: 30px;
    background: radial-gradient(circle, rgba(0, 82, 212, 0.08) 0%, transparent 70%);
    animation-delay: 0s;
}

.pulsing-orb:nth-child(2) {
    top: 60%;
    left: 70%;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(0, 204, 255, 0.08) 0%, transparent 70%);
    animation-delay: -3s;
}

.pulsing-orb:nth-child(3) {
    top: 80%;
    left: 30%;
    width: 25px;
    height: 25px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.12) 0%, transparent 70%);
    animation-delay: -6s;
}

@keyframes pulseAnimation {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.5;
    }
}

/* Enhanced Interactive Background */
.interactive-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 82, 212, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    transition: all 0.1s ease;
}

/* Enhanced Mouse Follow */
.mouse-follow {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(0, 82, 212, 0.4), transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    mix-blend-mode: screen;
}

/* ===== ENHANCED HERO SECTION ===== */

/* Enhanced Hero Section - Professional Design */
.hero {
    min-height: 100vh;
    background: 
        linear-gradient(135deg, 
            rgba(26, 46, 80, 0.85) 0%, 
            rgba(42, 62, 96, 0.75) 25%, 
            rgba(0, 82, 212, 0.6) 50%, 
            rgba(26, 46, 80, 0.8) 75%, 
            rgba(42, 62, 96, 0.9) 100%),
        url('../assets/images/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

/* Enhanced Background Overlay with Professional Gradients */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 82, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(0, 82, 212, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 90%, rgba(255, 107, 107, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, 
            rgba(255, 255, 255, 0.1) 0%, 
            rgba(255, 255, 255, 0.05) 50%, 
            rgba(255, 255, 255, 0.1) 100%);
    animation: heroBackgroundFloat 30s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes heroBackgroundFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.9;
    }
    25% {
        transform: translateY(-20px) rotate(1deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) rotate(-1deg);
        opacity: 0.95;
    }
    75% {
        transform: translateY(-30px) rotate(0.5deg);
        opacity: 1;
    }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%),
        linear-gradient(135deg, 
            rgba(0, 0, 0, 0.2) 0%, 
            rgba(0, 0, 0, 0.1) 25%, 
            rgba(0, 0, 0, 0.05) 50%, 
            rgba(0, 0, 0, 0.1) 75%, 
            rgba(0, 0, 0, 0.2) 100%);
    animation: heroFloatingElements 20s ease-in-out infinite;
    z-index: 2;
    pointer-events: none;
}

@keyframes heroFloatingElements {
    0%, 100% {
        transform: translateX(-100%) translateY(-100%);
        opacity: 0;
    }
    50% {
        transform: translateX(100%) translateY(100%);
        opacity: 0.4;
    }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-6);
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-12);
    align-items: center;
    min-height: calc(100vh - 80px);
}

/* Enhanced Hero Brand Section */
.hero-brand-section {
    animation: heroBrandSlideIn 1s ease-out;
}

@keyframes heroBrandSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-logo-container {
    position: relative;
    display: inline-block;
    margin-bottom: var(--spacing-6);
}

.hero-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--primary-gradient);
    padding: var(--spacing-4);
    box-shadow: var(--shadow-xl), var(--epsf-glow-strong);
    transition: all var(--transition-bounce);
    position: relative;
    z-index: 2;
}

.hero-logo:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-2xl), var(--epsf-glow-strong);
}

.logo-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(0, 82, 212, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: logoGlowEnhanced 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes logoGlowEnhanced {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.hero-brand-text {
    margin-top: var(--spacing-6);
}

.hero-brand-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-6xl);
    font-weight: var(--font-weight-black);
    color: var(--text-white);
    margin: 0 0 var(--spacing-4) 0;
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
    position: relative;
    text-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 1px 2px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-brand-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: var(--border-radius-full);
    animation: titleUnderline 2s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(0, 82, 212, 0.4);
}

@keyframes titleUnderline {
    0%, 100% {
        width: 80px;
        opacity: 1;
    }
    50% {
        width: 120px;
        opacity: 0.8;
    }
}

.brand-subtitle {
    font-family: var(--font-body);
    font-size: var(--font-size-lg);
    color: var(--text-white-muted);
    margin: 0;
    line-height: var(--line-height-relaxed);
    font-weight: var(--font-weight-medium);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Enhanced Hero Welcome Section */
.hero-welcome-section {
    animation: heroWelcomeSlideIn 1s ease-out 0.3s both;
}

@keyframes heroWelcomeSlideIn {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-5xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-white);
    margin: 0 0 var(--spacing-6) 0;
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tight);
    text-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 1px 2px rgba(0, 0, 0, 0.2);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.gradient-text {
    background: linear-gradient(135deg, #FFFFFF 0%, #E3F2FD 50%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientTextShift 3s ease-in-out infinite;
    text-shadow: none;
    filter: none;
}

@keyframes gradientTextShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: var(--font-size-xl);
    color: var(--text-white-muted);
    margin: 0 0 var(--spacing-8) 0;
    line-height: var(--line-height-loose);
    font-weight: var(--font-weight-normal);
    max-width: 600px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Enhanced Hero CTA Section */
.hero-cta-section {
    animation: heroCTASlideIn 1s ease-out 0.6s both;
}

@keyframes heroCTASlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-cta-buttons {
    display: flex;
    gap: var(--spacing-4);
    margin-bottom: var(--spacing-8);
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-3);
    padding: var(--spacing-4) var(--spacing-8);
    border-radius: var(--border-radius-lg);
    font-family: var(--font-heading);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    transition: all var(--transition-bounce);
    position: relative;
    overflow: hidden;
    letter-spacing: var(--letter-spacing-wide);
    text-transform: uppercase;
    min-height: 56px;
}

.hero-cta-primary {
    background: linear-gradient(135deg, #0052D4 0%, #1A73E8 50%, #0052D4 100%);
    color: var(--text-white);
    box-shadow: 
        0 8px 32px rgba(0, 82, 212, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left var(--transition-slow);
}

.hero-cta-primary:hover::before {
    left: 100%;
}

.hero-cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 40px rgba(0, 82, 212, 0.4),
        0 6px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.hero-cta-secondary::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 var(--transition-slow);
    z-index: -1;
}

.hero-cta-secondary:hover::before {
    left: 0;
}

.hero-cta-secondary:hover {
    color: var(--text-white);
    transform: translateY(-4px);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-btn i {
    font-size: var(--font-size-lg);
    transition: transform var(--transition-normal);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.hero-btn:hover i {
    transform: scale(1.2);
}

/* Enhanced Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-6);
    margin-top: var(--spacing-8);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-6);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 16px 48px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-white);
    line-height: 1;
    margin-bottom: var(--spacing-2);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

.stat-label {
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    color: var(--text-white-muted);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-wide);
    font-weight: var(--font-weight-medium);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Enhanced Section Divider */
.section-divider {
    position: relative;
    height: 120px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.section-divider svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.section-divider path {
    fill: #f8fafc;
}

/* Enhanced Board Section */
.board-section {
    background: var(--light-gray);
    padding: 3rem 0;
    position: relative;
}

.board-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 82, 212, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 107, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.board-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.board-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    color: var(--charcoal);
    margin-bottom: 1rem;
    position: relative;
}

.board-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.board-card {
    background: var(--card-white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.board-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--epsf-blue);
}

.president-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.board-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: var(--spacing-md);
    border: 3px solid var(--border-color);
    transition: all var(--transition-normal);
}

.board-card:hover .board-photo {
    border-color: var(--epsf-blue);
    transform: scale(1.05);
}

.board-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--charcoal);
    margin: 0 0 var(--spacing-xs) 0;
}

.board-card p {
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    margin: 0;
    font-weight: 500;
}

/* Enhanced Timeline Section - World Class Animations */
.timeline-section {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

/* Timeline Background Elements */
.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 25% 25%, rgba(0, 82, 212, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 75% 75%, rgba(255, 235, 59, 0.04) 0%, transparent 40%);
    animation: timelineBackgroundFloat 20s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes timelineBackgroundFloat {
    0%, 100% { 
        transform: translate(0, 0) scale(1); 
        opacity: 0.6;
    }
    50% { 
        transform: translate(-10px, -10px) scale(1.1); 
        opacity: 0.8;
    }
}

.timeline-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-2xl);
    position: relative;
    z-index: 2;
}

.timeline-section h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: var(--spacing-3xl);
    letter-spacing: -0.025em;
    position: relative;
    animation: timelineTitleSlideIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.5s both;
}

@keyframes timelineTitleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.timeline-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-yellow), transparent);
    border-radius: 2px;
    animation: timelineTitleUnderline 3s ease-in-out infinite;
}

@keyframes timelineTitleUnderline {
    0%, 100% { 
        width: 80px; 
        opacity: 0.7; 
    }
    50% { 
        width: 120px; 
        opacity: 1; 
    }
}

.timeline-centered {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    animation: timelineContainerSlideIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
}

@keyframes timelineContainerSlideIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(180deg, 
        var(--brand-blue) 0%, 
        rgba(0, 82, 212, 0.8) 25%, 
        rgba(255, 235, 59, 0.6) 50%, 
        rgba(0, 82, 212, 0.8) 75%, 
        var(--brand-blue) 100%);
    transform: translateX(-50%);
    border-radius: 3px;
    box-shadow: 
        0 0 20px rgba(0, 82, 212, 0.3),
        inset 0 0 10px rgba(255, 255, 255, 0.1);
    animation: timelineLineGlow 4s ease-in-out infinite;
}

@keyframes timelineLineGlow {
    0%, 100% { 
        box-shadow: 
            0 0 20px rgba(0, 82, 212, 0.3),
            inset 0 0 10px rgba(255, 255, 255, 0.1);
    }
    50% { 
        box-shadow: 
            0 0 30px rgba(0, 82, 212, 0.5),
            0 0 15px rgba(255, 235, 59, 0.3),
            inset 0 0 15px rgba(255, 255, 255, 0.2);
    }
}

.timeline-item {
    position: relative;
    margin-bottom: var(--spacing-3xl);
    opacity: 0;
    transform: translateY(50px);
    animation: timelineItemSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.timeline-item:nth-child(1) { animation-delay: 1.2s; }
.timeline-item:nth-child(2) { animation-delay: 1.4s; }
.timeline-item:nth-child(3) { animation-delay: 1.6s; }
.timeline-item:nth-child(4) { animation-delay: 1.8s; }
.timeline-item:nth-child(5) { animation-delay: 2.0s; }

@keyframes timelineItemSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.timeline-item-left {
    padding-right: 55%;
    text-align: right;
    transform: translateX(-20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item-right {
    padding-left: 55%;
    text-align: left;
    transform: translateX(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item:hover .timeline-item-left {
    transform: translateX(-30px);
}

.timeline-item:hover .timeline-item-right {
    transform: translateX(30px);
}

.timeline-dot {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--brand-blue), rgba(0, 82, 212, 0.8));
    border: 4px solid var(--primary-white);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    box-shadow: 
        0 0 0 6px rgba(0, 82, 212, 0.2),
        0 4px 12px rgba(0, 82, 212, 0.3);
    animation: timelineDotPulse 3s ease-in-out infinite;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(0, 82, 212, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: timelineDotRipple 3s ease-in-out infinite 0.5s;
}

.timeline-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 235, 59, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: timelineDotRipple 3s ease-in-out infinite 1s;
}

@keyframes timelineDotPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 1;
        box-shadow: 
            0 0 0 6px rgba(0, 82, 212, 0.2),
            0 4px 12px rgba(0, 82, 212, 0.3);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2); 
        opacity: 0.8;
        box-shadow: 
            0 0 0 8px rgba(0, 82, 212, 0.3),
            0 6px 20px rgba(0, 82, 212, 0.4),
            0 0 20px rgba(255, 235, 59, 0.3);
    }
}

@keyframes timelineDotRipple {
    0% { 
        transform: translate(-50%, -50%) scale(0.8); 
        opacity: 0.8; 
    }
    100% { 
        transform: translate(-50%, -50%) scale(2); 
        opacity: 0; 
    }
}

.timeline-item:hover .timeline-dot {
    transform: translate(-50%, -50%) scale(1.3);
    box-shadow: 
        0 0 0 8px rgba(0, 82, 212, 0.3),
        0 8px 25px rgba(0, 82, 212, 0.4),
        var(--goldfinch-glow-strong);
    background: linear-gradient(135deg, var(--accent-yellow), rgba(255, 235, 59, 0.8));
}

.timeline-card {
    background: var(--glass-background);
    backdrop-filter: blur(25px);
    border-radius: var(--border-radius-xl);
    padding: 2rem;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: var(--border-radius-xl);
    pointer-events: none;
    z-index: -1;
    transition: all 0.5s ease;
}

.timeline-card::after {
    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.6s ease;
    z-index: -1;
}

.timeline-card:hover::before {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
}

.timeline-card:hover::after {
    left: 100%;
}

.timeline-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        var(--glass-shadow), 
        var(--goldfinch-glow-strong),
        0 20px 40px rgba(0, 82, 212, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
}

.timeline-date {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    color: var(--brand-blue);
    font-weight: 700;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.timeline-date::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, var(--accent-yellow), var(--brand-blue));
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.timeline-card:hover .timeline-date::before {
    opacity: 1;
}

.timeline-date i {
    font-size: var(--font-size-lg);
    animation: timelineDateIcon 2s ease-in-out infinite;
}

@keyframes timelineDateIcon {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.timeline-content h4 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 var(--spacing-md) 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.timeline-card:hover .timeline-content h4 {
    color: var(--brand-blue);
}

.timeline-content p {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.7;
    margin: 0;
    transition: color 0.3s ease;
}

.timeline-card:hover .timeline-content p {
    color: rgba(0, 82, 212, 0.8);
}

/* Timeline Floating Elements */
.timeline-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.timeline-floating-element {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent-yellow);
    border-radius: 50%;
    opacity: 0.6;
    animation: timelineFloatingElement 15s ease-in-out infinite;
}

.timeline-floating-element:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
    background: var(--brand-blue);
}

.timeline-floating-element:nth-child(2) {
    top: 30%;
    right: 15%;
    animation-delay: -3s;
    background: var(--accent-yellow);
}

.timeline-floating-element:nth-child(3) {
    top: 60%;
    left: 10%;
    animation-delay: -6s;
    background: var(--brand-blue);
}

.timeline-floating-element:nth-child(4) {
    top: 80%;
    right: 25%;
    animation-delay: -9s;
    background: var(--accent-yellow);
}

@keyframes timelineFloatingElement {
    0%, 100% { 
        transform: translateY(0px) translateX(0px); 
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-20px) translateX(10px); 
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-10px) translateX(-15px); 
        opacity: 0.5;
    }
    75% { 
        transform: translateY(-25px) translateX(5px); 
        opacity: 0.9;
    }
}

/* Enhanced About Section - World Class Design */
.about-section {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-accent) 100%);
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

/* About Background Elements */
.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 82, 212, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255, 235, 59, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(0, 82, 212, 0.04) 0%, transparent 40%);
    animation: aboutBackgroundFloat 25s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes aboutBackgroundFloat {
    0%, 100% { 
        transform: translate(0, 0) scale(1) rotate(0deg); 
        opacity: 0.7;
    }
    33% { 
        transform: translate(-15px, -15px) scale(1.05) rotate(1deg); 
        opacity: 0.9;
    }
    66% { 
        transform: translate(15px, -10px) scale(0.98) rotate(-1deg); 
        opacity: 0.8;
    }
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-2xl);
    position: relative;
    z-index: 2;
}

.about-section h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    text-align: center;
    color: var(--text-primary);
    margin-bottom: var(--spacing-3xl);
    letter-spacing: -0.025em;
    position: relative;
    animation: aboutTitleSlideIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

@keyframes aboutTitleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-yellow), transparent);
    border-radius: 2px;
    animation: aboutTitleUnderline 3s ease-in-out infinite;
}

@keyframes aboutTitleUnderline {
    0%, 100% { 
        width: 100px; 
        opacity: 0.7; 
    }
    50% { 
        width: 150px; 
        opacity: 1; 
    }
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    animation: aboutContentSlideIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

@keyframes aboutContentSlideIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.about-text {
    animation: aboutTextSlideIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.9s both;
}

@keyframes aboutTextSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-text p {
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 1px 2px rgba(0, 82, 212, 0.05);
    position: relative;
    padding-left: var(--spacing-md);
}

.about-text p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 3px;
    height: calc(100% - 1em);
    background: linear-gradient(180deg, var(--accent-yellow), var(--brand-blue));
    border-radius: 2px;
    opacity: 0.7;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text p:first-child {
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    font-weight: 600;
    color: var(--brand-blue);
    margin-bottom: var(--spacing-xl);
}

.about-text p:first-child::before {
    width: 4px;
    background: var(--accent-yellow);
    opacity: 1;
}

.features {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    animation: featuresSlideIn 1s cubic-bezier(0.4, 0, 0.2, 1) 1.2s both;
}

@keyframes featuresSlideIn {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature {
    background: var(--glass-background);
    backdrop-filter: blur(25px);
    border-radius: var(--border-radius-xl);
    padding: 2.5rem;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    transform: translateY(0);
    opacity: 0;
    animation: featureSlideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.feature:nth-child(1) { animation-delay: 1.5s; }
.feature:nth-child(2) { animation-delay: 1.7s; }
.feature:nth-child(3) { animation-delay: 1.9s; }

@keyframes featureSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: var(--border-radius-xl);
    pointer-events: none;
    z-index: -1;
    transition: all 0.5s ease;
}

.feature::after {
    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.6s ease;
    z-index: -1;
}

.feature:hover::before {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 215, 0, 0.05));
}

.feature:hover::after {
    left: 100%;
}

.feature:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        var(--glass-shadow), 
        var(--goldfinch-glow-strong),
        0 25px 50px rgba(0, 82, 212, 0.15);
    border-color: rgba(255, 215, 0, 0.4);
}

.feature i {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--brand-blue);
    margin-bottom: var(--spacing-lg);
    display: block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature i::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(0, 82, 212, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature:hover i {
    color: var(--accent-yellow);
    transform: scale(1.1) rotate(5deg);
}

.feature:hover i::before {
    opacity: 1;
}

.feature h3 {
    font-size: clamp(1.3rem, 3vw, 1.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 var(--spacing-md) 0;
    line-height: 1.3;
    transition: color 0.3s ease;
    position: relative;
}

.feature h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-yellow);
    border-radius: 1px;
    transition: width 0.4s ease;
}

.feature:hover h3 {
    color: var(--brand-blue);
}

.feature:hover h3::after {
    width: 60px;
}

.feature p {
    font-size: clamp(1rem, 2.2vw, 1.1rem);
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.7;
    margin: 0;
    transition: color 0.3s ease;
}

.feature:hover p {
    color: rgba(0, 82, 212, 0.8);
}

.professional-about {
    display: grid;
    grid-template-columns: 1fr 24px 1fr;
    gap: var(--spacing-3xl);
    align-items: stretch;
}
.about-divider {
    width: 2px;
    background: linear-gradient(180deg, var(--accent-yellow), var(--brand-blue));
    border-radius: 1px;
    margin: 0 auto;
    min-height: 300px;
    opacity: 0.15;
}
.professional-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl) var(--spacing-lg);
    align-items: stretch;
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .hero-container,
    .board-container,
    .timeline-container,
    .about-container {
        padding: 0 var(--spacing-lg);
    }
    
    .hero-cta-buttons {
        gap: var(--spacing-md);
    }
    
    .hero-stats {
        gap: var(--spacing-xl);
    }
}

@media (max-width: 1024px) {
    .hero-brand-title {
        font-size: clamp(2.5rem, 7vw, 4rem);
    }
    
    .hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 2.2vw, 1.2rem);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    .professional-about {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    .about-divider {
        display: none;
    }
    .professional-features {
        grid-template-columns: 1fr;
    }
    
    .timeline-line {
        left: 2rem;
    }
    
    .timeline-item-left,
    .timeline-item-right {
        padding-left: 4rem;
        padding-right: 0;
        text-align: left;
    }
    
    .timeline-dot {
        left: 2rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: var(--spacing-lg);
    }
    
    .hero-stat {
        min-width: 100px;
        flex: 1;
    }
    
    .board-section h2 {
        font-size: 1.8rem;
    }
    
    .board-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 1rem;
    }
    
    .board-card {
        padding: 1.25rem 0.75rem;
        min-height: 160px;
    }
    
    .board-photo {
        width: 65px;
        height: 65px;
    }
    
    .board-card h3 {
        font-size: 0.9rem;
    }
    
    .board-card p {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 80px;
        min-height: 90vh;
        background-attachment: scroll; /* Disable parallax on mobile */
    }
    
    .hero::before {
        opacity: 0.8; /* Reduce overlay opacity on mobile */
    }
    
    .hero::after {
        opacity: 0.6; /* Reduce secondary overlay opacity on mobile */
    }
    
    .hero-container,
    .board-container,
    .timeline-container,
    .about-container {
        padding: 0 var(--spacing-md);
    }
    
    .hero-brand-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
    
    .hero-title {
        font-size: clamp(1.8rem, 4.5vw, 2.5rem);
    }
    
    .hero-subtitle {
        font-size: clamp(0.95rem, 2vw, 1.1rem);
    }
    
    .hero-logo {
        width: 100px;
        height: 100px;
    }
    
    .board-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .board-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 0.75rem;
    }
    
    .board-card {
        padding: 1rem 0.5rem;
        min-height: 140px;
    }
    
    .board-photo {
        width: 55px;
        height: 55px;
        margin-bottom: 0.75rem;
    }
    
    .board-card h3 {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }
    
    .board-card p {
        font-size: 0.75rem;
    }
    
    .president-badge {
        top: 8px;
        right: 8px;
        padding: 0.2rem 0.5rem;
        font-size: 0.65rem;
    }
    
    .timeline-section h2,
    .about-section h2 {
        font-size: clamp(2rem, 5vw, 3rem);
        margin-bottom: var(--spacing-2xl);
    }
    
    .timeline-card {
        padding: var(--spacing-lg);
    }
    
    .feature {
        padding: var(--spacing-lg);
    }
    
    .section-divider {
        height: 80px;
    }
    
    .hero-cta-buttons {
        gap: var(--spacing-sm);
        flex-direction: column;
    }
    
    .hero-btn {
        padding: var(--spacing-sm) var(--spacing-lg);
        font-size: var(--font-size-base);
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .stat-item {
        padding: var(--spacing-md);
    }
    
    .stat-number {
        font-size: var(--font-size-3xl);
    }
    
    .timeline-item-left,
    .timeline-item-right {
        padding-left: 3rem;
        padding-right: 0;
    }
    
    .timeline-dot {
        left: 1.5rem;
    }
    
    .timeline-line {
        left: 1.5rem;
        width: 4px;
    }
}

@media (max-width: 480px) {
    .hero {
        background-attachment: scroll;
        background-position: center center;
    }
    
    .hero::before {
        opacity: 0.7;
    }
    
    .hero::after {
        opacity: 0.5;
    }
    
    .hero-container,
    .board-container,
    .timeline-container,
    .about-container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero-brand-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }
    
    .hero-title {
        font-size: clamp(1.6rem, 4vw, 2rem);
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 1.8vw, 1rem);
    }
    
    .hero-logo {
        width: 80px;
        height: 80px;
    }
    
    .board-section h2 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .board-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 0.5rem;
    }
    
    .board-card {
        padding: 0.75rem 0.5rem;
        min-height: 120px;
    }
    
    .board-photo {
        width: 45px;
        height: 45px;
        margin-bottom: 0.5rem;
    }
    
    .board-card h3 {
        font-size: 0.75rem;
        margin-bottom: 0.2rem;
    }
    
    .board-card p {
        font-size: 0.65rem;
    }
    
    .president-badge {
        top: 6px;
        right: 6px;
        padding: 0.15rem 0.4rem;
        font-size: 0.6rem;
    }
    
    .timeline-section h2,
    .about-section h2 {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        margin-bottom: var(--spacing-xl);
    }
    
    .timeline-card,
    .feature {
        padding: var(--spacing-md);
    }
    
    .section-divider {
        height: 60px;
    }
    
    .hero-cta-buttons {
        gap: var(--spacing-xs);
    }
    
    .hero-btn {
        padding: var(--spacing-xs) var(--spacing-md);
        font-size: var(--font-size-sm);
        min-height: 48px;
    }
    
    .hero-stats {
        gap: var(--spacing-sm);
    }
    
    .stat-item {
        padding: var(--spacing-sm);
    }
    
    .stat-number {
        font-size: var(--font-size-2xl);
    }
    
    .stat-label {
        font-size: var(--font-size-xs);
    }
    
    .timeline-item-left,
    .timeline-item-right {
        padding-left: 2rem;
        padding-right: 0;
    }
    
    .timeline-dot {
        left: 1rem;
        width: 12px;
        height: 12px;
    }
    
    .timeline-line {
        left: 1rem;
        width: 3px;
    }
    
    .about-text p {
        font-size: var(--font-size-sm);
    }
    
    .about-text p::before {
        left: -1rem;
        width: 0.5rem;
        height: 0.5rem;
    }
    
    .about-text p:first-child::before {
        left: -15px;
    }
} 

/* ===== NEW SECTIONS STYLES ===== */

/* Services Showcase Section */
.services-showcase-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.services-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: servicesBackgroundFloat 20s ease-in-out infinite;
}

@keyframes servicesBackgroundFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.services-showcase-section h2 {
    text-align: center;
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.section-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
}

.feature-tag {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Statistics Section */
.statistics-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    position: relative;
    overflow: hidden;
}

.statistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.2;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.statistics-section h2 {
    text-align: center;
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 60px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin-bottom: 8px;
}

.stat-description {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.4;
}

/* News & Events Section */
.news-events-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.news-events-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-events-section h2 {
    text-align: center;
    color: #1e3a8a;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 60px;
}

.news-events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.news-section h3,
.events-section h3 {
    color: #1e3a8a;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.news-section h3 i,
.events-section h3 i {
    color: #3b82f6;
}

.news-list,
.events-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.news-item,
.event-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.news-item:hover,
.event-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.news-date,
.event-date {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    min-width: 60px;
    flex-shrink: 0;
}

.news-date .day,
.event-date .day {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}

.news-date .month,
.event-date .month {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
}

.news-content,
.event-content {
    flex: 1;
}

.news-content h4,
.event-content h4 {
    color: #1e3a8a;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.news-content p,
.event-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-link,
.event-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.news-link:hover,
.event-link:hover {
    color: #1e3a8a;
}

.section-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
    margin-top: 30px;
    transition: all 0.3s ease;
}

.section-cta:hover {
    color: #1e3a8a;
    transform: translateX(5px);
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="quotes" width="50" height="50" patternUnits="userSpaceOnUse"><text x="25" y="30" text-anchor="middle" fill="rgba(255,255,255,0.05)" font-size="20">"</text></pattern></defs><rect width="100" height="100" fill="url(%23quotes)"/></svg>');
    opacity: 0.3;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.testimonials-section h2 {
    text-align: center;
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 60px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(102, 126, 234, 0.2);
    font-family: serif;
}

.testimonial-card.animate-in {
    animation: testimonialSlideIn 0.6s ease-out forwards;
}

@keyframes testimonialSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.testimonial-content {
    margin-bottom: 25px;
    padding-left: 30px;
}

.testimonial-content p {
    color: #333;
    line-height: 1.6;
    font-style: italic;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-left: 30px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #667eea;
}

.author-info h4 {
    color: #1e3a8a;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-section h2 {
    text-align: center;
    color: #1e3a8a;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3,
.contact-form h3 {
    color: #1e3a8a;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.contact-item i {
    font-size: 1.5rem;
    color: #3b82f6;
    margin-top: 5px;
}

.contact-item h4 {
    color: #1e3a8a;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-item p {
    color: #666;
    line-height: 1.5;
}

.contact-item a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #1e3a8a;
}

.social-links-contact h4 {
    color: #1e3a8a;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.contact-form-element {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.contact-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Responsive Design for New Sections */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .news-events-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .services-showcase-section h2,
    .statistics-section h2,
    .news-events-section h2,
    .testimonials-section h2,
    .contact-section h2 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card,
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .news-item,
    .event-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .news-date,
    .event-date {
        align-self: flex-start;
    }
    
    .contact-form-element {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .services-showcase-section h2,
    .statistics-section h2,
    .news-events-section h2,
    .testimonials-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .social-icons a {
        width: 40px;
        height: 40px;
    }
} 