/* Services Page Specific Styles */

/* Services Intro */
/*
.services-intro {
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.services-intro .container {
    max-width: 800px;
}

.services-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Services Grid */
/*
.services-grid {
    padding: var(--spacing-xl) 0;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.service-Athletes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    gap: var(--spacing-lg);
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition-standard);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: var(--spacing-md);
}

.service-icon img {
    width: 70px;
    height: 70px;
}

.service-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--navy);
}

.service-card p {
    margin-bottom: var(--spacing-md);
    min-height: 80px;
}

/* Process Section */
/*
.process {
    padding: var(--spacing-xl) 0;
    background-color: var(--light-gray);
    text-align: center;
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md);
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    transition: var(--transition-quick);
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--navy);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: var(--spacing-md);
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 5px;
    color: var(--navy);
}

.step-content p {
    margin-bottom: 0;
}

/* Responsive Styles */
/*
@media (max-width: 767px) {
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .service-card p {
        min-height: auto;
    }
} 
*/








/* Services Page Specific Styles */

/* Services Hero Section */
.services-hero {
    position: relative;
    height: 90vh;
    min-height: 700px;
    background-image: linear-gradient(135deg, 
        rgba(0, 34, 68, 0.85) 0%, 
        rgba(0, 34, 68, 0.7) 50%, 
        rgba(212, 175, 55, 0.3) 100%),
        url('https://images.pexels.com/photos/3760067/pexels-photo-3760067.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 34, 68, 0.8) 0%, 
        rgba(0, 34, 68, 0.6) 50%, 
        rgba(212, 175, 55, 0.2) 100%);
    z-index: 1;
}

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

.hero-content {
    max-width: 900px;
    animation: fadeIn 1.2s ease-out;
}

.services-hero h1 {
    font-size: 3.8rem;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-xl);
    font-weight: 300;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.services-hero .btn {
    font-size: 1.1rem;
    padding: 18px 36px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Services Grid */
.services-grid {
    padding: var(--spacing-xxl) 0;
    background-color: var(--white);
    text-align: center;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-lg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: var(--transition-standard);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--light-gray);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--navy-gradient);
    transform: scaleX(0);
    transition: var(--transition-standard);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--gold);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    margin-bottom: var(--spacing-md);
}

.service-icon img {
    width: 70px;
    height: 70px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: var(--transition-standard);
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
}

.service-card h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--navy);
    font-size: 1.4rem;
}

.service-card p {
    margin-bottom: var(--spacing-md);
    line-height: 1.7;
    color: var(--dark-gray);
    min-height: 100px;
    display: flex;
    align-items: center;
}

.service-card .btn {
    margin-top: auto;
}

/* Process Flow Section */
.process-flow {
    padding: var(--spacing-xxl) 0;
    background-color: var(--light-gray);
    text-align: center;
}

.process-timeline {
    display: flex;
    justify-content: space-between;

    align-items: flex-start;

    max-width: 1000px;
    margin: var(--spacing-xl) auto 0;
    position: relative;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 2;

    justify-content: flex-start;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--navy-gradient);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--gold);
    transition: var(--transition-standard);
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.step-content h3 {
    color: var(--navy);
    margin-bottom: var(--spacing-xs);
    font-size: 1.4rem;
}

.step-content p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin-bottom: 0;
    max-width: 150px;
}

.process-connector {
    flex: 0 0 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--navy) 100%);
    position: relative;
    z-index: 1;

    align-self: center;
}

/* CTA Services Section */
.cta-services {
    padding: var(--spacing-xxl) 0;
    background: var(--navy-gradient);
    color: var(--white);
    text-align: center;
}

.cta-services h2 {
    color: var(--white);
    margin-bottom: var(--spacing-md);
    font-size: 2.8rem;
}

.cta-services p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    opacity: 0.95;
}

.cta-services .btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy);
    font-weight: 600;
    padding: 16px 32px;
    font-size: 1.1rem;
}

.cta-services .btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .services-hero h1 {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .service-cards {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .process-timeline {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .process-connector {
        width: 4px;
        height: 60px;
        background: linear-gradient(180deg, var(--gold) 0%, var(--navy) 100%);
    }
    
    .cta-services h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 767px) {
    .services-hero {
        height: 80vh;
        min-height: 600px;
    }
    
    .services-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-cards {
        grid-template-columns: 1fr;
    }
    
    .service-card p {
        min-height: auto;
    }
    
    .step-content p {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .process-timeline {
        padding: 0 var(--spacing-md);
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
}