/* Rowali Sports International - Sports Services Page Styles */
:root {
    --primary: #008080;       /* Teal - Main brand color */
    --primary-light: #00a0a0; /* Lighter teal */
    --primary-dark: #006666;  /* Darker teal */
    --secondary: #FFE940;     /* Yellow - Accent color */
    --secondary-dark: #e6d100;/* Darker yellow */
    --dark: #001F3F;          /* Navy blue - Dark color */
    --light: #ffffff;         /* White - Background */
    --gray: #6b7280;          /* Gray for text */
    --border: #e5e7eb;        /* Border color */
}

/* Hero Section */
.service-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--light);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1461896836934-ffe607ba8211?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
    opacity: 0.1;
}

.service-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
    position: relative;
}

.service-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    position: relative;
}

/* Service Tabs */
.service-tabs {
    background: var(--light);
    padding: 0;
}

.nav-tabs {
    border: none;
    justify-content: center;
    background: var(--light);
    padding: 0 1rem;
}

.nav-tabs .nav-link {
    border: none;
    color: var(--dark);
    font-weight: 600;
    padding: 1.5rem 2rem;
    margin: 0;
    border-radius: 0;
    position: relative;
}

.nav-tabs .nav-link.active {
    background: var(--light);
    color: var(--primary);
    border-bottom: 3px solid var(--secondary);
}

.nav-tabs .nav-link:not(.active):hover {
    color: var(--primary);
    background: rgba(0, 128, 128, 0.05);
}

/* Service Content */
.service-content {
    padding: 80px 0;
}

.service-section {
    display: none;
}

.service-section.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-header {
    text-align: center;
    margin-bottom: 4rem;
}

.service-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
}

.sports-icon {
    background: var(--primary);
    color: var(--light);
}

.audit-icon {
    background: var(--dark);
    color: var(--light);
}

/* Features Grid */
.features-grid {
    margin: 3rem 0;
}

.feature-card {
    background: var(--light);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--primary);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--light);
    font-size: 1.5rem;
}

.feature-card h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Representation Services */
.representation-services {
    background: rgba(0, 128, 128, 0.05);
    padding: 3rem;
    border-radius: 15px;
    margin: 3rem 0;
    border-left: 4px solid var(--secondary);
}

.service-item {
    background: var(--light);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 233, 64, 0.12);
    border-left: 3px solid var(--secondary);
}

.service-info h5 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.service-info p {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 0;
}

.service-btn {
    background: var(--secondary);
    color: var(--dark);
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.service-btn:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    color: var(--dark);
}

/* Free Resources */
.free-resources {
    background: var(--light);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin: 3rem 0;
    border-left: 4px solid var(--primary);
}

.resource-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(0, 128, 128, 0.05);
    border-radius: 8px;
}

.resource-item i {
    color: var(--primary);
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Audit Checklist */
.checklist-section {
    background: var(--light);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin: 3rem 0;
    border-left: 4px solid var(--dark);
}

.checklist-category {
    margin-bottom: 2.5rem;
}

.checklist-category h4 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary);
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(0, 128, 128, 0.05);
    border-radius: 8px;
}

.checklist-item i {
    color: var(--primary);
    margin-right: 1rem;
    margin-top: 0.2rem;
}

/* Process Steps */
.process-steps {
    margin: 4rem 0;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--dark);
}

.process-step h4 {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* CTA Section */
.service-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--light);
    padding: 80px 0;
    text-align: center;
    border-radius: 15px;
    margin: 4rem 0;
}

.service-cta h2 {
    color: var(--light);
    margin-bottom: 1.5rem;
}

.service-cta p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.cta-button {
    background: var(--secondary);
    color: var(--dark);
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 233, 64, 0.3);
    color: var(--dark);
}

/* Responsive */
@media (max-width: 768px) {
    .service-hero {
        padding: 80px 0 60px;
    }

    .service-hero h1 {
        font-size: 2.2rem;
    }

    .nav-tabs .nav-link {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }

    .representation-services, .free-resources, .checklist-section {
        padding: 2rem;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}