/*===== MOBILE-FIRST PROGRAMS PAGE =====*/

/*===== VARIABLES =====*/
:root {
    --program-gradient: linear-gradient(135deg, #00BCD4 0%, #390000 100%);
    --gradient-light: linear-gradient(135deg, #00BCD4 0%, #0077b6 100%);
    --card-shadow: 0 10px 30px rgba(0, 188, 212, 0.15);
    --card-shadow-hover: 0 20px 50px rgba(0, 188, 212, 0.25);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 16px;
    --border-radius-sm: 12px;
}

/*===== PROGRAMS HERO =====*/
.programs-hero {
    padding: 2rem 1rem 3rem;
    background: white;
    position: relative;
    overflow: hidden;
}

.programs-hero__content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    text-align: center;
    padding: 1rem;
}

.programs-hero__title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #000;
    background: linear-gradient(135deg, #000 0%, #00BCD4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-highlight {
    color: #00BCD4;
    position: relative;
    display: inline-block;
}

.hero-highlight:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00BCD4, transparent);
    border-radius: 2px;
}

.programs-hero__subtitle {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.programs-hero__image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.hero-image-container:hover .programs-hero__image {
    transform: scale(1.05);
}

.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem;
    gap: 1rem;
}

.hero-stat {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: #00BCD4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

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

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 0.25rem;
}

/*===== PROGRAM NAVIGATION =====*/
.program-nav {
    padding: 1rem 0;
    background: #f8f9fa;
    position: sticky;
    top: 60px;
    z-index: 100;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.program-nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.program-nav__title {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.program-nav__title:before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #00BCD4;
    border-radius: 50%;
}

.program-nav__links-wrapper {
    position: relative;
}

.program-nav__links {
    display: flex;
    gap: 0.75rem;
    padding: 0.5rem 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
}

.program-nav__links::-webkit-scrollbar {
    display: none;
}

.program-nav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    background: white;
    border-radius: var(--border-radius-sm);
    color: #555;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid transparent;
    min-width: 140px;
    flex-shrink: 0;
}

.link-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #00BCD4;
    transition: var(--transition);
}

.program-nav__link span {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}

/* Active State */
.program-nav__link.active {
    background: var(--program-gradient);
    color: white;
    border-color: #00BCD4;
    transform: translateY(-2px);
    box-shadow: var(--card-shadow);
}

.program-nav__link.active .link-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: scale(1.1);
}

/* Hover State */
.program-nav__link:hover {
    border-color: #00BCD4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 188, 212, 0.15);
}

.program-nav__link:hover .link-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #00BCD4, #0077b6);
    color: white;
}

/*===== PROGRAMS OVERVIEW CARDS =====*/
.programs-overview {
    padding: 3rem 1rem;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    color: #000;
    margin-bottom: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #000 0%, #00BCD4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.programs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.program-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
    border-color: #00BCD4;
}

.card-header {
    margin-bottom: 1.5rem;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00BCD4, #000);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.program-card h3 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.card-category {
    display: inline-block;
    background: #f8f9fa;
    color: #00BCD4;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.card-body {
    flex: 1;
    margin-bottom: 1.5rem;
}

.card-body p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.card-stat {
    text-align: center;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #00BCD4;
    line-height: 1;
    margin-bottom: 0.25rem;
    font-family: 'Poppins', sans-serif;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
}

.card-footer {
    border-top: 1px solid #f0f0f0;
    padding-top: 1.5rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #00BCD4;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.card-link:hover {
    color: #000;
    gap: 0.75rem;
}

/*===== PROGRAM DETAIL SECTIONS =====*/
.program-detail {
    padding: 3rem 1rem;
    background: white;
}

.program-detail.alt-bg {
    background: #f8f9fa;
}

.program-header {
    text-align: center;
    margin-bottom: 3rem;
}

.program-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #00BCD4, #000);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.program-title {
    font-size: 2.2rem;
    color: #000;
    margin-bottom: 1rem;
    font-weight: 800;
    background: linear-gradient(135deg, #000 0%, #00BCD4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.program-tagline {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.program-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.program-content.reverse {
    flex-direction: column-reverse;
}

.program-media {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.program-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.program-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

.program-video-placeholder,
.program-testimonial,
.program-stats,
.program-locations {
    background: white;
    border-radius: var(--border-radius-sm);
    padding: 1.5rem;
    box-shadow: var(--card-shadow);
    text-align: center;
}

.video-icon {
    font-size: 3rem;
    color: #00BCD4;
    margin-bottom: 1rem;
}

.program-testimonial .testimonial-icon {
    font-size: 2rem;
    color: #00BCD4;
    margin-bottom: 1rem;
}

.program-testimonial p {
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.program-testimonial span {
    font-size: 0.9rem;
    color: #00BCD4;
    font-weight: 600;
}

.program-stats {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #00BCD4;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.stat-text {
    font-size: 0.9rem;
    color: #666;
}

.program-locations h4 {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.locations-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.locations-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #555;
}

.locations-list li i {
    color: #00BCD4;
}

.program-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-section h3 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-section h3 i {
    color: #00BCD4;
}

.info-section p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #555;
    line-height: 1.5;
}

.feature-list li i {
    color: #00BCD4;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.metric {
    text-align: center;
    padding: 1.5rem 1rem;
    background: white;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: #00BCD4;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

.metric-label {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.3;
}

.contact-cta {
    background: linear-gradient(135deg, #00BCD4, #000);
    border-radius: var(--border-radius);
    padding: 2rem;
    color: white;
    box-shadow: var(--card-shadow);
    animation: pulse 2s infinite;
}

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

.cta-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: #00BCD4;
    padding: 0.875rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/*===== PROGRAM COMPARISON =====*/
.program-comparison {
    padding: 3rem 1rem;
    background: white;
}

.comparison-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.comparison-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    box-shadow: var(--card-shadow);
    border: 2px solid transparent;
    transition: var(--transition);
}

.comparison-card:hover {
    border-color: #00BCD4;
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
}

.comparison-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.comparison-header h3 {
    font-size: 1.5rem;
    color: #000;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.comparison-badge {
    display: inline-block;
    background: #f8f9fa;
    color: #00BCD4;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.comparison-body {
    margin-bottom: 1.5rem;
}

.comparison-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
}

.comparison-point i {
    color: #00BCD4;
    width: 20px;
}

.comparison-footer {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid #f0f0f0;
}

.comparison-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #00BCD4;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.comparison-link:hover {
    color: #000;
    gap: 0.75rem;
}

/*===== PROGRAM CONTACT FORM =====*/
.program-contact {
    padding: 3rem 1rem;
    background: #f8f9fa;
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-form-container {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--card-shadow);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #00BCD4;
    font-size: 1.2rem;
    z-index: 1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
    background: white;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00BCD4;
    box-shadow: 0 0 0 3px rgba(0, 188, 212, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, #00BCD4, #000);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: var(--transition);
    margin-top: 1rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow-hover);
}

.form-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-note i {
    color: #00BCD4;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--card-shadow);
}

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

.contact-card-header i {
    font-size: 2rem;
    color: #00BCD4;
}

.contact-card-header h3 {
    font-size: 1.5rem;
    color: #000;
    margin: 0;
}

.contact-card-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: var(--transition);
}

.contact-method:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.method-icon {
    width: 40px;
    height: 40px;
    background: #00BCD4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.method-info {
    flex: 1;
}

.method-info strong {
    display: block;
    color: #000;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.method-info a {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.method-info a:hover {
    color: #00BCD4;
}

.info-tip {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: linear-gradient(135deg, #00BCD4, #000);
    color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
}

.tip-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.tip-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.tip-content p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
    line-height: 1.5;
}

/*===== FINAL CTA =====*/
.final-cta {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #00BCD4, #000);
    color: white;
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.final-cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.cta-btn.primary {
    background: white;
    color: #00BCD4;
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.tertiary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

/*===== RESPONSIVE DESIGN =====*/
@media screen and (min-width: 640px) {
    .programs-hero {
        padding: 3rem 2rem 4rem;
    }
    
    .programs-hero__title {
        font-size: 2.5rem;
    }
    
    .programs-hero__image {
        height: 350px;
    }
    
    .hero-stats {
        padding: 1.5rem;
    }
    
    .program-nav {
        padding: 1rem 2rem;
    }
    
    .programs-overview,
    .program-detail,
    .program-comparison,
    .program-contact {
        padding: 3rem 2rem;
    }
    
    .program-nav__links {
        justify-content: center;
    }
    
    .program-nav__link {
        min-width: 160px;
    }
    
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .comparison-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
}

@media screen and (min-width: 768px) {
    .programs-hero__content {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }
    
    .hero-text {
        text-align: left;
        flex: 1;
    }
    
    .hero-image-container {
        flex: 1;
    }
    
    .program-nav__container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }
    
    .program-nav__title {
        margin-bottom: 0;
        white-space: nowrap;
    }
    
    .program-nav__links {
        justify-content: flex-end;
    }
    
    .program-content {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .program-content.reverse {
        flex-direction: row-reverse;
    }
    
    .program-media {
        flex: 1;
    }
    
    .program-info {
        flex: 1;
    }
    
    .program-image img {
        height: 400px;
    }
    
    .contact-wrapper {
        flex-direction: row;
    }
    
    .contact-form-container {
        flex: 1;
    }
    
    .contact-info-container {
        flex: 1;
    }
}

@media screen and (min-width: 1024px) {
    .programs-hero__title {
        font-size: 3rem;
    }
    
    .programs-hero__subtitle {
        font-size: 1.2rem;
    }
    
    .programs-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .comparison-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .program-title {
        font-size: 2.5rem;
    }
}

@media screen and (min-width: 1200px) {
    .programs-hero,
    .programs-overview,
    .program-detail,
    .program-comparison,
    .program-contact {
        padding: 4rem 0;
    }
    
    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
    }
}

/*===== ANIMATIONS =====*/
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease forwards;
}

.stagger-delay-1 { animation-delay: 0.1s; }
.stagger-delay-2 { animation-delay: 0.2s; }
.stagger-delay-3 { animation-delay: 0.3s; }
.stagger-delay-4 { animation-delay: 0.4s; }

/*===== COUNTER ANIMATIONS =====*/
.counter-animated {
    display: inline-block;
    transition: all 0.3s ease;
}

.counter-complete {
    animation: counterBounce 0.5s ease;
}

@keyframes counterBounce {
    0%, 100% { 
        transform: scale(1); 
        color: #00BCD4;
    }
    50% { 
        transform: scale(1.2); 
        color: #000;
    }
}

/* Ensure counters are visible and properly styled */
.stat-number,
.metric-value,
.stat-value {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: #00BCD4;
}

/* Counter loading state */
[data-count]:not(.counter-complete) {
    opacity: 0.9;
}


@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-left {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-in-right {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}