/* Education Hub Styles */

/* Hub Landing Page */
.learn-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Card Grid */
.learn-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 30px;
}

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

@media (max-width: 600px) {
    .learn-cards-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding-bottom: 16px;
        margin: 30px -20px 0;
        padding-left: 20px;
        padding-right: 60px;
    }

    .learn-cards-grid::-webkit-scrollbar {
        display: none;
    }

    .learn-cards-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .learn-card {
        flex: 0 0 85%;
        scroll-snap-align: start;
        min-width: 85%;
    }
}

/* Carousel Dot Indicators */
.carousel-dots {
    display: none;
}

@media (max-width: 600px) {
    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 16px;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transition: background 0.3s, transform 0.3s;
        cursor: pointer;
    }

    .carousel-dot.active {
        background: #ec691a;
        transform: scale(1.2);
    }
}

/* Learn Card */
.learn-card {
    background: #1a1a1a;

    border: 1px solid #333;
    border-radius: 12px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-height: 180px;
}

.learn-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ec691a 0%, #ec691a 100%);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 12px 12px 0 0;
}

.learn-card:hover {
    transform: translateY(-4px);
    background: #222;
    border-color: #444;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.learn-card:hover::before {
    opacity: 1;
}

.learn-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(236, 105, 26, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.learn-card-icon svg {
    width: 24px;
    height: 24px;
    fill: #ec691a;
}

.learn-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    font-family: 'Oswald', sans-serif;
}

.learn-card-desc {
    font-size: 0.95rem;
    color: #8892b0;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}


/* Breadcrumb Navigation */
.learn-breadcrumb {
    padding: 20px 40px;
    font-size: 0.9rem;
    font-family: 'Lato', sans-serif;
    color: #8892b0;
    text-align: left;
    max-width: 1400px;
    margin: 0 auto;
}

.learn-breadcrumb a {
    color: #ec691a;
    text-decoration: none;
}

.learn-breadcrumb a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .learn-breadcrumb {
        padding: 15px 20px;
    }
}

/* Page Hero (smaller than main hero) */
.learn-page-hero {
    margin: 20px auto 40px;
    min-height: 150px;
    padding: 40px 20px;
}

.learn-page-hero .hero-content h2 {
    font-size: 3rem;
}

.learn-page-hero .hero-content h3 {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .learn-page-hero .hero-content h2 {
        font-size: 2.5rem;
    }
}

/* Metric Tabs */
.metrics-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.metrics-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.metric-tab {
    background-color: #1a1a1a;
    color: #fff;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
}

.metric-tab:hover {
    background-color: #2a2a2a;
    border-color: #ec691a;
}

.metric-tab.active {
    background-color: rgba(236, 105, 26, 0.2);
    border-color: #ec691a;
    color: #ec691a;
}

@media (max-width: 600px) {
    .metrics-tabs {
        gap: 8px;
    }

    .metric-tab {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
}

/* Metric Tab Groups */
.metrics-tab-group-label {
    text-align: center;
    font-size: 0.85rem;
    color: #8892b0;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 12px 0;
}

.metrics-tab-group + .metrics-tab-group {
    margin-top: 10px;
}

/* Metric Panels */
.metric-panel {
    display: none;
}

.metric-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.metric-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .metric-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* SVG Visualization Container */
.metric-visual {
    background: #0d1117;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    border: 1px solid #333;
}

.svg-container {
    width: 100%;
    height: 280px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svg-container svg {
    width: 100%;
    height: 100%;
    max-width: 400px;
}

.animate-btn {
    margin-top: 20px;
    background: transparent;
    border: 1px solid #ec691a;
    color: #ec691a;
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.animate-btn:hover {
    background: rgba(236, 105, 26, 0.1);
}

.animate-btn.playing {
    background: #ec691a;
    color: #000;
}

/* Metric Info */
.metric-info {
    text-align: left;
}

.metric-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px 0;
    font-family: 'Oswald', sans-serif;
}

.metric-definition {
    font-size: 1rem;
    color: #c5c5c5;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    margin: 0 0 24px 0;
}

/* Metric Video */
.metric-video {
    margin-bottom: 24px;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.metric-video video {
    width: 100%;
    display: block;
}

/* Benchmark Mini Table */
.metric-benchmarks h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #ec691a;
    margin: 0 0 12px 0;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.benchmark-mini-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
}

.benchmark-mini-table td {
    padding: 10px 12px;
    border: 1px solid #333;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
}

.benchmark-mini-table td:first-child {
    color: #8892b0;
    background: #1a1a1a;
}

.benchmark-mini-table td:last-child {
    color: #fff;
    font-weight: 600;
    text-align: center;
}

.benchmark-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ec691a;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: gap 0.3s;
}

.benchmark-cta:hover {
    gap: 10px;
    text-decoration: underline;
}

/* FAQ Accordion */
.faq-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.faq-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 30px 0;
    font-family: 'Oswald', sans-serif;
    text-align: center;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid #333;
}

.faq-item:first-child {
    border-top: 1px solid #333;
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    font-family: 'Oswald', sans-serif;
    text-align: left;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #ec691a;
}

.faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
    fill: #ec691a;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 0 20px 0;
    margin: 0;
    color: #8892b0;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    font-size: 1rem;
}

/* Content Section (for Trackman page) */
.learn-content-section {
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.learn-content-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
    font-family: 'Oswald', sans-serif;
}

.learn-content-section p {
    font-size: 1rem;
    color: #c5c5c5;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    margin: 0 0 16px 0;
}

.learn-content-section img {
    width: 100%;
    border-radius: 12px;
    margin: 20px 0;
}

/* Stats Highlight */
.learn-stats-bar {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 40px 20px;
    background: #161616;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    margin: 40px 0;
    flex-wrap: wrap;
}

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

.learn-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ec691a;
    font-family: 'Oswald', sans-serif;
    line-height: 1;
}

.learn-stat-label {
    display: block;
    font-size: 0.85rem;
    color: #8892b0;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}

@media (max-width: 600px) {
    .learn-stats-bar {
        gap: 30px;
    }

    .learn-stat-number {
        font-size: 2rem;
    }
}

/* 4DU Attribution */
.powered-by-4du {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #1a1a1a;
    border-radius: 8px;
    margin-top: 30px;
    border: 1px solid #333;
}

.powered-by-4du img {
    height: 36px;
    width: auto;
}

.powered-by-4du span {
    color: #8892b0;
    font-size: 0.9rem;
    font-family: 'Lato', sans-serif;
}

.powered-by-4du a {
    color: #ec691a;
    text-decoration: none;
}

.powered-by-4du a:hover {
    text-decoration: underline;
}

/* Module Grid (for Kickometry) */
.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.module-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.module-card:hover {
    background: #222;
    border-color: #444;
    transform: translateY(-2px);
}

.module-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.module-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(236, 105, 26, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.module-card-icon svg {
    width: 24px;
    height: 24px;
    fill: #ec691a;
}

.module-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    font-family: 'Oswald', sans-serif;
}

.module-card-desc {
    font-size: 0.95rem;
    color: #8892b0;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 1.5;
    margin: 0 0 16px 0;
}

.module-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.85rem;
    color: #ec691a;
    font-family: 'Lato', sans-serif;
}

/* Video Grid (for Training Videos) */
.videos-section {
    margin-bottom: 50px;
}

.videos-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
    font-family: 'Oswald', sans-serif;
    padding-bottom: 10px;
    border-bottom: 2px solid #ec691a;
    display: inline-block;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.video-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.video-card:hover {
    background: #222;
    border-color: #444;
    transform: translateY(-2px);
}

.video-card-player {
    position: relative;
    background: #000;
}

.video-card-player video {
    width: 100%;
    display: block;
}

.video-card-info {
    padding: 16px;
}

.video-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px 0;
    font-family: 'Lato', sans-serif;
}

.video-card-desc {
    font-size: 0.85rem;
    color: #8892b0;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    margin: 0;
}

/* Coach Resources */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.resource-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 24px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.resource-card:hover {
    background: #222;
    border-color: #444;
    transform: translateY(-2px);
}

.resource-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(236, 105, 26, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.resource-card-icon svg {
    width: 20px;
    height: 20px;
    fill: #ec691a;
}

.resource-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
    font-family: 'Lato', sans-serif;
}

.resource-card-desc {
    font-size: 0.9rem;
    color: #8892b0;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
}

.resource-card-cta {
    font-size: 0.85rem;
    color: #ec691a;
    font-weight: 500;
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Contact Section */
.contact-section {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
}

.contact-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
    font-family: 'Oswald', sans-serif;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-link {
    color: #ec691a;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.contact-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* CTA Section */
.learn-cta-section {
    text-align: center;
    padding: 48px 28px;
    margin: 52px auto 24px;
    max-width: 700px;
    background: #16181e;
    border: 1px solid #23272f;
    border-radius: 16px;
}
.learn-cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}
.learn-cta-btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-decoration: none;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.learn-cta-btn.primary {
    background: #ec691a;
    color: #fff;
    border-color: #ec691a;
}
.learn-cta-btn.primary:hover {
    background: #d55d14;
    border-color: #d55d14;
    transform: translateY(-2px);
}
.learn-cta-btn.secondary {
    background: transparent;
    color: #e8ebf0;
    border-color: #3a4150;
}
.learn-cta-btn.secondary:hover {
    border-color: #ec691a;
    color: #ec691a;
    transform: translateY(-2px);
}
@media (max-width: 480px) {
    .learn-cta-btn { width: 100%; }
}

.learn-cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px 0;
    font-family: 'Oswald', sans-serif;
}

.learn-cta-section p {
    font-size: 1rem;
    color: #8892b0;
    font-family: 'Lato', sans-serif;
    margin: 0 0 24px 0;
}

/* Table Styles (for benchmarks) */
.learn-table-container {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 12px;
    border: 1px solid #333;
}

.learn-table {
    width: 100%;
    border-collapse: collapse;
    background: #1a1a1a;
}

.learn-table th {
    background: #2a2a2a;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #444;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.learn-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #333;
    color: #c5c5c5;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
}

.learn-table tr:last-child td {
    border-bottom: none;
}

.learn-table tr:hover td {
    background: #161616;
}

.learn-table .level-column {
    color: #ec691a;
    font-weight: 500;
}

/* ============================
   KICKOMETRY PAGE STYLES
   ============================ */

/* 4DU Attribution Header */
.fourdu-attribution {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.fourdu-logo {
    height: 60px;
    width: auto;
}

.powered-by {
    font-size: 0.85rem;
    color: #8892b0;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Module Cards Grid */
.module-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

@media (max-width: 900px) {
    .module-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .module-cards-grid {
        grid-template-columns: 1fr;
    }
}

.module-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.module-number {
    font-size: 0.75rem;
    color: #ec691a;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
}

.module-card-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    font-family: 'Oswald', sans-serif;
}

.module-description {
    font-size: 0.95rem;
    color: #8892b0;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 1.5;
    margin: 12px 0;
}

.module-lessons {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.lesson-count,
.module-duration {
    font-size: 0.8rem;
    color: #8892b0;
    font-family: 'Lato', sans-serif;
}

.module-expand-btn {
    width: 100%;
    background: transparent;
    border: 1px solid #ec691a;
    color: #ec691a;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.module-expand-btn:hover {
    background: rgba(236, 105, 26, 0.1);
}

/* Module Content Panels */
.module-content-panels {
    margin-top: 40px;
}

.module-panel {
    display: none;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.module-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.module-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.module-panel-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    font-family: 'Oswald', sans-serif;
}

.module-close-btn {
    background: transparent;
    border: 1px solid #666;
    color: #8892b0;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.module-close-btn:hover {
    border-color: #ec691a;
    color: #ec691a;
}

/* Lesson List */
.lesson-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lesson-item {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    padding: 24px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid #2a2a2a;
}

@media (max-width: 800px) {
    .lesson-item {
        grid-template-columns: 1fr;
    }
}

.lesson-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lesson-number {
    font-size: 0.75rem;
    color: #ec691a;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
    margin-bottom: 8px;
}

.lesson-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px 0;
    font-family: 'Lato', sans-serif;
}

.lesson-info p {
    font-size: 0.9rem;
    color: #8892b0;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
}

.lesson-video {
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.lesson-video video {
    width: 100%;
    display: block;
}

/* 4DU Footer */
.fourdu-footer {
    text-align: center;
    padding: 40px 20px;
    margin-top: 40px;
    border-top: 1px solid #333;
}

.fourdu-footer p {
    font-size: 0.85rem;
    color: #8892b0;
    font-family: 'Lato', sans-serif;
    margin: 0 0 16px 0;
}

.fourdu-logo-footer {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.fourdu-logo-footer:hover {
    opacity: 1;
}

/* ============================
   COACHES PAGE STYLES
   ============================ */

/* Benchmark Cards */
.benchmark-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

@media (max-width: 1000px) {
    .benchmark-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .benchmark-cards-grid {
        grid-template-columns: 1fr;
    }
}

.benchmark-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 24px;
}

.benchmark-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ec691a;
    margin: 0 0 16px 0;
    font-family: 'Oswald', sans-serif;
}

.coach-benchmark-table {
    width: 100%;
    border-collapse: collapse;
}

.coach-benchmark-table th,
.coach-benchmark-table td {
    padding: 10px 12px;
    border: 1px solid #333;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    text-align: center;
}

.coach-benchmark-table th {
    background: #1a1a1a;
    color: #8892b0;
    font-weight: 500;
}

.coach-benchmark-table td {
    color: #c5c5c5;
}

.coach-benchmark-table td:first-child {
    color: #fff;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.2);
}

/* Coach Insight Grid */
.coach-insight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 700px) {
    .coach-insight-grid {
        grid-template-columns: 1fr;
    }
}

.coach-insight {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 24px;
    border-left: 3px solid #ec691a;
}

.coach-insight h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 12px 0;
    font-family: 'Lato', sans-serif;
}

.coach-insight p {
    font-size: 0.9rem;
    color: #8892b0;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

/* Resource Cards */
.resource-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 1000px) {
    .resource-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 550px) {
    .resource-cards-grid {
        grid-template-columns: 1fr;
    }
}

.resource-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(236, 105, 26, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.resource-icon svg {
    width: 24px;
    height: 24px;
    fill: #ec691a;
}

.resource-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px 0;
    font-family: 'Lato', sans-serif;
}

.resource-card p {
    font-size: 0.85rem;
    color: #8892b0;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.resource-type {
    font-size: 0.75rem;
    color: #ec691a;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: auto;
}

/* Coach Video Grid */
.coach-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

@media (max-width: 900px) {
    .coach-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .coach-video-grid {
        grid-template-columns: 1fr;
    }
}

.coach-video-item {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
}

.coach-video-item video {
    width: 100%;
    display: block;
}

.coach-video-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 16px 16px 8px 16px;
    font-family: 'Lato', sans-serif;
}

.coach-video-item p {
    font-size: 0.85rem;
    color: #8892b0;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 1.5;
    margin: 0 16px 16px 16px;
}

/* Coach Contact Section */
.coach-contact-section {
    background: rgba(236, 105, 26, 0.08);
    border: 1px solid rgba(236, 105, 26, 0.2);
    border-radius: 12px;
    padding: 40px;
    margin: 60px 0;
    text-align: center;
}

.coach-contact-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
    font-family: 'Oswald', sans-serif;
}

.coach-contact-section > p {
    font-size: 1rem;
    color: #8892b0;
    font-family: 'Lato', sans-serif;
    margin: 0 0 30px 0;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 800px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }
}

.contact-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 24px;
    text-align: left;
}

.contact-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px 0;
    font-family: 'Lato', sans-serif;
}

.contact-card p {
    font-size: 0.9rem;
    color: #8892b0;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 1.5;
    margin: 0 0 12px 0;
}

.contact-card .contact-link {
    display: inline-block;
    color: #ec691a;
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
}

.contact-card .contact-link:hover {
    text-decoration: underline;
}

/* ============================
   VIDEOS PAGE STYLES
   ============================ */

/* Video Category Tabs */
.video-category-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 30px auto 40px;
    padding: 0 20px;
    flex-wrap: wrap;
}

.video-tab {
    background-color: #1a1a1a;
    color: #fff;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
}

.video-tab:hover {
    background-color: #2a2a2a;
    border-color: #ec691a;
}

.video-tab.active {
    background-color: #ec691a;
    border-color: #ec691a;
    color: #000;
}

/* Video Category Panels */
.video-category-panel {
    display: none;
}

.video-category-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

/* Training Video Grid */
.training-video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

@media (max-width: 1000px) {
    .training-video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .training-video-grid {
        grid-template-columns: 1fr;
    }
}

.training-video-item {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.training-video-item:hover {
    background: #222;
    border-color: #444;
    transform: translateY(-2px);
}

.training-video-item video {
    width: 100%;
    display: block;
    background: #000;
}

.video-info {
    padding: 16px;
}

.video-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 8px 0;
    font-family: 'Lato', sans-serif;
}

.video-info p {
    font-size: 0.85rem;
    color: #8892b0;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 1.5;
    margin: 0 0 8px 0;
}

.video-duration {
    font-size: 0.75rem;
    color: #ec691a;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
}

/* ============================
   TRACKMAN SECTION STYLES
   ============================ */

.trackman-section {
    margin: 60px 0;
}

.trackman-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 30px 0;
    font-family: 'Oswald', sans-serif;
    text-align: center;
}

.trackman-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 40px 0 16px;
    font-family: 'Oswald', sans-serif;
}

.trackman-section h3:first-of-type {
    margin-top: 0;
}

.trackman-section p {
    font-size: 1rem;
    color: #c5c5c5;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    margin: 0 0 16px 0;
}

.trackman-section .highlight {
    color: #ec691a;
    font-weight: 500;
}

.trackman-metrics-list {
    color: #c5c5c5;
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    line-height: 2;
    padding-left: 20px;
    margin: 16px 0;
}

.trackman-metrics-list li {
    margin-bottom: 4px;
}

.trackman-metrics-list .highlight {
    color: #ec691a;
    font-weight: 500;
}

/* Responsive Video Wrapper */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
}
.video-wrapper iframe, .video-wrapper video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}
