/* Great Lakes Goaltending - Modern Website Styles */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e3a8a;
    --secondary-color: #dc2626;
    --accent-color: #0ea5e9;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

.section {
    padding: 5rem 0;
}

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

.section-subtitle {
    color: #dc2626;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

/* Header and Navigation */
.header {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo-link {
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 5px;
}

.logo-link:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.1);
}

.logo {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

/* Hide mobile logo text on desktop */
.mobile-logo-text {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0;
    height: 100%;
    align-items: stretch;
}

.nav-menu li {
    display: flex;
    align-items: stretch;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    height: 100%;
    flex: 1;
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff6b35;
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.phone-number {
    color: #dc2626;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border: 2px solid #dc2626;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.phone-number:hover {
    background: #dc2626;
    color: var(--white);
    transform: translateY(-1px);
}

/* Header Right Section */
.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: #dc2626;
    color: var(--white);
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1rem;
}

/* Modern Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.hamburger-line {
    width: 24px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.mobile-menu-toggle.active {
    background: rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.4);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: #ff6b35;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: #ff6b35;
}

/* Hero Section with Video Background */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
    margin-bottom: 0;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.hero-video[data-loaded="true"] {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(30, 58, 138, 0.7), rgba(30, 58, 138, 0.7));
    z-index: -1;
}

.hero-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(30, 58, 138, 0.8), rgba(30, 58, 138, 0.8)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Video Performance Optimizations */
@media (max-width: 768px) {
    .hero-video {
        /* Reduce video quality on mobile for better performance */
        transform: scale(1.1);
    }
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
    .hero-video {
        animation-play-state: paused;
    }
}

/* Ensure content is always above video */
.hero .container {
    position: relative;
    z-index: 1;
}

/* Sub-page Hero Styling */
.hero[style*="height: 60vh"] {
    height: 60vh !important;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background-size: cover !important;
    background-position: center !important;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    /* Override inline styles with red to black gradient */
    background: linear-gradient(rgba(220, 38, 38, 0.8), rgba(17, 24, 39, 0.9)), var(--hero-bg-image) !important;
    /* Red border line at bottom */
    border-bottom: 6px solid #dc2626;
}

/* Add animated background elements for movement */
.hero[style*="height: 60vh"]::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    animation: floatBackground 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.hero[style*="height: 60vh"] .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 10rem 2rem 2rem 2rem;
    position: relative;
    z-index: 2;
    animation: slideInUp 1s ease-out;
}

.hero[style*="height: 60vh"] .hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInScale 1.2s ease-out 0.3s both;
}

.hero[style*="height: 60vh"] .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Animation keyframes for movement */
@keyframes floatBackground {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(-20px, -10px) rotate(1deg); }
    50% { transform: translate(20px, 10px) rotate(-1deg); }
    75% { transform: translate(-10px, 20px) rotate(0.5deg); }
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(30px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Grid System */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Cards */
.card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--white);
}

/* Services Section - Enhanced Dark Mode */
.services {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    position: relative;
    padding-top: 6rem !important;
    margin-top: 0;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Smooth transition from hero to services */
.services {
    position: relative;
    z-index: 1;
}

/* Add a subtle gradient transition at the top of services */
.services::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.5), transparent);
    z-index: 2;
}

/* Team Section */
.team-member {
    text-align: center;
}

.team-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--accent-color);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #dc2626;
}

.footer-social {
    margin-top: 2rem;
}

.footer-social h4 {
    margin-bottom: 1rem;
    color: #dc2626;
}

.footer-social .social-icons {
    gap: 1rem;
}

.footer-social .social-link {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social .social-link:hover {
    background: #dc2626;
    border-color: #dc2626;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: var(--text-light);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    position: relative;
    overflow-y: auto;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-logo {
    height: 50px;
    width: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.close-line {
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.close-line:nth-child(1) {
    transform: rotate(45deg);
}

.close-line:nth-child(2) {
    transform: rotate(-45deg);
}

.mobile-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-nav-link:hover::before {
    left: 100%;
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(8px);
    color: #ff6b35;
}

.mobile-nav-link i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
    color: #ff6b35;
}

.mobile-menu-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-contact {
    margin-bottom: 1.5rem;
}

.mobile-phone {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.mobile-phone:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-2px);
}

.mobile-phone i {
    color: #ff6b35;
}

.mobile-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.mobile-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-social-link:hover {
    background: #ff6b35;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.mobile-social-link i {
    font-size: 1.2rem;
}

/* Modern Dark Header Scrolled State */
.header.scrolled {
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transform: translateY(0);
}

.header.scrolled .nav-link {
    color: var(--white);
}

.header.scrolled .nav-link:hover {
    color: #ff6b35;
}

.header.scrolled .phone-number {
    color: #dc2626;
    border-color: #dc2626;
}

.header.scrolled .phone-number:hover {
    background: #dc2626;
    border-color: #dc2626;
    color: var(--white);
}

.header.scrolled .social-link {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.1);
}

.header.scrolled .social-link:hover {
    background: #dc2626;
    border-color: #dc2626;
    color: var(--white);
}

.header.scrolled .logo-link:hover {
    background: rgba(255, 255, 255, 0.05);
}

.header.scrolled .mobile-menu-toggle {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.header.scrolled .mobile-menu-toggle .hamburger-line {
    background: var(--white);
}

.header.scrolled .mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Header scroll animation enhancement */
.header.scrolled .nav {
    padding: 1rem 0;
    transition: padding 0.3s ease;
}

/* Add subtle glow effect on scroll */
.header.scrolled::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
    opacity: 0.6;
}

/* Enhanced Button Styles */
.btn-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Loading Animation */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.loader::after {
    content: '';
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-color);
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        margin-right: 6px;
    }

    .nav-menu {
        display: none;
    }

    .nav {
        padding: 1rem 0;
    }

    .logo-link {
        margin-left: 6px;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .logo-link:hover {
        transform: scale(1.02);
    }

    .logo {
        height: 55px;
    }

    /* Mobile logo text - hidden by default, shown only on mobile */
    .mobile-logo-text {
        display: block;
        color: var(--white);
        font-size: 0.85rem;
        font-weight: 600;
        line-height: 1.2;
        text-decoration: none;
    }

    .header-right {
        gap: 1rem;
    }

    .social-icons {
        gap: 0.5rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .phone-number {
        display: none;
    }

    .hero {
        height: 80vh;
    }

    .hero-video {
        object-position: center center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    /* Sub-page hero mobile adjustments */
    .hero[style*="height: 60vh"] {
        height: 50vh !important;
        min-height: 350px;
        background-attachment: scroll;
    }

    .hero[style*="height: 60vh"] .hero-content {
        padding: 8rem 1.5rem 1.5rem 1.5rem;
    }

    .hero[style*="height: 60vh"] .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .hero[style*="height: 60vh"] .hero-content p {
        font-size: 1rem;
    }

    /* Reduce animation intensity on mobile */
    .hero[style*="height: 60vh"]::before {
        animation-duration: 30s;
    }

    .btn-group {
        flex-direction: column;
        align-items: center;
    }

    .btn-group .btn {
        width: 100%;
        max-width: 300px;
        margin: 0.5rem 0;
    }

    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        text-align: center;
    }

    .footer-social .social-icons {
        justify-content: center;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        margin: 0 auto;
    }

    .footer-social h4 {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .section {
        padding: 3rem 0;
    }

    .services {
        padding-top: 4rem !important;
    }

    /* Age group cards mobile adjustments */
    .age-group-card {
        height: 350px;
    }

    .card-content {
        padding: 1rem 1.25rem;
    }

    .card-content h4 {
        margin-bottom: 0.5rem;
    }

    .card-content p {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    /* Training video cards mobile adjustments */
    .training-video-card {
        height: 700px;
        min-height: 700px;
    }

    .card-video-container {
        height: 355px;
    }

    .card-content-video {
        padding: 1rem 1.25rem;
    }

    .card-content-video h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .card-content-video p {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .card-content-video ul {
        margin-bottom: 1rem;
        font-size: 0.8rem;
    }

    .card-content-video ul li {
        margin-bottom: 0.2rem;
        line-height: 1.2;
    }

    .card-content-video .btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.85rem;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .card {
        padding: 1.5rem;
    }

    /* Enhanced Mobile Dark Card Styling */
    .services .card:hover,
    .testimonials-dark .card:hover {
        transform: translateY(-5px);
        animation: none;
    }

    .services .card:hover .card-icon-orange {
        transform: scale(1.05);
    }

    .team-photo {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    /* Sub-page hero extra small mobile */
    .hero[style*="height: 60vh"] {
        height: 45vh !important;
        min-height: 300px;
    }

    .hero[style*="height: 60vh"] .hero-content {
        padding: 6rem 1rem 1rem 1rem;
    }

    .hero[style*="height: 60vh"] .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .hero[style*="height: 60vh"] .hero-content p {
        font-size: 0.95rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .card {
        padding: 1rem;
    }

    /* Mobile Dark Card Optimizations */
    .services .card,
    .testimonials-dark .card {
        backdrop-filter: blur(8px);
    }

    .services::before,
    .testimonials-dark::before {
        opacity: 0.5;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .services {
        padding-top: 3rem !important;
    }

    /* Extra small mobile footer social icons */
    .footer-social .social-icons {
        gap: 1rem;
        justify-content: center;
    }

    .footer-social .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Dark Sections and Orange Accents */
.dark-section {
    background: linear-gradient(rgba(31, 41, 55, 0.85), rgba(55, 65, 81, 0.85)), url('../newimages/netbackground.png') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Specific styling for "Ready to Start Training?" section */
.dark-section:last-of-type {
    background: linear-gradient(rgba(31, 41, 55, 0.85), rgba(55, 65, 81, 0.85)), url('../newimages/icepuck1.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Specific styling for "Ready to Get Started?" section on contact page */
.dark-section-alt:last-of-type {
    background: linear-gradient(rgba(55, 65, 81, 0.85), rgba(75, 85, 99, 0.85)), url('../newimages/icepuck1.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.dark-section-alt {
    background: linear-gradient(135deg, #374151 0%, #4b5563 100%) !important;
}

.orange-accent {
    color: #ff6b35 !important;
}

.white-text {
    color: var(--white) !important;
}

.light-text {
    color: rgba(255, 255, 255, 0.9) !important;
}

.btn-orange {
    background: #ff6b35;
    color: var(--white);
    border: 2px solid #ff6b35;
}

.btn-orange:hover {
    background: #e55a2b;
    border-color: #e55a2b;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.card-icon-orange {
    background: #ff6b35 !important;
    color: var(--white) !important;
}

/* Enhanced Dark Mode Cards */
.services .card {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.services .card:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 107, 53, 0.2);
}

.services .card h3 {
    color: var(--white) !important;
    margin-bottom: 1rem;
}

.services .card p {
    color: rgba(255, 255, 255, 0.85) !important;
}

.services .section-title .section-subtitle {
    color: #ff6b35 !important;
}

.services .section-title h2 {
    color: var(--white) !important;
}

.services .section-title p {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Enhanced Dark Section Card Styling */
.dark-section .card,
.dark-section-alt .card {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dark-section .card:hover,
.dark-section-alt .card:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 107, 53, 0.15);
}

/* Testimonials Section - Enhanced Dark Mode */
.testimonials-dark {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    position: relative;
}

.testimonials-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(14, 165, 233, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials-dark .card {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.testimonials-dark .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #0ea5e9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonials-dark .card:hover::before {
    opacity: 1;
}

.testimonials-dark .card:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 107, 53, 0.15);
}

.testimonials-dark .card h4 {
    color: var(--white) !important;
}

.testimonials-dark .card p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.testimonials-dark .section-title .section-subtitle {
    color: #ff6b35 !important;
}

.testimonials-dark .section-title h2 {
    color: var(--white) !important;
}

.testimonials-dark .section-title p {
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Dark Section Typography */
.dark-section .section-title h2,
.dark-section-alt .section-title h2 {
    color: var(--white) !important;
}

.dark-section .section-title p,
.dark-section-alt .section-title p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.dark-section .card h3,
.dark-section-alt .card h3 {
    color: var(--white) !important;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.dark-section .card p,
.dark-section-alt .card p {
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.6;
}

/* Dark Section Icon Colors */
.dark-section .card-icon-orange,
.dark-section-alt .card-icon-orange,
.dark-section .card-icon-orange i,
.dark-section-alt .card-icon-orange i {
    color: white !important;
}

/* Enhanced Card Animations and Effects */
@keyframes cardGlow {
    0% { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); }
    50% { box-shadow: 0 8px 32px rgba(255, 107, 53, 0.2), 0 0 20px rgba(255, 107, 53, 0.1); }
    100% { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); }
}

/* Gallery Training Highlights Enhanced Styling */
.gallery-training-highlights .section-title h2 {
    color: var(--white) !important;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gallery-training-highlights .card h3 {
    color: var(--white) !important;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.gallery-training-highlights .card p {
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 1rem;
    line-height: 1.7;
}

/* Training Page Dark Mode Enhancements */
.dark-section,
.dark-section-alt {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.85)), url('../newimages/netbackground.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Override for "Ready to Start Training?" section */
.dark-section:last-of-type {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.85)), url('../newimages/icepuck1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Override for "Ready to Get Started?" section on contact page */
.dark-section-alt:last-of-type {
    background: linear-gradient(rgba(55, 65, 81, 0.85), rgba(75, 85, 99, 0.85)), url('../newimages/icepuck1.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.dark-section::before,
.dark-section-alt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(14, 165, 233, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.dark-section-alt {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

/* Enhanced Dark Mode Card Content */
.dark-section .card .card-icon-orange,
.dark-section-alt .card .card-icon-orange {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%) !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.dark-section .card:hover .card-icon-orange,
.dark-section-alt .card:hover .card-icon-orange {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

/* Training Page Specific Card Styling */
.training-page .dark-section .card,
.training-page .dark-section-alt .card {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.training-page .dark-section .card:hover,
.training-page .dark-section-alt .card:hover {
    background: rgba(255, 255, 255, 0.08) !important;
}

/* Training Page Bullet Text Styling */
.training-page ul li {
    color: #d1d5db !important;
}

.training-page .dark-section ul li,
.training-page .dark-section-alt ul li {
    color: #d1d5db !important;
}

.training-page .card ul li {
    color: #d1d5db !important;
}

/* Specific styling for "What We Teach" section */
.training-page .light-text li {
    color: #d1d5db !important;
}

/* Override any other text color classes on training page lists */
.training-page ul[style*="color"] li {
    color: #d1d5db !important;
}

/* Training Page Age Group Card Titles */
.training-page .card h4 {
    color: #dc2626 !important;
}

/* Age Group Cards with Image Headers */
.age-group-card {
    padding: 0 !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 400px;
}

.card-image-header {
    height: 45%;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.age-group-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.age-group-card:hover .age-group-image {
    transform: scale(1.05);
}

.card-content {
    padding: 1.25rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.card-content h4 {
    margin-bottom: 0.75rem;
    color: #dc2626 !important;
}

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

/* Training Video Cards */
.training-video-card {
    padding: 0 !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 750px;
    min-height: 750px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.card-video-container {
    height: 375px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #000;
    flex-shrink: 0;
}

.training-card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    opacity: 0;
    transition: opacity 0.5s ease-in-out, transform 0.3s ease;
}

.training-card-video[data-loaded="true"] {
    opacity: 1;
}

/* Cropped videos - scale and center to crop top/bottom */
.cropped-video {
    transform: scale(1.5);
    object-position: center center;
}

/* Normal video - keep original aspect ratio */
.normal-video {
    transform: scale(1);
    object-position: center center;
}

.training-video-card:hover .training-card-video {
    transform: scale(1.05);
}

.training-video-card:hover .cropped-video {
    transform: scale(1.55);
}

.card-content-video {
    padding: 1.25rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.card-content-video h3 {
    margin-bottom: 0.75rem;
    color: var(--white);
    font-size: 1.4rem;
}

.card-content-video p {
    margin-bottom: 0.75rem;
    line-height: 1.4;
    font-size: 0.9rem;
}

.card-content-video ul {
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
}

.card-content-video ul li {
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.card-content-video .btn {
    margin-top: auto;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* Contact Page FAQ Text Styling */
.dark-section .grid p {
    color: #d1d5db !important;
}

/* More specific targeting for FAQ section */
.dark-section .grid div p {
    color: #d1d5db !important;
}

.services .card,
.testimonials-dark .card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.services .card:hover,
.testimonials-dark .card:hover {
    animation: cardGlow 2s ease-in-out infinite;
}

/* Enhanced Icon Styling for Dark Cards */
.services .card-icon-orange {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%) !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.services .card:hover .card-icon-orange {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

/* Testimonial Quote Styling */
.testimonials-dark .testimonial-quote {
    position: relative;
}

.testimonials-dark .testimonial-author h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonials-dark .testimonial-author p {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Premier Coaching Section */
.premier-coaching-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

/* Premier Coaching Layout */
.premier-coaching-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 60vh;
}

.premier-coaching-content {
    max-width: 600px;
    background: rgba(0, 0, 0, 0.3);
    padding: 3rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Video Container Styling */
.premier-coaching-video {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 380px; /* Increased height by 100px */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 107, 53, 0.3);
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.coaching-video {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 14px;
    transition: all 0.3s ease;
    object-fit: cover;
    object-position: center center;
    /* Crop top and bottom quarters by scaling and positioning */
    transform: scale(1.5);
}

.video-container:hover {
    transform: scale(1.02);
    border-color: rgba(255, 107, 53, 0.6);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 107, 53, 0.2);
}

/* Video Performance Optimizations */
.coaching-video {
    object-fit: cover;
    object-position: center;
    opacity: 1; /* Show video immediately for debugging */
    transition: opacity 0.5s ease-in-out;
}

.coaching-video[data-loaded="true"] {
    opacity: 1;
}



.premier-coaching-content .section-subtitle {
    margin-bottom: 1rem;
}

.premier-coaching-content h2 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.premier-coaching-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Mobile optimization for premier coaching section */
@media (max-width: 768px) {
    .premier-coaching-section {
        background-attachment: scroll !important;
        min-height: 50vh;
    }

    .premier-coaching-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .premier-coaching-content {
        padding: 2rem;
        margin: 0 1rem;
        max-width: none;
    }

    .premier-coaching-content h2 {
        font-size: 2rem;
    }

    .video-container {
        max-width: 400px;
        height: 305px; /* Increased proportional height for mobile */
        margin: 0 auto;
    }

    .premier-coaching-video {
        order: -1; /* Show video above content on mobile */
    }
}

@media (max-width: 480px) {
    .premier-coaching-layout {
        gap: 1.5rem;
    }

    .premier-coaching-content {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }

    .video-container {
        max-width: 320px;
        height: 244px; /* Increased proportional height for small mobile */
    }
}

/* About Mission Section with Full Height Image */
.about-mission-section {
    padding: 0;
    margin: 0;
}

.about-mission-container {
    display: flex;
    min-height: 80vh;
    align-items: stretch;
}

.about-mission-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
    position: relative;
}

.about-mission-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 107, 53, 0.3), transparent);
}

.about-mission-content .section-subtitle {
    margin-bottom: 1rem;
}

.about-mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--dark-blue);
}

.about-mission-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.about-mission-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.about-mission-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

/* About Slideshow Styles */
.about-slideshow {
    width: 100%;
    height: 100%;
    position: relative;
}

.slideshow-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slideshow-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 0.3s ease;
    filter: brightness(1.1) contrast(1.05);
}

.slideshow-image.active {
    opacity: 1;
}

.about-mission-image:hover .slideshow-image {
    transform: scale(1.05);
}

/* Legacy support for full-height-image class */
.full-height-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    filter: brightness(1.1) contrast(1.05);
}

.about-mission-image:hover .full-height-image {
    transform: scale(1.05);
}

/* Mobile responsiveness for about mission section */
@media (max-width: 768px) {
    .about-mission-container {
        flex-direction: column !important;
        min-height: auto !important;
        display: flex !important;
    }

    .about-mission-content {
        padding: 3rem 2rem !important;
        order: 1 !important;
        width: 100% !important;
    }

    .about-mission-content::before {
        display: none !important;
    }

    .about-mission-content h2 {
        font-size: 2rem !important;
    }

    .about-mission-image {
        order: 2;
        width: 100% !important;
        height: 400px !important;
        margin: 1rem 0 3rem 0 !important;
        border-radius: 0 !important;
        overflow: hidden !important;
        box-shadow: none !important;
        border: none !important;
        background: #ddd !important;
        position: relative !important;
        display: block !important;
        flex: none !important;
    }

    /* Force slideshow visibility on mobile */
    .about-mission-image .about-slideshow {
        width: 100% !important;
        height: 100% !important;
        position: relative !important;
        background: #ccc !important;
        display: block !important;
    }

    .about-mission-image .slideshow-container {
        width: 100% !important;
        height: 100% !important;
        position: relative !important;
        overflow: hidden !important;
        display: block !important;
    }

    .about-mission-image .slideshow-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        border-radius: 0 !important;
        opacity: 0 !important;
        transition: opacity 1.5s ease-in-out !important;
        display: block !important;
    }

    .about-mission-image .slideshow-image.active {
        opacity: 1 !important;
        z-index: 1 !important;
    }

    /* Ensure first image is visible immediately */
    .about-mission-image .slideshow-image:first-child {
        opacity: 1 !important;
    }
}

@media (max-width: 480px) {
    .about-mission-content {
        padding: 2rem 1.5rem;
    }

    .about-mission-content h2 {
        font-size: 1.8rem;
    }

    .about-mission-image {
        height: 350px;
        margin: 1rem 0 3rem 0;
    }
}

/* Team Dark Section */
.team-dark-section {
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.85)), url('../newimages/netbackground.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.team-dark-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(14, 165, 233, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.team-dark-section .section-title .section-subtitle {
    color: #ff6b35 !important;
}

.team-dark-section .section-title h2 {
    color: var(--white) !important;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.team-dark-section .section-title p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1.1rem;
}

.team-dark-section .card {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-dark-section .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #0ea5e9);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-dark-section .card:hover::before {
    opacity: 1;
}

.team-dark-section .card:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 107, 53, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 107, 53, 0.15);
}

.team-dark-section .card h3 {
    color: var(--white) !important;
    font-size: 1.5rem;
    margin: 1.5rem 0 0.5rem 0;
}

.team-dark-section .card p {
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.6;
}

.team-dark-section .card p[style*="color: #ff6b35"] {
    color: #ff6b35 !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-dark-section .team-photo {
    border: 3px solid rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    filter: brightness(1.1);
}

.team-dark-section .card:hover .team-photo {
    border-color: #ff6b35;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.team-dark-section .btn-orange {
    background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.team-dark-section .btn-orange:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #d14d20 100%);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
    transform: translateY(-2px);
}

/* Mobile responsiveness for team dark section */
@media (max-width: 768px) {
    .team-dark-section .section-title h2 {
        font-size: 2rem;
    }

    .team-dark-section .card {
        margin-bottom: 2rem;
    }

    .team-dark-section .card:hover {
        transform: translateY(-5px);
    }

    /* Gallery training highlights mobile */
    .gallery-training-highlights .section-title h2 {
        font-size: 2rem;
    }

    .gallery-training-highlights .card h3 {
        font-size: 1.3rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
