/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #1e3a8a;
    --secondary-blue: #3b82f6;
    --light-blue: #60a5fa;
    --dark-grey: #1f2937;
    --medium-grey: #4b5563;
    --light-grey: #9ca3af;
    --bg-grey: #f3f4f6;
    --black: #000000;
    --white: #ffffff;
}

html {
    font-size: 90%; /* 10% reduction */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.44; /* 1.6 * 0.9 */
    color: var(--dark-grey);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 18px; /* 20px * 0.9 */
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.125rem 0; /* 1.25rem * 0.9 */
    border-bottom: 1px solid rgba(30, 58, 138, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
    position: relative;
}

.nav-brand h1::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-grey);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-blue);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-grey);
    transition: all 0.3s ease;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1546519638-68e109498ffc?w=1920&q=80'), linear-gradient(135deg, var(--dark-grey) 0%, var(--black) 100%);
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) brightness(0.4);
    position: relative;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.7) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.3) 0%, transparent 50%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    color: var(--white);
    max-width: 700px;
    padding: 2rem 0;
}

.hero-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--light-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subheadline {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--secondary-blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Animated Counters */
.hero-counters {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.counter-item {
    display: flex;
    flex-direction: column;
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-blue);
    line-height: 1;
}

.counter-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Floating UI Elements */
.floating-ui {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
}

.floating-timer,
.floating-video,
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 6s ease-in-out infinite;
    pointer-events: auto;
}

.floating-timer {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.floating-video {
    top: 50%;
    right: 15%;
    animation-delay: 2s;
}

.floating-badge {
    bottom: 20%;
    right: 8%;
    animation-delay: 4s;
}

.floating-timer .timer-icon,
.floating-video .video-icon,
.floating-badge .badge-icon {
    font-size: 2rem;
}

.timer-content,
.video-content,
.badge-content {
    display: flex;
    flex-direction: column;
}

.timer-label,
.video-label,
.badge-label {
    font-size: 0.75rem;
    color: var(--medium-grey);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.timer-value,
.video-status,
.badge-status {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-top: 0.25rem;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* Players Section */
.players-section {
    padding: 3rem 0;
    background-color: var(--bg-grey);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-grey);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--medium-grey);
    max-width: 600px;
    margin: 0 auto;
}

.players-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.player-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.player-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.player-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-grey) 100%);
    position: relative;
}

.player-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.player-card:hover .player-image img {
    transform: scale(1.1);
}

.player-info {
    padding: 1.5rem;
}

.player-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 0.5rem;
}

.player-sport {
    font-size: 1rem;
    color: var(--secondary-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.player-team {
    font-size: 0.9rem;
    color: var(--medium-grey);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.icon-inline {
    display: inline-block;
    vertical-align: middle;
    color: currentColor;
    flex-shrink: 0;
}

.player-stats {
    list-style: none;
    margin-bottom: 1rem;
    padding: 0;
}

.player-stats li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.85rem;
    color: var(--medium-grey);
}

.player-stats li:last-child {
    margin-bottom: 0;
}

.stat-icon {
    color: var(--secondary-blue);
    flex-shrink: 0;
}

.btn-card {
    width: 100%;
    text-align: center;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 0.75rem 1.5rem;
}

.btn-card:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-2px);
}

/* Services Section */
.services-section {
    padding: 3rem 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--light-blue);
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-card .service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.service-card .service-icon svg {
    width: 64px;
    height: 64px;
}

.service-card-1 .service-icon {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(59, 130, 246, 0.1));
    color: var(--primary-blue);
}

.service-card-2 .service-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(96, 165, 250, 0.1));
    color: var(--secondary-blue);
}

.service-card-3 .service-icon {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.1), rgba(75, 85, 99, 0.1));
    color: var(--dark-grey);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1rem;
    color: var(--medium-grey);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-highlights {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.service-highlights li {
    font-size: 0.9rem;
    color: var(--medium-grey);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-blue);
    font-weight: 700;
}

.service-card-1 .service-highlights li::before {
    color: var(--primary-blue);
}

.service-card-3 .service-highlights li::before {
    color: var(--dark-grey);
}

.btn-service {
    width: 100%;
    text-align: center;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
}

.service-card-1 .btn-service {
    background-color: var(--primary-blue);
    color: var(--white);
}

.service-card-1 .btn-service:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.4);
}

.service-card-2 .btn-service {
    background-color: var(--secondary-blue);
    color: var(--white);
}

.service-card-2 .btn-service:hover {
    background-color: var(--light-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.service-card-3 .btn-service {
    background-color: var(--dark-grey);
    color: var(--white);
}

.service-card-3 .btn-service:hover {
    background-color: var(--medium-grey);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 41, 55, 0.4);
}

/* How It Works Section - Homepage */
.how-it-works-section {
    padding: 2.7rem 0;
    background-color: var(--dark-grey);
}

.how-it-works-section .section-title {
    color: var(--white) !important;
    font-size: 2.7rem;
}

.how-it-works-section .step-title {
    color: var(--white) !important;
    font-size: 1.35rem;
}

.how-it-works-section .step-description {
    color: var(--light-grey) !important;
    font-size: 1.05rem;
}

/* Ensure homepage steps-container keeps dark background */
.steps-container {
    background-color: transparent;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.8rem;
    margin-top: 2.7rem;
    align-items: start;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.step-number {
    width: 54px;
    height: 54px;
    border-radius: 10.8px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 1.125rem;
    box-shadow: 0 3.6px 13.5px rgba(30, 58, 138, 0.2);
    transition: all 0.3s ease;
}

.step-item:hover .step-number {
    transform: translateY(-4.5px);
    box-shadow: 0 7.2px 22.5px rgba(30, 58, 138, 0.4);
}

.step-content {
    max-width: 100%;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 0.5rem;
}

.step-description {
    font-size: 0.9rem;
    color: var(--medium-grey);
    line-height: 1.5;
}

.step-connector {
    display: none;
}

/* CTA Banner */
.cta-banner {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.cta-banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1546519638-68e109498ffc?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    filter: grayscale(100%) brightness(0.6);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
}

.cta-subheadline-inline {
    font-size: 1.1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    display: inline;
    margin-left: 0.5rem;
}

.cta-subheadline {
    display: none;
}

.btn-cta {
    background-color: var(--white);
    color: var(--primary-blue);
    padding: 1.125rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: var(--bg-grey);
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background-color: var(--dark-grey);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-blue);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.footer-description {
    font-size: 0.9rem;
    color: var(--light-grey);
    line-height: 1.6;
    max-width: 300px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--light-grey);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary-blue);
    transform: translateX(5px);
}

.footer-social a {
    display: flex;
    align-items: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--light-grey);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-subheadline {
        font-size: 1.1rem;
    }

    .hero-counters {
        flex-direction: column;
        gap: 1.5rem;
    }


    .players-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .cta-title {
        font-size: 1.5rem;
        display: block;
    }

    .cta-subheadline-inline {
        display: block;
        margin-left: 0;
        margin-top: 0.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .players-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 2rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
    }

    .cta-banner-image {
        width: 100%;
        opacity: 0.15;
    }

    .cta-title {
        font-size: 1.25rem;
    }

    .cta-subheadline-inline {
        font-size: 0.9rem;
        display: block;
        margin-left: 0;
        margin-top: 0.5rem;
    }
}

/* Players List Page Styles */
.page-header {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    background-image: url('https://images.unsplash.com/photo-1546519638-68e109498ffc?w=1920&q=80'), linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: var(--white);
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(59, 130, 246, 0.85) 100%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}

.page-intro {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
}

/* Players Layout */
.players-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Filters Sidebar */
.filters-sidebar {
    background-color: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.filters-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 1.25rem;
}

.search-bar-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-input {
    width: 100%;
    padding: 0.625rem 0.625rem 0.625rem 2.25rem;
    border: 2px solid var(--bg-grey);
    border-radius: 6px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.search-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--medium-grey);
    pointer-events: none;
}

.filters-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dark-grey);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-select,
.filter-input {
    padding: 0.625rem;
    border: 2px solid var(--bg-grey);
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--dark-grey);
    background-color: var(--white);
    transition: all 0.3s ease;
}

.players-content {
    width: 100%;
}

.filter-select:focus,
.filter-input:focus {
    outline: none;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Players List Section */
.players-list-section {
    padding: 3rem 0;
    background-color: var(--bg-grey);
}

.players-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.player-list-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.player-list-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.player-list-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-grey) 100%);
    position: relative;
}

.player-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.player-list-card:hover .player-list-image img {
    transform: scale(1.1);
}

.verified-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--white);
    border-radius: 50%;
    padding: 0.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.player-list-info {
    padding: 1rem;
}

.player-list-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 0.5rem;
}

.player-list-details {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.player-list-sport {
    font-size: 0.85rem;
    color: var(--secondary-blue);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.player-list-country {
    font-size: 0.8rem;
    color: var(--medium-grey);
}

.player-list-team {
    font-size: 0.8rem;
    color: var(--medium-grey);
    margin-bottom: 0.75rem;
}

.player-services {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
    padding: 0.75rem 0;
    border-top: 1px solid var(--bg-grey);
    border-bottom: 1px solid var(--bg-grey);
    flex-wrap: wrap;
    justify-content: space-around;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: var(--medium-grey);
}

.player-services .service-icon {
    width: 16px;
    height: 16px;
    color: var(--secondary-blue);
    flex-shrink: 0;
}

.btn-player-card {
    width: 100%;
    text-align: center;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 0.625rem 1rem;
    font-weight: 600;
    font-size: 0.85rem;
}

.btn-player-card:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-2px);
}

/* Player Card Hover Overlay */
.player-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.95) 0%, rgba(59, 130, 246, 0.95) 100%);
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 10;
}

.player-list-card:hover .player-card-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
}

.overlay-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.overlay-stats {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
    display: inline-block;
}

.overlay-stats li {
    padding: 0.5rem 0;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.overlay-stats li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--white);
    font-weight: 700;
}

.overlay-bio {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-overlay {
    background-color: var(--white);
    color: var(--primary-blue);
    padding: 0.875rem 2rem;
    font-weight: 700;
}

.btn-overlay:hover {
    background-color: var(--bg-grey);
    transform: translateY(-2px);
}

/* Responsive for Players List */
@media (max-width: 1024px) {
    .players-layout {
        grid-template-columns: 240px 1fr;
        gap: 1.5rem;
    }

    .filters-sidebar {
        padding: 1.25rem;
    }
}

@media (max-width: 1024px) {
    .players-list-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .page-intro {
        font-size: 1.1rem;
    }

    .players-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .filters-sidebar {
        position: relative;
        top: 0;
        max-height: none;
    }

    .filters-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .players-list-grid {
        grid-template-columns: 1fr;
    }

    .player-card-overlay {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .filters-list {
        grid-template-columns: 1fr;
    }
}

/* Player Detail Page Styles */
.player-summary {
    padding: 3rem 0;
    background-color: var(--bg-grey);
}

.summary-content {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    align-items: start;
}

.player-main-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.player-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.player-summary-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.player-main-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-grey);
    margin: 0;
}

.player-main-details {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.player-main-team {
    font-size: 1.1rem;
    color: var(--medium-grey);
    font-weight: 600;
}

.player-main-sport {
    font-size: 1rem;
    color: var(--secondary-blue);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.player-stats-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--medium-grey);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.player-tagline {
    font-size: 1.1rem;
    color: var(--dark-grey);
    font-style: italic;
    line-height: 1.6;
    padding: 1.5rem;
    background-color: var(--white);
    border-left: 4px solid var(--secondary-blue);
    border-radius: 8px;
    margin: 0;
}

/* Bio Section */
.bio-section {
    padding: 2.7rem 0;
    background-color: var(--white);
}

.section-heading {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-grey);
    margin-bottom: 2rem;
}

.bio-content {
    max-width: 800px;
}

.bio-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--medium-grey);
    margin-bottom: 1.5rem;
}

.bio-content p:last-child {
    margin-bottom: 0;
}

/* Player Highlights List (replaces stats) */
.player-highlights-list {
    margin: 1.5rem 0;
}

.highlights-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 1.125rem;
}

.highlights-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.highlights-items li {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    font-size: 0.99rem;
    color: var(--medium-grey);
}

.highlight-icon {
    color: var(--primary-blue);
    flex-shrink: 0;
}

/* Player Social Links */
.player-social-links {
    display: flex;
    gap: 1.125rem;
    margin: 1.125rem 0;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--bg-grey);
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* Video Highlights Thumbnails Carousel */
.video-highlights-section {
    padding: 2.7rem 0;
    background-color: var(--white);
}

.video-thumbnails-container {
    position: relative;
    margin-top: 1.8rem;
}

.video-thumbnails-wrapper {
    overflow: hidden;
    border-radius: 12px;
}

.video-thumbnails-track {
    display: flex;
    gap: 1.125rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.45rem 0;
}

.video-thumbnails-track::-webkit-scrollbar {
    display: none;
}

.video-thumbnail-item {
    flex-shrink: 0;
    width: 320px;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.video-thumbnail-item:hover {
    transform: scale(1.05);
}

.video-thumbnail-image {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background-color: var(--bg-grey);
    border-radius: 12px;
    overflow: hidden;
}

.video-thumbnail-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    transition: transform 0.3s ease;
}

.video-thumbnail-item:hover .video-play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

/* Photo Gallery Thumbnails Carousel */
.gallery-section {
    padding: 2.7rem 0;
    background-color: var(--bg-grey);
}

.photo-thumbnails-container {
    position: relative;
    margin-top: 1.8rem;
}

.photo-thumbnails-wrapper {
    overflow: hidden;
    border-radius: 12px;
}

.photo-thumbnails-track {
    display: flex;
    gap: 1.125rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.45rem 0;
}

.photo-thumbnails-track::-webkit-scrollbar {
    display: none;
}

.photo-thumbnail-item {
    flex-shrink: 0;
    width: 200px;
    height: 150px;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.photo-thumbnail-item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.photo-thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: 700;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 1.125rem;
}

.carousel-next {
    right: 1.125rem;
}

/* Video Modal Fullscreen */
.modal-video {
    max-width: 90vw;
    max-height: 90vh;
    width: 100%;
    padding: 0;
    background: transparent;
}

.video-player-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background-color: var(--black);
    border-radius: 12px;
    overflow: hidden;
}

.video-player-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.modal-video .modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 2rem;
    z-index: 1000;
}

/* Photo Fullscreen Modal */
.modal-photo {
    max-width: 95vw;
    max-height: 95vh;
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.photo-fullscreen-container {
    max-width: 100%;
    max-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-fullscreen-container img {
    max-width: 100%;
    max-height: 95vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.photo-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    font-weight: 700;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.photo-nav-btn:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.photo-prev {
    left: 1.125rem;
}

.photo-next {
    right: 1.125rem;
}

.modal-photo .modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 2rem;
    z-index: 1000;
}

/* Duration Selection Styles */
.duration-selection {
    margin-bottom: 2.25rem;
}

.duration-selection h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 1.125rem;
}

.duration-options {
    display: flex;
    gap: 1.125rem;
    flex-wrap: wrap;
}

.duration-option-pill {
    flex: 1;
    min-width: 140px;
    padding: 1rem;
    background-color: var(--white);
    border: 2px solid var(--light-grey);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.duration-option-pill:hover {
    border-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.15);
}

.duration-option-pill.selected {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(30, 58, 138, 0.3);
}

.duration-price {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.duration-time {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--medium-grey);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.duration-option-pill.selected .duration-price {
    color: var(--white);
}

.duration-option-pill.selected .duration-time {
    color: var(--white);
}

/* Payment Gateway Styles */
.payment-section {
    padding: 3.6rem 0;
    background-color: var(--bg-grey);
    min-height: calc(100vh - 200px);
}

.payment-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: 16px;
    padding: 2.7rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.payment-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--dark-grey);
    margin-bottom: 2.25rem;
    text-align: center;
}

.order-summary {
    background-color: var(--bg-grey);
    border-radius: 12px;
    padding: 1.8rem;
    margin-bottom: 2.25rem;
}

.order-summary h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 1.35rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.summary-item:last-of-type {
    border-bottom: none;
}

.summary-label {
    font-weight: 600;
    color: var(--medium-grey);
}

.summary-value {
    font-weight: 700;
    color: var(--dark-grey);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 1.35rem 0 0;
    margin-top: 1.35rem;
    border-top: 2px solid var(--primary-blue);
}

.total-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-grey);
}

.total-amount {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.payment-form h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 1.35rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.125rem;
}

.btn-payment {
    width: 100%;
    padding: 1.125rem;
    font-size: 1.125rem;
    margin-top: 1.8rem;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Player Services Section */
.player-services-section {
    padding: 3rem 0;
    background-color: var(--white);
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-detail-card {
    background-color: var(--white);
    border: 2px solid var(--bg-grey);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    border-color: var(--secondary-blue);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
    transform: translateY(-5px);
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 12px;
    color: var(--primary-blue);
}

.service-detail-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 1.5rem;
}

.service-pricing {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.price-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background-color: var(--bg-grey);
    border-radius: 8px;
    min-width: 80px;
}

.price-option.single-price,
.price-option.contact-price {
    min-width: 120px;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
}

.price-duration {
    font-size: 0.85rem;
    color: var(--medium-grey);
    margin-top: 0.5rem;
}

.service-detail-description {
    font-size: 0.95rem;
    color: var(--medium-grey);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-service-detail {
    width: 100%;
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn-service-detail:hover {
    background-color: var(--secondary-blue);
    transform: translateY(-2px);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background-color: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: var(--medium-grey);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--dark-grey);
}

.modal-content h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark-grey);
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    font-size: 0.95rem;
    color: var(--medium-grey);
    margin-bottom: 2rem;
}

/* Time Slots */
.time-slots {
    margin-bottom: 2rem;
}

.time-slot-group {
    margin-bottom: 2rem;
}

.time-slot-group h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 1rem;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.75rem;
}

.time-slot-btn {
    padding: 0.75rem 1rem;
    background-color: var(--bg-grey);
    border: 2px solid var(--bg-grey);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-grey);
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-slot-btn:hover {
    border-color: var(--secondary-blue);
    background-color: rgba(59, 130, 246, 0.1);
    color: var(--primary-blue);
}

.time-slot-btn.selected {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    color: var(--white);
}

/* Form Styles */
.modal-form {
    margin-top: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-grey);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--bg-grey);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--dark-grey);
    background-color: var(--white);
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input textarea {
    resize: vertical;
    min-height: 100px;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--bg-grey);
}

/* Responsive for Player Detail */
@media (max-width: 1024px) {
    .summary-content {
        grid-template-columns: 300px 1fr;
        gap: 2rem;
    }

    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .summary-content {
        grid-template-columns: 1fr;
    }

    .player-main-name {
        font-size: 2rem;
    }

    .player-stats-summary {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-cards-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

/* Page Hero */
.page-hero {
    padding: 5.4rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    background-image: url('https://images.unsplash.com/photo-1519869325931-281d1500cefb?w=1920&q=80'), linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: var(--white);
    text-align: left;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.85) 0%, rgba(59, 130, 246, 0.85) 100%);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
    text-align: left;
}

.hero-title {
    font-size: 2.7rem;
    font-weight: 800;
    margin-bottom: 0.9rem;
    color: var(--white);
    text-align: left;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin: 0;
    text-align: left;
}

/* Intro Section */
.intro-section {
    padding: 3rem 0;
    background-color: var(--white);
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--medium-grey);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Services Detail Section */
.services-detail-section {
    padding: 2.7rem 0;
    background-color: var(--white);
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.25rem;
    margin-top: 1.8rem;
}

.service-detail-card {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 20px;
    padding: 2.25rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 3px solid var(--primary-blue);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
}

.service-detail-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 10.8px 36px rgba(0, 0, 0, 0.135);
    border-color: var(--secondary-blue);
}

.service-detail-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(59, 130, 246, 0.1));
    color: var(--primary-blue);
}

.service-detail-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 1rem;
}

.service-detail-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--medium-grey);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-detail-info {
    margin-bottom: 1.5rem;
}

.service-detail-duration,
.service-detail-price {
    font-size: 0.95rem;
    color: var(--dark-grey);
    margin-bottom: 0.5rem;
}

.service-detail-info strong {
    color: var(--primary-blue);
}

/* How It Works Section - Services Page */
/* Only apply white background if it has steps-grid (services page) */
.how-it-works-section:has(.steps-grid) {
    padding: 3rem 0;
    background-color: var(--white) !important;
}

.how-it-works-section:has(.steps-grid) .section-title {
    color: var(--dark-grey) !important;
}

.how-it-works-section:has(.step-card) .step-card .step-title {
    color: var(--primary-blue) !important;
}

/* Ensure homepage keeps dark background */
.how-it-works-section:has(.steps-container) {
    background-color: var(--dark-grey) !important;
}

.how-it-works-section:has(.steps-container) .section-title {
    color: var(--white) !important;
}

/* Services page specific steps - more specific selector */
.how-it-works-section .steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.how-it-works-section .step-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--bg-grey);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.how-it-works-section .step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Services page step number - only applies to step-card, not step-item */
.how-it-works-section .step-card .step-number {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue)) !important;
    color: var(--white) !important;
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1.5rem !important;
    box-shadow: none !important;
}

.how-it-works-section:has(.step-card) .step-card .step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 1rem;
}

.how-it-works-section:has(.step-card) .step-card .step-description {
    font-size: 1rem;
    color: var(--medium-grey);
    line-height: 1.6;
}

/* Ensure homepage step styles are preserved - these are more specific for homepage */
.steps-container .step-item .step-number {
    width: 60px !important;
    height: 60px !important;
    border-radius: 12px !important;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue)) !important;
    color: var(--white) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    margin-bottom: 1.25rem !important;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.2) !important;
    transition: all 0.3s ease !important;
}

.steps-container .step-item .step-title {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: var(--white) !important;
    margin-bottom: 0.5rem !important;
}

.steps-container .step-item .step-description {
    font-size: 0.95rem !important;
    color: var(--medium-grey) !important;
    line-height: 1.6 !important;
}

/* Why Choose Section */
.why-choose-section {
    padding: 3rem 0;
    background-color: var(--bg-grey);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(59, 130, 246, 0.1));
    color: var(--primary-blue);
}

.feature-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-grey);
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    text-align: center;
    color: var(--white);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

.btn-white {
    background-color: var(--white);
    color: var(--primary-blue);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

/* Contact Details Section */
.contact-details-section {
    padding: 3rem 0;
    background-color: var(--white);
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.contact-detail-card {
    background-color: var(--bg-grey);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1), rgba(59, 130, 246, 0.1));
    color: var(--primary-blue);
}

.contact-detail-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-grey);
    margin-bottom: 1rem;
}

.contact-detail-email {
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-detail-note {
    font-size: 0.9rem;
    color: var(--medium-grey);
}

/* Contact Form Section */
.contact-form-section {
    padding: 3rem 0;
    background-color: var(--bg-grey);
}

.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--dark-grey);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group .optional {
    color: var(--light-grey);
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--bg-grey);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Support Note Section */
.support-note-section {
    padding: 3rem 0;
    background-color: var(--white);
}

.support-note {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--bg-grey);
    border-radius: 12px;
}

.support-note p {
    font-size: 1.1rem;
    color: var(--medium-grey);
    margin-bottom: 1.5rem;
}

/* Social Section */
.social-section {
    padding: 3rem 0;
    background-color: var(--bg-grey);
    text-align: center;
}

.social-links-large {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-link-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 12px;
    text-decoration: none;
    color: var(--dark-grey);
    transition: all 0.3s ease;
    min-width: 120px;
}

.social-link-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    color: var(--primary-blue);
}

.social-link-large svg {
    color: var(--primary-blue);
}

.social-link-large span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* ============================================
   FAQs PAGE STYLES
   ============================================ */

.faqs-section {
    padding: 3rem 0;
    background-color: var(--white);
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-grey);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-blue);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--bg-grey);
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--light-blue);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-grey);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-question[aria-expanded="true"] {
    color: var(--primary-blue);
}

.faq-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer,
.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--medium-grey);
    line-height: 1.7;
    font-size: 1rem;
}

/* Responsive Styles for New Pages */
@media (max-width: 968px) {
    .services-detail-grid,
    .steps-grid,
    .features-grid,
    .contact-details-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .social-links-large {
        flex-direction: column;
        align-items: center;
    }

    .social-link-large {
        width: 100%;
        max-width: 200px;
    }
}

