/* Base Styles */
:root {
    /* Colors */
    --primary-red: #DC2626;
    --primary-yellow: #FDE047;
    --accent-red: #EF4444;
    --accent-yellow: #FACC15;
    --dark: #1F2937;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --gray-50: #F9FAFB;
    --white: #FFFFFF;
    --black: #000000;
    
    /* Typography */
    --font-sans: 'Montserrat', system-ui, -apple-system, sans-serif;
    --font-heading: 'Montserrat', system-ui, -apple-system, sans-serif;
    --font-script: 'Dancing Script', cursive;
    
    /* Spacing */
    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-5: 1.25rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-10: 2.5rem;
    --spacing-12: 3rem;
    --spacing-16: 4rem;
    --spacing-20: 5rem;
    
    /* Border Radius */
    --rounded-sm: 0.125rem;
    --rounded: 0.25rem;
    --rounded-md: 0.375rem;
    --rounded-lg: 0.5rem;
    --rounded-xl: 0.75rem;
    --rounded-2xl: 1rem;
    --rounded-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.25rem;
}

a {
    color: var(--primary-red);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-red);
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-6);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--rounded-lg);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    line-height: 1.5;
}

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

.btn-primary:hover {
    background-color: var(--accent-red);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--primary-yellow);
    color: var(--dark);
}

.btn-secondary:hover {
    background-color: var(--accent-yellow);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn i {
    margin-left: 0.5rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 70px;
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    margin: 0.5rem 0 0 1.5rem;
    height: 100%;
}

.logo img {
    height: 2.5rem; /* 40px */
    width: auto;
    transition: all 0.3s ease;
    display: block;
}

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

/* Navigation Links */
.desktop-nav {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-end;
    margin-left: auto;
}

.nav-link {
    padding: 0.4rem 0.8rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-900);
    border-radius: var(--rounded);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-red);
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .desktop-nav {
        width: 100%;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
        border-top: 1px solid var(--gray-200);
        justify-content: center;
    }
    
    .nav-link {
        padding: 0.5rem;
        font-size: 0.8rem;
    }
}

.nav-links a {
    color: var(--gray-700);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-red);
    transition: var(--transition);
}

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

.nav-links a.active {
    color: var(--primary-red);
    font-weight: 600;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                      url('https://images.unsplash.com/photo-1522071820081-009c012b0d9a?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: 80px;
    overflow: hidden;
}

.parallax-hero {
    background-attachment: fixed !important;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    color: var(--white);
}

.hero h1 span {
    display: block;
    font-family: var(--font-script);
    color: var(--primary-yellow);
    font-size: 3rem;
    line-height: 1;
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.hero-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.meta-item i {
    color: var(--primary-yellow);
}

/* Section Styles */
.section {
    padding: 60px 0;
    position: relative;
    margin: 30px 0;
}

.section .section-header {
    margin-bottom: 25px;
}

.section .section-subtitle {
    font-size: 1.25rem;
    margin-bottom: 25px;
    color: var(--gray-600);
}

.section.bg-light {
    background-color: var(--gray-50);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header h2 span {
    color: var(--primary-red);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
}

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Story Section */
.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.story-content h2 span {
    color: var(--primary-red);
}

.story-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--gray-600);
}

/* Quote Box */
.quote-box {
    background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
    color: var(--white);
    border-radius: var(--rounded-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.quote-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.quote-box blockquote {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.quote-box cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-yellow);
    position: relative;
    z-index: 1;
}

/* Cards */
.card {
    background-color: var(--white);
    border-radius: var(--rounded-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

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

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.icon-circle {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.icon-circle i {
    color: var(--white);
    font-size: 1.5rem;
}

.icon-circle.yellow {
    background: linear-gradient(135deg, var(--primary-yellow), var(--accent-yellow));
}

.icon-circle.yellow i {
    color: var(--dark);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    background-color: var(--white);
    border-radius: var(--rounded-xl);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.value-icon {
    width: 5rem;
    height: 5rem;
    background-color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

/* Yellow background for every other icon */
.values-grid .value-card:nth-child(even) .value-icon {
    background: var(--primary-yellow);
    color: var(--gray-900);
}

.value-icon i {
    font-size: 2rem;
}

/* Remove any inline styles that might be overriding our colors */
.value-icon[style*="background"] {
    background-color: var(--primary-red) !important;
    color: white !important;
}

.values-grid .value-card:nth-child(even) .value-icon[style*="background"] {
    background: var(--primary-yellow) !important;
    color: var(--gray-900) !important;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-red);
}

.value-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Feature Cards */
.feature-card {
    background: #ffffff;
    border-radius: 0.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, #DC2626, #EF4444);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.75rem;
}

.feature-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.feature-card p {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.625;
    margin: 0;
}

/* Approach Cards */
.approach-card {
    background: #ffffff;
    border-radius: 0.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    height: 100%;
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.approach-icon {
    width: 5rem;
    height: 5rem;
    background-color: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #DC2626;
    font-size: 1.75rem;
}

.approach-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.approach-card p {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.625;
    margin: 0;
}

/* Services Section */
.services-intro {
    max-width: 48rem;
    margin: 0 auto 3rem;
    text-align: center;
}

.services-intro p {
    font-size: 1.125rem;
    color: #4b5563;
    line-height: 1.75;
    margin: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.location-card {
    background: #ffffff;
    border-radius: 0.5rem;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.location-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.location-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: #DC2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.25rem;
}

.location-card h3 {
    font-size: 1.125rem;
    color: #1f2937;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.location-card p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

/* Community Connections */
.community-connections {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 2.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    margin-top: 3rem;
    border: 1px solid #e5e7eb;
}

.community-connections h3 {
    text-align: center;
    color: #1f2937;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.connections-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
    .connections-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.connection-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #f9fafb;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.connection-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.connection-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background-color: #DC2626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.connection-item h4 {
    font-size: 1.125rem;
    color: #1f2937;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.connection-item p {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.testimonial-box {
    background: linear-gradient(135deg, #DC2626, #EF4444);
    color: #ffffff;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

testimonial-box::before {
    content: '\201C';
    position: absolute;
    top: -1rem;
    left: 1rem;
    font-family: Georgia, serif;
    font-size: 8rem;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
    font-weight: 700;
}

testimonial-box p {
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.75;
    position: relative;
    z-index: 1;
    margin: 0;
    font-weight: 500;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-card {
    background-color: var(--white);
    border-radius: var(--rounded-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    padding: 2rem;
}

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

.team-img {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), var(--accent-red));
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-img i {
    font-size: 3rem;
    color: var(--white);
}

.team-img.yellow {
    background: linear-gradient(135deg, var(--primary-yellow), var(--accent-yellow));
}

.team-img.yellow i {
    color: var(--dark);
}

.team-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-red);
}

.team-role {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.team-desc {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    background: linear-gradient(rgba(220, 38, 38, 0.9), rgba(220, 38, 38, 0.9)), 
                url('https://images.unsplash.com/photo-1454165804606-c3da57cac3a6?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    padding: 6rem 0;
    position: relative;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.cta h2 span {
    color: var(--primary-yellow);
}

.cta p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Footer - DISABLED (Using global.css footer styles instead) */
/* All footer styles moved to global.css for consistency across all pages */

/* Responsive Navigation */
@media (max-width: 768px) {
    .navbar {
        height: auto;
        padding: 0.75rem 0;
    }

    .navbar .container {
        flex-direction: column;
        padding: 0 var(--spacing-4);
    }

    .logo {
        margin: 0.5rem 0;
    }

    .nav-links {
        width: 100%;
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem 0;
        border-top: 1px solid var(--gray-200);
        margin-top: 0.5rem;
    }

    .nav-links a {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h1 span {
        font-size: 2.25rem;
    }
    
    .hero p {
        font-size: 1.125rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta p {
        font-size: 1.125rem;
    }
}

@media (max-width: 639px) {
    .hero {
        height: auto;
        min-height: 80vh;
        padding: 8rem 0 4rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero h1 span {
        font-size: 1.75rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .cta h2 {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

@keyframes slideInLeft {
    from { 
        opacity: 0;
        transform: translateX(-50px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from { 
        opacity: 0;
        transform: translateX(50px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

/* Animation Classes */
.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
}

.animate-slide-down {
    animation: slideDown 0.8s ease-out forwards;
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease-out forwards;
}

/* Animation Delays */
.animate-delay-100 { animation-delay: 0.1s; }
.animate-delay-200 { animation-delay: 0.2s; }
.animate-delay-300 { animation-delay: 0.3s; }
.animate-delay-400 { animation-delay: 0.4s; }
.animate-delay-500 { animation-delay: 0.5s; }
.animate-delay-600 { animation-delay: 0.6s; }
.animate-delay-700 { animation-delay: 0.7s; }
.animate-delay-800 { animation-delay: 0.8s; }
.animate-delay-900 { animation-delay: 0.9s; }
.animate-delay-1000 { animation-delay: 1s; }
