/* CoachCare Responsive Styles */

/* Mobile Navbar Styles */
.mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: rgba(11, 15, 25, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 40;
    padding: 1rem 0;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    padding: 0 1rem;
}

.mobile-menu nav a {
    display: block;
    padding: 0.75rem 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.mobile-menu nav a:hover,
.mobile-menu nav a.active {
    color: #ffffff;
    background-color: rgba(197, 160, 89, 0.1);
    padding-left: 1.5rem;
}

.mobile-menu .mobile-menu-button {
    margin: 1rem 0 0 0;
    width: 100%;
    display: block;
    text-align: center;
}

/* Desktop: Hide mobile menu toggle */
@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }

    .desktop-menu {
        display: flex;
    }
}

/* Mobile: Hide desktop menu */
@media (max-width: 767px) {
    .desktop-menu {
        display: none;
    }

    .mobile-menu-button-desktop {
        display: none;
    }
}

/* Hero Section Mobile Responsive Styles */
@media (max-width: 767px) {
    /* Hero section container adjustments */
    .hero-content {
        padding-top: 1rem;
        padding-bottom: 2rem;
        margin-top: 0 !important;
    }

    /* Hero heading - ensure proper sizing on mobile */
    .hero-title {
        margin-bottom: 1rem !important;
        line-height: 1.2 !important;
    }

    /* Hero description - ensure proper sizing on mobile */
    .hero-description {
        margin-bottom: 1.5rem !important;
        line-height: 1.5 !important;
    }

    /* Hero buttons - ensure they're visible and properly sized on mobile */
    .hero-button {
        display: inline-block !important;
        width: 100% !important;
        max-width: 100% !important;
        white-space: nowrap;
    }

    /* Ensure button container is visible and has proper spacing */
    .hero-buttons {
        width: 100%;
        padding: 0;
    }

    /* Hero tag/badge - adjust spacing on mobile */
    .hero-tag {
        margin-bottom: 0.75rem !important;
    }

    /* Scroll indicator - adjust position on mobile */
    section.relative.h-screen .absolute.bottom-10 {
        bottom: 1rem !important;
    }

    /* Reduce top margin on hero section for mobile */
    section.relative.h-screen {
        padding-top: 80px;
    }
}

/* CoachCare Hero Section Modern Animated Background Styles */

/* Background Image */
.coachcare-hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.3;
}

/* Noise texture overlay */
.coachcare-hero-noise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

/* Modern Mesh Gradient Background */
.coachcare-hero-mesh-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

/* Organic Gradient Blobs */
.coachcare-mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: coachcareBlobMorph 20s ease-in-out infinite;
    will-change: transform;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

.coachcare-mesh-blob:nth-child(1) {
    width: 50vw;
    height: 50vw;
    max-width: 600px;
    max-height: 600px;
    background: conic-gradient(from 0deg at 50% 50%,
        rgba(197, 160, 89, 0.4) 0deg,
        rgba(197, 160, 89, 0.2) 90deg,
        rgba(197, 160, 89, 0.3) 180deg,
        rgba(197, 160, 89, 0.15) 270deg,
        rgba(197, 160, 89, 0.4) 360deg);
    top: -20%;
    left: -10%;
    animation-delay: 0s;
    animation-name: coachcareBlobMorphGentle;
}

.coachcare-mesh-blob:nth-child(2) {
    width: 40vw;
    height: 40vw;
    max-width: 500px;
    max-height: 500px;
    background: conic-gradient(from 180deg at 50% 50%,
        rgba(197, 160, 89, 0.25) 0deg,
        rgba(197, 160, 89, 0.15) 120deg,
        rgba(197, 160, 89, 0.3) 240deg,
        rgba(197, 160, 89, 0.25) 360deg);
    bottom: -15%;
    right: -5%;
    animation-delay: -7s;
    animation-duration: 25s;
}

.coachcare-mesh-blob:nth-child(3) {
    width: 35vw;
    height: 35vw;
    max-width: 400px;
    max-height: 400px;
    background: radial-gradient(ellipse at center,
        rgba(197, 160, 89, 0.3) 0%,
        rgba(197, 160, 89, 0.1) 50%,
        transparent 70%);
    top: 40%;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    animation-delay: -14s;
    animation-duration: 18s;
}

@keyframes coachcareBlobMorphGentle {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        transform: translate3d(20px, -15px, 0) scale(1.05);
        border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%;
    }
}

@keyframes coachcareBlobMorph {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    25% {
        transform: translate3d(50px, -30px, 0) scale(1.1) rotate(90deg);
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    50% {
        transform: translate3d(-30px, 50px, 0) scale(0.9) rotate(180deg);
        border-radius: 70% 30% 50% 50% / 30% 50% 60% 70%;
    }
    75% {
        transform: translate3d(40px, 30px, 0) scale(1.05) rotate(270deg);
        border-radius: 40% 70% 60% 30% / 70% 40% 50% 60%;
    }
}

.coachcare-mesh-blob:nth-child(3) {
    animation-name: coachcareBlobMorphCentered;
}

@keyframes coachcareBlobMorphCentered {
    0%, 100% {
        transform: translate3d(-50%, 0, 0) scale(1);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        transform: translate3d(-50%, -10px, 0) scale(1.05);
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    }
}

/* Animated Dot Matrix */
.coachcare-dot-matrix {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(197, 160, 89, 0.15) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: coachcareDotShift 30s linear infinite;
    z-index: 1;
}

@keyframes coachcareDotShift {
    0% { background-position: 0 0; }
    100% { background-position: 30px 30px; }
}

/* Glowing Accent Lines */
.coachcare-accent-lines {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.coachcare-accent-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(197, 160, 89, 0.6) 20%,
        rgba(197, 160, 89, 0.8),
        rgba(197, 160, 89, 0.6) 80%,
        transparent);
    animation: coachcareLineSweep 8s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.6), 0 0 40px rgba(197, 160, 89, 0.4);
}

.coachcare-accent-line:nth-child(1) {
    width: 40%;
    top: 25%;
    left: -40%;
    animation-delay: 0s;
}

.coachcare-accent-line:nth-child(2) {
    width: 30%;
    top: 55%;
    left: -30%;
    animation-delay: -3s;
    opacity: 0.7;
}

.coachcare-accent-line:nth-child(3) {
    width: 35%;
    top: 75%;
    left: -35%;
    animation-delay: -6s;
    opacity: 0.5;
}

@keyframes coachcareLineSweep {
    0% { left: -40%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 140%; opacity: 0; }
}

/* Floating Geometric Shapes */
.coachcare-geo-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.coachcare-geo-shape {
    position: absolute;
    border: 1px solid rgba(197, 160, 89, 0.3);
    animation: coachcareGeoFloat 15s ease-in-out infinite;
}

.coachcare-geo-shape.coachcare-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.coachcare-geo-shape.coachcare-square {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 8%;
    animation-delay: -5s;
    transform: rotate(45deg);
}

.coachcare-geo-shape.coachcare-diamond {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 25%;
    animation-delay: -10s;
    transform: rotate(45deg);
}

@keyframes coachcareGeoFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.6;
    }
}

.coachcare-geo-shape.coachcare-square {
    animation-name: coachcareGeoFloatSquare;
}

@keyframes coachcareGeoFloatSquare {
    0%, 100% {
        transform: translateY(0) rotate(45deg);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-20px) rotate(225deg);
        opacity: 0.5;
    }
}

/* Radial Vignette Overlay */
.coachcare-vignette-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center,
        transparent 0%,
        transparent 40%,
        rgba(11, 15, 25, 0.5) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Enhanced Film Grain */
.coachcare-grain-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    animation: coachcareGrainShift 0.5s steps(10) infinite;
    z-index: 2;
    transform: translateZ(0);
    will-change: background-position;
    backface-visibility: hidden;
}

@keyframes coachcareGrainShift {
    0%, 100% { background-position: 0 0; }
    10% { background-position: -2% -2%; }
    20% { background-position: 2% 2%; }
    30% { background-position: -1% 2%; }
    40% { background-position: 2% -1%; }
    50% { background-position: -2% 1%; }
    60% { background-position: 1% -2%; }
    70% { background-position: -1% -1%; }
    80% { background-position: 2% 1%; }
    90% { background-position: -2% 2%; }
}

/* CoachCare Hero Section - Unique Modern Background Styles (Different from theme-two-new-home) */
.coachcare-hero-unique {
    position: relative;
}

.coachcare-hero-waves {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.coachcare-wave {
    position: absolute;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(197, 160, 89, 0.08) 25%,
        rgba(197, 160, 89, 0.15) 50%,
        rgba(197, 160, 89, 0.08) 75%,
        transparent 100%
    );
    animation: coachcareWaveFlow 20s linear infinite;
    opacity: 0.6;
}

.coachcare-wave-1 {
    top: 20%;
    left: -100%;
    height: 2px;
    filter: blur(1px);
    animation-duration: 25s;
}

.coachcare-wave-2 {
    top: 50%;
    left: -100%;
    height: 3px;
    filter: blur(2px);
    animation-duration: 30s;
    animation-delay: -10s;
    opacity: 0.4;
}

.coachcare-wave-3 {
    top: 80%;
    left: -100%;
    height: 2px;
    filter: blur(1px);
    animation-duration: 35s;
    animation-delay: -20s;
    opacity: 0.5;
}

@keyframes coachcareWaveFlow {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

.coachcare-hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(197, 160, 89, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197, 160, 89, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: coachcareGridShift 40s linear infinite;
    opacity: 0.5;
    z-index: 1;
}

@keyframes coachcareGridShift {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

.coachcare-hero-lights {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.coachcare-light-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: coachcareLightPulse 12s ease-in-out infinite;
}

.coachcare-light-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.4) 0%, transparent 70%);
    top: -15%;
    right: 10%;
    animation-delay: 0s;
}

.coachcare-light-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.35) 0%, transparent 70%);
    bottom: -10%;
    left: 15%;
    animation-delay: -4s;
    animation-duration: 15s;
}

.coachcare-light-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -8s;
    animation-duration: 18s;
    animation-name: coachcareLightPulseCentered;
}

@keyframes coachcareLightPulse {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translate3d(30px, -25px, 0) scale(1.15);
        opacity: 0.6;
    }
}

@keyframes coachcareLightPulseCentered {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(calc(-50% + 20px), calc(-50% - 15px)) scale(1.1);
        opacity: 0.5;
    }
}

.coachcare-hero-texture {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cpattern id='grid' width='20' height='20' patternUnits='userSpaceOnUse'%3E%3Cpath d='M 20 0 L 0 0 0 20' fill='none' stroke='%23C5A059' stroke-width='0.5' opacity='0.1'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='100' height='100' fill='url(%23grid)'/%3E%3C/svg%3E");
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

/* Animation Utilities */
.animate-slide-up {
    animation: coachcareSlideUp 0.8s ease-out forwards;
}

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

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }

.animate-fade-in {
    animation: coachcareFadeIn 1s ease-out forwards;
}

@keyframes coachcareFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* CoachCare Why Section Modern Animated Background */

.coachcare-why-section {
    position: relative;
}

/* Subtle Pattern Background */
.coachcare-why-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(197, 160, 89, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: coachcareWhyPatternShift 60s linear infinite;
    opacity: 0.5;
    z-index: 0;
}

@keyframes coachcareWhyPatternShift {
    0% { background-position: 0 0; }
    100% { background-position: 40px 40px; }
}

/* Gradient Orbs */
.coachcare-why-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.25;
    pointer-events: none;
    z-index: 0;
}

.coachcare-why-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.3) 0%, transparent 70%);
    top: -10%;
    left: -5%;
    animation: coachcareWhyOrbFloat 25s ease-in-out infinite;
}

.coachcare-why-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.2) 0%, transparent 70%);
    bottom: -10%;
    right: -5%;
    animation: coachcareWhyOrbFloat 30s ease-in-out infinite;
    animation-delay: -10s;
}

@keyframes coachcareWhyOrbFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
    }
    50% {
        transform: translate3d(30px, -20px, 0) scale(1.1);
    }
}

/* Enhanced Texture Layer */
.coachcare-why-texture-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.coachcare-why-texture-layer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(rgba(197, 160, 89, 0.06) 1px, transparent 1px),
        radial-gradient(rgba(197, 160, 89, 0.04) 0.5px, transparent 0.5px);
    background-size: 50px 50px, 25px 25px;
    background-position: 0 0, 25px 25px;
    animation: coachcareWhyTextureMove 45s linear infinite;
    opacity: 0.6;
}

.coachcare-why-texture-layer::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(30deg, transparent 40%, rgba(197, 160, 89, 0.02) 50%, transparent 60%),
        linear-gradient(-30deg, transparent 40%, rgba(197, 160, 89, 0.02) 50%, transparent 60%);
    background-size: 300px 300px;
    animation: coachcareWhyTextureFlow 35s linear infinite;
    opacity: 0.4;
}

@keyframes coachcareWhyTextureMove {
    0% { background-position: 0 0, 25px 25px; }
    100% { background-position: 50px 50px, 75px 75px; }
}

@keyframes coachcareWhyTextureFlow {
    0% { background-position: 0 0; }
    100% { background-position: 300px 300px; }
}

/* Particle Field */
.coachcare-why-particle-field {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.coachcare-why-particle-field::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 15% 25%, rgba(197, 160, 89, 0.12), transparent),
        radial-gradient(1.5px 1.5px at 45% 55%, rgba(197, 160, 89, 0.1), transparent),
        radial-gradient(2px 2px at 75% 35%, rgba(197, 160, 89, 0.11), transparent),
        radial-gradient(1px 1px at 25% 75%, rgba(197, 160, 89, 0.08), transparent),
        radial-gradient(1.5px 1.5px at 85% 65%, rgba(197, 160, 89, 0.09), transparent),
        radial-gradient(2px 2px at 55% 85%, rgba(197, 160, 89, 0.1), transparent);
    background-size: 200% 200%;
    animation: coachcareWhyParticles 25s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes coachcareWhyParticles {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%, 25% 75%, 75% 25%, 50% 100%;
        opacity: 0.5;
    }
    33% {
        background-position: 50% 50%, 0% 0%, 100% 100%, 75% 25%, 25% 75%, 0% 50%;
        opacity: 0.8;
    }
    66% {
        background-position: 100% 100%, 50% 50%, 0% 0%, 50% 75%, 50% 25%, 100% 0%;
        opacity: 0.6;
    }
}

/* Animated SVG Container */
.coachcare-why-svg-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.coachcare-why-svg {
    position: absolute;
    opacity: 0.35;
    pointer-events: none;
}

/* Hockey Puck - Sliding Animation */
.coachcare-svg-puck {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 3%;
    animation: coachcareWhySlide 20s ease-in-out infinite;
    animation-delay: 0s;
}

@keyframes coachcareWhySlide {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateX(200px) translateY(50px) rotate(90deg);
        opacity: 0.5;
    }
    50% {
        transform: translateX(400px) translateY(0) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translateX(200px) translateY(-50px) rotate(270deg);
        opacity: 0.45;
    }
}

/* Ice Skate - Gliding Animation */
.coachcare-svg-skate {
    width: 120px;
    height: 80px;
    bottom: 25%;
    right: 5%;
    animation: coachcareWhyGlide 18s ease-in-out infinite;
    animation-delay: -4s;
}

@keyframes coachcareWhyGlide {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    33% {
        transform: translate(-150px, -80px) rotate(-5deg);
        opacity: 0.5;
    }
    66% {
        transform: translate(-300px, -40px) rotate(5deg);
        opacity: 0.4;
    }
}

/* Hockey Net - Pulsing Animation */
.coachcare-svg-net {
    width: 150px;
    height: 120px;
    top: 10%;
    right: 8%;
    animation: coachcareWhyPulse 12s ease-in-out infinite;
    animation-delay: -2s;
}

@keyframes coachcareWhyPulse {
    0%, 100% {
        transform: scale(1) translate(0, 0);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2) translate(20px, -20px);
        opacity: 0.5;
    }
}

/* Team Unity - Rotating Animation */
.coachcare-svg-unity {
    width: 120px;
    height: 120px;
    bottom: 15%;
    left: 8%;
    animation: coachcareWhyRotate 15s linear infinite;
    animation-delay: -6s;
}

@keyframes coachcareWhyRotate {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: rotate(180deg) scale(1.15);
        opacity: 0.5;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.3;
    }
}

/* Motion Lines - Flowing Animation */
.coachcare-svg-motion {
    width: 200px;
    height: 100px;
    top: 50%;
    left: 2%;
    animation: coachcareWhyFlow 22s linear infinite;
    animation-delay: -8s;
}

@keyframes coachcareWhyFlow {
    0% {
        transform: translateX(0) translateY(0);
        opacity: 0.3;
    }
    50% {
        transform: translateX(300px) translateY(-30px);
        opacity: 0.5;
    }
    100% {
        transform: translateX(600px) translateY(0);
        opacity: 0.3;
    }
}

/* Achievement Badge - Floating Animation */
.coachcare-svg-badge {
    width: 100px;
    height: 120px;
    top: 30%;
    right: 12%;
    animation: coachcareWhyFloat 16s ease-in-out infinite;
    animation-delay: -10s;
}

@keyframes coachcareWhyFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -40px) rotate(5deg);
        opacity: 0.5;
    }
    50% {
        transform: translate(-20px, -60px) rotate(-5deg);
        opacity: 0.4;
    }
    75% {
        transform: translate(20px, -30px) rotate(3deg);
        opacity: 0.45;
    }
}

/* Ice Crystal - Twinkling Animation */
.coachcare-svg-crystal {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 15%;
    animation: coachcareWhyTwinkle 14s ease-in-out infinite;
    animation-delay: -12s;
}

@keyframes coachcareWhyTwinkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.2;
        filter: brightness(1);
    }
    25% {
        transform: scale(1.3) rotate(90deg);
        opacity: 0.6;
        filter: brightness(1.5);
    }
    50% {
        transform: scale(0.8) rotate(180deg);
        opacity: 0.3;
        filter: brightness(0.8);
    }
    75% {
        transform: scale(1.2) rotate(270deg);
        opacity: 0.5;
        filter: brightness(1.3);
    }
}

/* Flowing Gradient Orbs */
.coachcare-why-flow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    z-index: 0;
}

.coachcare-flow-orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.2) 0%, transparent 70%);
    top: 30%;
    left: -5%;
    animation: coachcareWhyFlowOrb 28s ease-in-out infinite;
    animation-delay: 0s;
}

.coachcare-flow-orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
    bottom: 20%;
    right: -3%;
    animation: coachcareWhyFlowOrb 32s ease-in-out infinite;
    animation-delay: -8s;
}

.coachcare-flow-orb-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.18) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: coachcareWhyFlowOrbCentered 24s ease-in-out infinite;
    animation-delay: -14s;
}

@keyframes coachcareWhyFlowOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    33% {
        transform: translate(100px, -50px) scale(1.2);
        opacity: 0.5;
    }
    66% {
        transform: translate(-50px, 80px) scale(0.9);
        opacity: 0.4;
    }
}

@keyframes coachcareWhyFlowOrbCentered {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(calc(-50% + 60px), calc(-50% - 40px)) scale(1.15);
        opacity: 0.5;
    }
}

/* Responsive adjustments for SVGs */
@media (max-width: 768px) {
    .coachcare-why-svg {
        opacity: 0.2;
    }
    
    .coachcare-svg-puck,
    .coachcare-svg-skate,
    .coachcare-svg-net,
    .coachcare-svg-unity,
    .coachcare-svg-motion,
    .coachcare-svg-badge,
    .coachcare-svg-crystal {
        width: 60px;
        height: auto;
    }
    
    @keyframes coachcareWhySlide {
        0%, 100% {
            transform: translateX(0) translateY(0) rotate(0deg);
        }
        50% {
            transform: translateX(100px) translateY(30px) rotate(90deg);
        }
    }
    
    @keyframes coachcareWhyGlide {
        0%, 100% {
            transform: translate(0, 0) rotate(0deg);
        }
        50% {
            transform: translate(-80px, -40px) rotate(-3deg);
        }
    }
    
    @keyframes coachcareWhyFlow {
        0% {
            transform: translateX(0) translateY(0);
        }
        100% {
            transform: translateX(200px) translateY(-20px);
        }
    }
}

/* CoachCare Owner Message Section */
.coachcare-owner-section {
    position: relative;
}

.coachcare-owner-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(197, 160, 89, 0.14) 1.5px, transparent 1.5px);
    background-size: 50px 50px;
    animation: coachcareOwnerPatternShift 80s linear infinite;
    opacity: 0.65;
    z-index: 0;
}

@keyframes coachcareOwnerPatternShift {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

.coachcare-owner-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    animation: coachcareOwnerGlowPulse 8s ease-in-out infinite;
}

@keyframes coachcareOwnerGlowPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.2); }
}

/* Enhanced Animated Texture Layer */
.coachcare-owner-texture-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.coachcare-owner-texture-layer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(rgba(197, 160, 89, 0.08) 1px, transparent 1px),
        radial-gradient(rgba(197, 160, 89, 0.06) 0.5px, transparent 0.5px);
    background-size: 40px 40px, 20px 20px;
    background-position: 0 0, 20px 20px;
    animation: coachcareOwnerTextureMove 60s linear infinite;
    opacity: 0.7;
}

.coachcare-owner-texture-layer::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(45deg, transparent 30%, rgba(197, 160, 89, 0.03) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(197, 160, 89, 0.03) 50%, transparent 70%);
    background-size: 200px 200px;
    animation: coachcareOwnerTextureFlow 40s linear infinite;
    opacity: 0.5;
}

@keyframes coachcareOwnerTextureMove {
    0% { background-position: 0 0, 20px 20px; }
    100% { background-position: 40px 40px, 60px 60px; }
}

@keyframes coachcareOwnerTextureFlow {
    0% { background-position: 0 0; }
    100% { background-position: 200px 200px; }
}

/* Animated SVG Container */
.coachcare-owner-svg-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.coachcare-owner-svg {
    position: absolute;
    opacity: 0.4;
    pointer-events: none;
}

/* Hockey Stick SVG Animation */
.coachcare-svg-hockey-stick {
    width: 120px;
    height: 240px;
    top: 10%;
    left: 5%;
    animation: coachcareSvgFloatRotate 25s ease-in-out infinite;
    animation-delay: 0s;
}

/* Trophy SVG Animation */
.coachcare-svg-trophy {
    width: 100px;
    height: 120px;
    top: 15%;
    right: 8%;
    animation: coachcareSvgFloatPulse 20s ease-in-out infinite;
    animation-delay: -5s;
}

/* Star SVG Animation */
.coachcare-svg-star {
    width: 100px;
    height: 100px;
    top: 60%;
    left: 10%;
    animation: coachcareSvgRotateGlow 18s linear infinite;
    animation-delay: -8s;
}

/* Arrow SVG Animation */
.coachcare-svg-arrow {
    width: 80px;
    height: 120px;
    bottom: 20%;
    right: 12%;
    animation: coachcareSvgFloatUp 22s ease-in-out infinite;
    animation-delay: -12s;
}

/* Circle SVG Animation */
.coachcare-svg-circle {
    width: 120px;
    height: 120px;
    top: 45%;
    right: 5%;
    animation: coachcareSvgPulseRotate 16s ease-in-out infinite;
    animation-delay: -3s;
}

/* Whistle SVG Animation */
.coachcare-svg-whistle {
    width: 100px;
    height: 60px;
    bottom: 15%;
    left: 8%;
    animation: coachcareSvgFloatRotate 24s ease-in-out infinite;
    animation-delay: -15s;
}

/* SVG Animation Keyframes */
@keyframes coachcareSvgFloatRotate {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -20px) rotate(5deg) scale(1.05);
        opacity: 0.5;
    }
    50% {
        transform: translate(-20px, 30px) rotate(-5deg) scale(0.95);
        opacity: 0.4;
    }
    75% {
        transform: translate(20px, 20px) rotate(3deg) scale(1.02);
        opacity: 0.45;
    }
}

@keyframes coachcareSvgFloatPulse {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.35;
    }
    33% {
        transform: translate(-25px, 15px) scale(1.1);
        opacity: 0.5;
    }
    66% {
        transform: translate(20px, -15px) scale(0.9);
        opacity: 0.4;
    }
}

@keyframes coachcareSvgRotateGlow {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.3;
        filter: drop-shadow(0 0 5px rgba(197, 160, 89, 0.2));
    }
    50% {
        transform: rotate(180deg) scale(1.15);
        opacity: 0.5;
        filter: drop-shadow(0 0 15px rgba(197, 160, 89, 0.4));
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.3;
        filter: drop-shadow(0 0 5px rgba(197, 160, 89, 0.2));
    }
}

@keyframes coachcareSvgFloatUp {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.35;
    }
    25% {
        transform: translate(15px, -30px) rotate(5deg);
        opacity: 0.5;
    }
    50% {
        transform: translate(-10px, -50px) rotate(-3deg);
        opacity: 0.45;
    }
    75% {
        transform: translate(20px, -25px) rotate(3deg);
        opacity: 0.4;
    }
}

@keyframes coachcareSvgPulseRotate {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: scale(1.2) rotate(90deg);
        opacity: 0.5;
    }
    50% {
        transform: scale(0.9) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: scale(1.1) rotate(270deg);
        opacity: 0.45;
    }
}

/* Additional Particle Effects */
.coachcare-owner-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(197, 160, 89, 0.15), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(197, 160, 89, 0.12), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(197, 160, 89, 0.1), transparent),
        radial-gradient(1px 1px at 80% 20%, rgba(197, 160, 89, 0.08), transparent),
        radial-gradient(2px 2px at 30% 80%, rgba(197, 160, 89, 0.13), transparent);
    background-size: 200% 200%;
    animation: coachcareOwnerParticles 30s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes coachcareOwnerParticles {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%, 80% 20%, 30% 80%;
        opacity: 0.6;
    }
    50% {
        background-position: 100% 100%, 0% 0%, 30% 70%, 20% 80%, 70% 30%;
        opacity: 0.8;
    }
}

/* Responsive adjustments for SVGs */
@media (max-width: 768px) {
    .coachcare-owner-svg {
        opacity: 0.25;
    }
    
    .coachcare-svg-hockey-stick,
    .coachcare-svg-trophy,
    .coachcare-svg-star,
    .coachcare-svg-arrow,
    .coachcare-svg-circle,
    .coachcare-svg-whistle {
        width: 60px;
        height: auto;
    }
}

/* CoachCare Partners Section */
.coachcare-partners-section {
    position: relative;
}

.coachcare-partners-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(90deg, transparent 0%, rgba(197, 160, 89, 0.12) 50%, transparent 100%),
        radial-gradient(circle at 30% 50%, rgba(197, 160, 89, 0.08) 0%, transparent 50%);
    z-index: 0;
    animation: coachcarePartnersGlow 8s ease-in-out infinite;
}

@keyframes coachcarePartnersGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* CoachCare Featured Coaches Section */
.coachcare-coaches-section {
    position: relative;
}

.coachcare-coaches-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(197, 160, 89, 0.15) 1.5px, transparent 1.5px);
    background-size: 45px 45px;
    opacity: 0.6;
    z-index: 0;
    animation: coachcareCoachesPatternShift 50s linear infinite;
}

@keyframes coachcareCoachesPatternShift {
    0% { background-position: 0 0; }
    100% { background-position: 45px 45px; }
}

/* CoachCare Features Section */
.coachcare-features-section {
    position: relative;
}

.coachcare-features-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(197, 160, 89, 0.18) 1.5px, transparent 1.5px);
    background-size: 35px 35px;
    opacity: 0.7;
    z-index: 0;
    animation: coachcareFeaturesPatternShift 45s linear infinite;
}

@keyframes coachcareFeaturesPatternShift {
    0% { background-position: 0 0; }
    100% { background-position: 35px 35px; }
}

.coachcare-features-orb {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    animation: coachcareFeaturesOrbFloat 20s ease-in-out infinite;
}

@keyframes coachcareFeaturesOrbFloat {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(20px, -15px, 0) scale(1.1); }
}

/* CoachCare Benefits Section */
.coachcare-benefits-section {
    position: relative;
}

/* Modern Mesh Gradient Background */
.coachcare-benefits-mesh-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(197, 160, 89, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(197, 160, 89, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(197, 160, 89, 0.08) 0%, transparent 70%);
    animation: coachcareBenefitsMeshMove 30s ease-in-out infinite;
}

@keyframes coachcareBenefitsMeshMove {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%;
        opacity: 1;
    }
    50% {
        background-position: 100% 100%, 0% 0%, 30% 70%;
        opacity: 0.8;
    }
}

/* Modern Noise Texture */
.coachcare-benefits-noise-texture {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    animation: coachcareBenefitsNoiseShift 0.3s steps(10) infinite;
    pointer-events: none;
}

@keyframes coachcareBenefitsNoiseShift {
    0%, 100% { background-position: 0 0; }
    10% { background-position: -2% -2%; }
    20% { background-position: 2% 2%; }
    30% { background-position: -1% 2%; }
    40% { background-position: 2% -1%; }
    50% { background-position: -2% 1%; }
    60% { background-position: 1% -2%; }
    70% { background-position: -1% -1%; }
    80% { background-position: 2% 1%; }
    90% { background-position: -2% 2%; }
}

/* Gradient Overlay with Modern Pattern */
.coachcare-benefits-gradient-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: 
        linear-gradient(135deg, transparent 0%, rgba(197, 160, 89, 0.03) 25%, transparent 50%, rgba(197, 160, 89, 0.03) 75%, transparent 100%),
        linear-gradient(45deg, transparent 0%, rgba(197, 160, 89, 0.02) 25%, transparent 50%, rgba(197, 160, 89, 0.02) 75%, transparent 100%);
    background-size: 400px 400px, 300px 300px;
    animation: coachcareBenefitsGradientFlow 25s linear infinite;
    opacity: 0.6;
    pointer-events: none;
}

@keyframes coachcareBenefitsGradientFlow {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 400px 400px, -300px 300px; }
}

/* Animated SVG Container */
.coachcare-benefits-svg-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.coachcare-benefits-svg {
    position: absolute;
    opacity: 0.4;
    pointer-events: none;
}

/* Gear SVG - Rotating Animation */
.coachcare-svg-gear {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 5%;
    animation: coachcareBenefitsRotate 20s linear infinite;
    animation-delay: 0s;
}

@keyframes coachcareBenefitsRotate {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: rotate(180deg) scale(1.1);
        opacity: 0.5;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.3;
    }
}

/* Apparel Icon - Floating Animation */
.coachcare-svg-apparel {
    width: 100px;
    height: 120px;
    top: 25%;
    right: 8%;
    animation: coachcareBenefitsFloat 18s ease-in-out infinite;
    animation-delay: -3s;
}

@keyframes coachcareBenefitsFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    33% {
        transform: translate(-40px, -50px) rotate(5deg);
        opacity: 0.5;
    }
    66% {
        transform: translate(30px, -30px) rotate(-5deg);
        opacity: 0.4;
    }
}

/* Network/Connection - Pulsing Animation */
.coachcare-svg-network {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 8%;
    animation: coachcareBenefitsPulse 14s ease-in-out infinite;
    animation-delay: -6s;
}

@keyframes coachcareBenefitsPulse {
    0%, 100% {
        transform: scale(1) translate(0, 0);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.25) translate(20px, -20px);
        opacity: 0.6;
    }
}

/* Discount Tag - Swinging Animation */
.coachcare-svg-discount {
    width: 100px;
    height: 80px;
    top: 50%;
    right: 5%;
    transform-origin: top center;
    animation: coachcareBenefitsSwing 16s ease-in-out infinite;
    animation-delay: -9s;
}

@keyframes coachcareBenefitsSwing {
    0%, 100% {
        transform: rotate(0deg) translateY(0);
        opacity: 0.3;
    }
    25% {
        transform: rotate(8deg) translateY(-20px);
        opacity: 0.5;
    }
    50% {
        transform: rotate(0deg) translateY(-40px);
        opacity: 0.4;
    }
    75% {
        transform: rotate(-8deg) translateY(-20px);
        opacity: 0.45;
    }
}

/* Event/Calendar - Sliding Animation */
.coachcare-svg-event {
    width: 100px;
    height: 100px;
    bottom: 30%;
    right: 12%;
    animation: coachcareBenefitsSlide 22s ease-in-out infinite;
    animation-delay: -12s;
}

@keyframes coachcareBenefitsSlide {
    0%, 100% {
        transform: translateX(0) translateY(0);
        opacity: 0.3;
    }
    25% {
        transform: translateX(100px) translateY(-30px);
        opacity: 0.5;
    }
    50% {
        transform: translateX(200px) translateY(0);
        opacity: 0.4;
    }
    75% {
        transform: translateX(100px) translateY(30px);
        opacity: 0.45;
    }
}

/* Trophy/Award - Glowing Animation */
.coachcare-svg-award {
    width: 100px;
    height: 120px;
    top: 40%;
    left: 12%;
    animation: coachcareBenefitsGlow 15s ease-in-out infinite;
    animation-delay: -5s;
}

@keyframes coachcareBenefitsGlow {
    0%, 100% {
        transform: scale(1) translate(0, 0);
        opacity: 0.3;
        filter: drop-shadow(0 0 5px rgba(197, 160, 89, 0.2));
    }
    50% {
        transform: scale(1.15) translate(15px, -15px);
        opacity: 0.6;
        filter: drop-shadow(0 0 20px rgba(197, 160, 89, 0.5));
    }
}

/* Star/Excellence - Twinkling Animation */
.coachcare-svg-star {
    width: 100px;
    height: 100px;
    bottom: 15%;
    right: 15%;
    animation: coachcareBenefitsTwinkle 13s ease-in-out infinite;
    animation-delay: -8s;
}

@keyframes coachcareBenefitsTwinkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.2;
        filter: brightness(1);
    }
    25% {
        transform: scale(1.4) rotate(90deg);
        opacity: 0.7;
        filter: brightness(1.8);
    }
    50% {
        transform: scale(0.9) rotate(180deg);
        opacity: 0.3;
        filter: brightness(0.7);
    }
    75% {
        transform: scale(1.3) rotate(270deg);
        opacity: 0.6;
        filter: brightness(1.5);
    }
}

/* Flowing Light Orbs */
.coachcare-benefits-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.coachcare-benefits-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.2) 0%, transparent 70%);
    top: -10%;
    left: -5%;
    animation: coachcareBenefitsOrbFloat 28s ease-in-out infinite;
    animation-delay: 0s;
}

.coachcare-benefits-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.18) 0%, transparent 70%);
    bottom: -10%;
    right: -5%;
    animation: coachcareBenefitsOrbFloat 32s ease-in-out infinite;
    animation-delay: -10s;
}

.coachcare-benefits-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: coachcareBenefitsOrbCentered 26s ease-in-out infinite;
    animation-delay: -15s;
}

@keyframes coachcareBenefitsOrbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    33% {
        transform: translate(80px, -60px) scale(1.2);
        opacity: 0.6;
    }
    66% {
        transform: translate(-50px, 70px) scale(0.95);
        opacity: 0.5;
    }
}

@keyframes coachcareBenefitsOrbCentered {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(calc(-50% + 70px), calc(-50% - 50px)) scale(1.2);
        opacity: 0.5;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .coachcare-benefits-svg {
        opacity: 0.25;
    }
    
    .coachcare-svg-gear,
    .coachcare-svg-apparel,
    .coachcare-svg-network,
    .coachcare-svg-discount,
    .coachcare-svg-event,
    .coachcare-svg-award,
    .coachcare-svg-star {
        width: 60px;
        height: auto;
    }
    
    @keyframes coachcareBenefitsSlide {
        0%, 100% {
            transform: translateX(0) translateY(0);
        }
        50% {
            transform: translateX(80px) translateY(-20px);
        }
    }
}

/* CoachCare Unsung Leader Section */
.coachcare-unsung-section {
    position: relative;
}

.coachcare-unsung-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(197, 160, 89, 0.14) 1.5px, transparent 1.5px);
    background-size: 50px 50px;
    animation: coachcareUnsungPatternShift 90s linear infinite;
    opacity: 0.65;
    z-index: 0;
}

@keyframes coachcareUnsungPatternShift {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

.coachcare-unsung-glow {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(70px);
    z-index: 0;
    animation: coachcareUnsungGlowPulse 10s ease-in-out infinite;
}

@keyframes coachcareUnsungGlowPulse {
    0%, 100% { opacity: 0.4; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.6; transform: translateX(-50%) scale(1.15); }
}

/* CoachCare Economics Section */
.coachcare-economics-section {
    position: relative;
}

.coachcare-economics-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(197, 160, 89, 0.12) 1.5px, transparent 1.5px);
    background-size: 60px 60px;
    opacity: 0.6;
    z-index: 0;
    animation: coachcareEconomicsPatternShift 60s linear infinite;
}

@keyframes coachcareEconomicsPatternShift {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

/* CoachCare Tiered Program Section */
.coachcare-tiered-section {
    position: relative;
}

/* Modern Mesh Gradient Background */
.coachcare-tiered-mesh-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    background: 
        radial-gradient(ellipse at 15% 25%, rgba(197, 160, 89, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 85% 75%, rgba(197, 160, 89, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(197, 160, 89, 0.08) 0%, transparent 70%);
    animation: coachcareTieredMeshMove 35s ease-in-out infinite;
}

@keyframes coachcareTieredMeshMove {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%;
        opacity: 1;
    }
    50% {
        background-position: 100% 100%, 0% 0%, 25% 75%;
        opacity: 0.85;
    }
}

/* Modern Noise Texture */
.coachcare-tiered-noise-texture {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    animation: coachcareTieredNoiseShift 0.4s steps(10) infinite;
    pointer-events: none;
}

@keyframes coachcareTieredNoiseShift {
    0%, 100% { background-position: 0 0; }
    10% { background-position: -2% -2%; }
    20% { background-position: 2% 2%; }
    30% { background-position: -1% 2%; }
    40% { background-position: 2% -1%; }
    50% { background-position: -2% 1%; }
    60% { background-position: 1% -2%; }
    70% { background-position: -1% -1%; }
    80% { background-position: 2% 1%; }
    90% { background-position: -2% 2%; }
}

/* Gradient Overlay with Modern Pattern */
.coachcare-tiered-gradient-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: 
        linear-gradient(120deg, transparent 0%, rgba(197, 160, 89, 0.025) 25%, transparent 50%, rgba(197, 160, 89, 0.025) 75%, transparent 100%),
        linear-gradient(60deg, transparent 0%, rgba(197, 160, 89, 0.02) 25%, transparent 50%, rgba(197, 160, 89, 0.02) 75%, transparent 100%);
    background-size: 500px 500px, 350px 350px;
    animation: coachcareTieredGradientFlow 30s linear infinite;
    opacity: 0.5;
    pointer-events: none;
}

@keyframes coachcareTieredGradientFlow {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 500px 500px, -350px 350px; }
}

/* Animated SVG Container */
.coachcare-tiered-svg-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.coachcare-tiered-svg {
    position: absolute;
    opacity: 0.35;
    pointer-events: none;
}

/* Tier Badge - Rotating Animation */
.coachcare-svg-tier-badge {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 5%;
    animation: coachcareTieredRotate 18s linear infinite;
    animation-delay: 0s;
}

@keyframes coachcareTieredRotate {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: rotate(180deg) scale(1.1);
        opacity: 0.5;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.3;
    }
}

/* Growth Arrow - Sliding Animation */
.coachcare-svg-growth {
    width: 80px;
    height: 120px;
    top: 20%;
    right: 8%;
    animation: coachcareTieredSlide 24s ease-in-out infinite;
    animation-delay: -4s;
}

@keyframes coachcareTieredSlide {
    0%, 100% {
        transform: translateX(0) translateY(0);
        opacity: 0.3;
    }
    25% {
        transform: translateX(-120px) translateY(40px);
        opacity: 0.5;
    }
    50% {
        transform: translateX(-240px) translateY(0);
        opacity: 0.4;
    }
    75% {
        transform: translateX(-120px) translateY(-40px);
        opacity: 0.45;
    }
}

/* Value Coin - Floating Animation */
.coachcare-svg-value {
    width: 100px;
    height: 100px;
    bottom: 25%;
    left: 8%;
    animation: coachcareTieredFloat 20s ease-in-out infinite;
    animation-delay: -8s;
}

@keyframes coachcareTieredFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    33% {
        transform: translate(50px, -60px) rotate(90deg);
        opacity: 0.5;
    }
    66% {
        transform: translate(-30px, -40px) rotate(180deg);
        opacity: 0.4;
    }
}

/* Excellence Star - Twinkling Animation */
.coachcare-svg-excellence {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 5%;
    animation: coachcareTieredTwinkle 16s ease-in-out infinite;
    animation-delay: -12s;
}

@keyframes coachcareTieredTwinkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.25;
        filter: brightness(1);
    }
    25% {
        transform: scale(1.35) rotate(90deg);
        opacity: 0.65;
        filter: brightness(1.7);
    }
    50% {
        transform: scale(0.85) rotate(180deg);
        opacity: 0.35;
        filter: brightness(0.8);
    }
    75% {
        transform: scale(1.25) rotate(270deg);
        opacity: 0.55;
        filter: brightness(1.4);
    }
}

/* Connection Network - Pulsing Animation */
.coachcare-svg-connection {
    width: 120px;
    height: 120px;
    bottom: 20%;
    right: 10%;
    animation: coachcareTieredPulse 15s ease-in-out infinite;
    animation-delay: -6s;
}

@keyframes coachcareTieredPulse {
    0%, 100% {
        transform: scale(1) translate(0, 0);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.3) translate(25px, -25px);
        opacity: 0.6;
    }
}

/* Award Trophy - Glowing Animation */
.coachcare-svg-award {
    width: 100px;
    height: 120px;
    top: 30%;
    left: 12%;
    animation: coachcareTieredGlow 17s ease-in-out infinite;
    animation-delay: -10s;
}

@keyframes coachcareTieredGlow {
    0%, 100% {
        transform: scale(1) translate(0, 0);
        opacity: 0.3;
        filter: drop-shadow(0 0 5px rgba(197, 160, 89, 0.2));
    }
    50% {
        transform: scale(1.2) translate(20px, -20px);
        opacity: 0.6;
        filter: drop-shadow(0 0 25px rgba(197, 160, 89, 0.5));
    }
}

/* Checkmark - Floating Animation */
.coachcare-svg-checkmark {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 15%;
    animation: coachcareTieredCheckFloat 19s ease-in-out infinite;
    animation-delay: -14s;
}

@keyframes coachcareTieredCheckFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translate(40px, -50px) rotate(5deg);
        opacity: 0.5;
    }
    50% {
        transform: translate(-20px, -70px) rotate(-5deg);
        opacity: 0.4;
    }
    75% {
        transform: translate(30px, -40px) rotate(3deg);
        opacity: 0.45;
    }
}

/* Flowing Light Orbs */
.coachcare-tiered-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(75px);
    pointer-events: none;
    z-index: 0;
}

.coachcare-tiered-orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.18) 0%, transparent 70%);
    top: -10%;
    left: -5%;
    animation: coachcareTieredOrbFloat 30s ease-in-out infinite;
    animation-delay: 0s;
}

.coachcare-tiered-orb-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
    bottom: -10%;
    right: -5%;
    animation: coachcareTieredOrbFloat 34s ease-in-out infinite;
    animation-delay: -12s;
}

.coachcare-tiered-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.12) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: coachcareTieredOrbCentered 28s ease-in-out infinite;
    animation-delay: -18s;
}

@keyframes coachcareTieredOrbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    33% {
        transform: translate(90px, -70px) scale(1.25);
        opacity: 0.6;
    }
    66% {
        transform: translate(-60px, 80px) scale(0.9);
        opacity: 0.5;
    }
}

@keyframes coachcareTieredOrbCentered {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.35;
    }
    50% {
        transform: translate(calc(-50% + 80px), calc(-50% - 60px)) scale(1.3);
        opacity: 0.55;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .coachcare-tiered-svg {
        opacity: 0.2;
    }
    
    .coachcare-svg-tier-badge,
    .coachcare-svg-growth,
    .coachcare-svg-value,
    .coachcare-svg-excellence,
    .coachcare-svg-connection,
    .coachcare-svg-award,
    .coachcare-svg-checkmark {
        width: 60px;
        height: auto;
    }
    
    @keyframes coachcareTieredSlide {
        0%, 100% {
            transform: translateX(0) translateY(0);
        }
        50% {
            transform: translateX(-80px) translateY(30px);
        }
    }
}

/* CoachCare Network Section */
.coachcare-network-section {
    position: relative;
}

.coachcare-network-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(197, 160, 89, 0.16) 1.5px, transparent 1.5px);
    background-size: 38px 38px;
    opacity: 0.65;
    z-index: 0;
    animation: coachcareNetworkPatternShift 52s linear infinite;
}

@keyframes coachcareNetworkPatternShift {
    0% { background-position: 0 0; }
    100% { background-position: 38px 38px; }
}

.coachcare-network-orb {
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.18) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(65px);
    z-index: 0;
    animation: coachcareNetworkOrbFloat 25s ease-in-out infinite;
}

@keyframes coachcareNetworkOrbFloat {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(25px, -18px, 0) scale(1.08); }
}

/* CoachCare CTA Section */
.coachcare-cta-section {
    position: relative;
}

.coachcare-cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(197, 160, 89, 0.18) 1.5px, transparent 1.5px);
    background-size: 45px 45px;
    animation: coachcareCTAPatternShift 70s linear infinite;
    opacity: 0.7;
    z-index: 0;
}

@keyframes coachcareCTAPatternShift {
    0% { background-position: 0 0; }
    100% { background-position: 45px 45px; }
}

.coachcare-cta-glow-1 {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(75px);
    z-index: 0;
    animation: coachcareCTAGlowFloat 15s ease-in-out infinite;
}

.coachcare-cta-glow-2 {
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(70px);
    z-index: 0;
    animation: coachcareCTAGlowFloat 18s ease-in-out infinite;
    animation-delay: -7s;
}

@keyframes coachcareCTAGlowFloat {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.4; }
    50% { transform: translate3d(30px, -25px, 0) scale(1.2); opacity: 0.6; }
}

/* ============================================
   Coach Detail Page - Modern Aesthetic Animations
   ============================================ */

/* Coach Hero Section Animations */
.coach-detail-hero-section {
    position: relative;
}

/* Modern Mesh Gradient Background */
.coach-detail-hero-mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: 
        radial-gradient(ellipse at 25% 35%, rgba(197, 160, 89, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 65%, rgba(197, 160, 89, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(197, 160, 89, 0.08) 0%, transparent 60%);
    animation: coachDetailHeroMesh 25s ease-in-out infinite;
}

@keyframes coachDetailHeroMesh {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%;
        opacity: 1;
    }
    50% {
        background-position: 100% 100%, 0% 0%, 30% 70%;
        opacity: 0.85;
    }
}

/* Animated Wave Background */
.coach-detail-hero-waves {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.coach-detail-hero-waves::before,
.coach-detail-hero-waves::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(197, 160, 89, 0.03) 50%,
        transparent 70%
    );
    animation: coachDetailWaveFlow 20s linear infinite;
}

.coach-detail-hero-waves::after {
    animation-duration: 25s;
    animation-direction: reverse;
    background: linear-gradient(
        -45deg,
        transparent 30%,
        rgba(197, 160, 89, 0.02) 50%,
        transparent 70%
    );
}

@keyframes coachDetailWaveFlow {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Particle Field */
.coach-detail-hero-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(197, 160, 89, 0.1), transparent),
        radial-gradient(1.5px 1.5px at 60% 70%, rgba(197, 160, 89, 0.08), transparent),
        radial-gradient(2px 2px at 40% 50%, rgba(197, 160, 89, 0.09), transparent);
    background-size: 200% 200%;
    animation: coachDetailParticles 20s ease-in-out infinite;
    opacity: 0.6;
    pointer-events: none;
}

@keyframes coachDetailParticles {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%;
    }
    50% {
        background-position: 100% 100%, 0% 0%, 30% 70%;
    }
}

/* Hero SVG Container */
.coach-detail-hero-svg-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.coach-detail-svg {
    position: absolute;
    opacity: 0.4;
    pointer-events: none;
}

/* Morphing Blob Animation */
.coach-svg-blob {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 5%;
    animation: coachDetailBlobMorph 18s ease-in-out infinite;
    animation-delay: 0s;
}

@keyframes coachDetailBlobMorph {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    25% {
        transform: translate(50px, -30px) scale(1.1);
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    50% {
        transform: translate(-30px, 50px) scale(0.95);
        border-radius: 70% 30% 50% 50% / 30% 50% 60% 70%;
    }
    75% {
        transform: translate(40px, 30px) scale(1.05);
        border-radius: 40% 70% 60% 30% / 70% 40% 50% 60%;
    }
}

/* Wave Pattern Animation */
.coach-svg-wave {
    width: 400px;
    height: 150px;
    bottom: 15%;
    left: 3%;
    animation: coachDetailWaveMove 22s linear infinite;
    animation-delay: -5s;
}

@keyframes coachDetailWaveMove {
    0% {
        transform: translateX(0) translateY(0);
        opacity: 0.3;
    }
    50% {
        transform: translateX(200px) translateY(-40px);
        opacity: 0.5;
    }
    100% {
        transform: translateX(400px) translateY(0);
        opacity: 0.3;
    }
}

/* Courses Section - Full Background */
.coach-detail-courses-section {
    position: relative;
    width: 100%;
}

.coach-detail-courses-mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: 
        radial-gradient(ellipse at 20% 25%, rgba(197, 160, 89, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 75%, rgba(197, 160, 89, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(197, 160, 89, 0.06) 0%, transparent 60%);
    animation: coachDetailCoursesMesh 32s ease-in-out infinite;
    pointer-events: none;
    isolation: isolate;
}

@keyframes coachDetailCoursesMesh {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%;
        opacity: 1;
    }
    50% {
        background-position: 100% 100%, 0% 0%, 30% 70%;
        opacity: 0.85;
    }
}

.coach-detail-courses-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: 
        radial-gradient(1.5px 1.5px at 25% 25%, rgba(197, 160, 89, 0.12), transparent),
        radial-gradient(1px 1px at 75% 75%, rgba(197, 160, 89, 0.1), transparent),
        radial-gradient(2px 2px at 50% 50%, rgba(197, 160, 89, 0.08), transparent),
        radial-gradient(1px 1px at 30% 70%, rgba(197, 160, 89, 0.09), transparent);
    background-size: 300% 300%;
    animation: coachDetailCoursesParticles 28s ease-in-out infinite;
    opacity: 0.6;
    pointer-events: none;
    isolation: isolate;
}

@keyframes coachDetailCoursesParticles {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%, 30% 70%;
    }
    50% {
        background-position: 100% 100%, 0% 0%, 30% 70%, 70% 30%;
    }
}

.coach-detail-courses-waves {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    isolation: isolate;
}

.coach-detail-courses-waves::before,
.coach-detail-courses-waves::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        60deg,
        transparent 35%,
        rgba(197, 160, 89, 0.03) 50%,
        transparent 65%
    );
    animation: coachDetailCoursesWaveFlow 22s linear infinite;
}

.coach-detail-courses-waves::after {
    animation-duration: 28s;
    animation-direction: reverse;
    background: linear-gradient(
        -60deg,
        transparent 35%,
        rgba(197, 160, 89, 0.02) 50%,
        transparent 65%
    );
}

@keyframes coachDetailCoursesWaveFlow {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.coach-detail-courses-svg-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    isolation: isolate;
}

/* Products Section - Full Background (Different Animation Style) */
.coach-detail-products-section {
    position: relative;
    width: 100%;
}

/* Conic Gradient Mesh - Different from radial */
.coach-detail-products-mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        /* conic-gradient(from 45deg at 25% 35%, rgba(197, 160, 89, 0.06) 0deg, transparent 60deg, rgba(197, 160, 89, 0.08) 120deg, transparent 180deg, rgba(197, 160, 89, 0.05) 240deg, transparent 300deg, rgba(197, 160, 89, 0.06) 360deg), */
        conic-gradient(from 225deg at 75% 65%, rgba(197, 160, 89, 0.05) 0deg, transparent 80deg, rgba(197, 160, 89, 0.07) 160deg, transparent 240deg, rgba(197, 160, 89, 0.04) 320deg, transparent 360deg),
        radial-gradient(ellipse at 50% 50%, rgba(197, 160, 89, 0.03) 0%, transparent 70%);
    background-size: 450px 450px, 380px 380px, 100% 100%;
    animation: coachDetailProductsMesh 42s ease-in-out infinite;
    pointer-events: none;
    isolation: isolate;
}

@keyframes coachDetailProductsMesh {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 0 0;
        opacity: 1;
    }
    33% {
        background-position: 50% 50%, 50% 50%, 0 0;
        opacity: 0.9;
    }
    66% {
        background-position: 100% 100%, 0% 0%, 0 0;
        opacity: 0.85;
    }
}

/* Grid Pattern Instead of Particles */
.coach-detail-products-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: 
        linear-gradient(rgba(197, 160, 89, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197, 160, 89, 0.08) 1px, transparent 1px),
        linear-gradient(rgba(197, 160, 89, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197, 160, 89, 0.04) 1px, transparent 1px);
    background-size: 60px 60px, 60px 60px, 30px 30px, 30px 30px;
    background-position: 0 0, 0 0, 30px 30px, 30px 30px;
    animation: coachDetailProductsGrid 40s linear infinite;
    opacity: 0.5;
    pointer-events: none;
}

@keyframes coachDetailProductsGrid {
    0% {
        background-position: 0 0, 0 0, 30px 30px, 30px 30px;
    }
    100% {
        background-position: 60px 60px, 60px 60px, 90px 90px, 90px 90px;
    }
}

/* Flowing Gradient Lines Instead of Rotating Waves */
.coach-detail-products-waves {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    isolation: isolate;
}

.coach-detail-products-waves::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 2px;
    top: 20%;
    left: -50%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(197, 160, 89, 0.15) 20%,
        rgba(197, 160, 89, 0.25) 50%,
        rgba(197, 160, 89, 0.15) 80%,
        transparent 100%
    );
    animation: coachDetailProductsLineFlow 15s linear infinite;
    filter: blur(1px);
}

.coach-detail-products-waves::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 2px;
    top: 60%;
    left: -50%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(197, 160, 89, 0.12) 20%,
        rgba(197, 160, 89, 0.2) 50%,
        rgba(197, 160, 89, 0.12) 80%,
        transparent 100%
    );
    animation: coachDetailProductsLineFlow 18s linear infinite;
    animation-delay: -5s;
    filter: blur(1px);
}

@keyframes coachDetailProductsLineFlow {
    0% {
        transform: translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(66.67%);
        opacity: 0;
    }
}

.coach-detail-products-svg-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    isolation: isolate;
}

/* Products Section SVG Animations (Different from Courses) */
.coach-svg-hexagon {
    width: 120px;
    height: 120px;
    top: 15%;
    right: 8%;
    animation: coachDetailHexagonRotate 20s linear infinite;
    animation-delay: 0s;
}

@keyframes coachDetailHexagonRotate {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: rotate(180deg) scale(1.2);
        opacity: 0.5;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.3;
    }
}

.coach-svg-diamond {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 10%;
    animation: coachDetailDiamondPulse 16s ease-in-out infinite;
    animation-delay: -6s;
}

@keyframes coachDetailDiamondPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: scale(1.3) rotate(45deg);
        opacity: 0.5;
    }
    50% {
        transform: scale(0.9) rotate(90deg);
        opacity: 0.4;
    }
    75% {
        transform: scale(1.2) rotate(135deg);
        opacity: 0.45;
    }
}

.coach-svg-flow-lines {
    width: 300px;
    height: 150px;
    top: 50%;
    left: 5%;
    animation: coachDetailFlowLinesMove 24s ease-in-out infinite;
    animation-delay: -10s;
}

@keyframes coachDetailFlowLinesMove {
    0%, 100% {
        transform: translateX(0) translateY(0);
        opacity: 0.3;
    }
    25% {
        transform: translateX(150px) translateY(-20px);
        opacity: 0.5;
    }
    50% {
        transform: translateX(300px) translateY(0);
        opacity: 0.4;
    }
    75% {
        transform: translateX(150px) translateY(20px);
        opacity: 0.45;
    }
}

@keyframes coachDetailContentMesh {
    0%, 100% {
        background-position: 0% 0%, 100% 100%;
        opacity: 1;
    }
    50% {
        background-position: 100% 100%, 0% 0%;
        opacity: 0.8;
    }
}


/* Particle Trail Animation */
.coach-svg-trail {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 8%;
    animation: coachDetailTrailMove 20s ease-in-out infinite;
    animation-delay: -8s;
}

@keyframes coachDetailTrailMove {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    33% {
        transform: translate(-80px, 60px) rotate(120deg);
        opacity: 0.5;
    }
    66% {
        transform: translate(60px, -80px) rotate(240deg);
        opacity: 0.4;
    }
}

/* Morphing Shape Animation */
.coach-svg-morph {
    width: 120px;
    height: 120px;
    bottom: 25%;
    left: 10%;
    animation: coachDetailMorph 16s ease-in-out infinite;
    animation-delay: -12s;
}

@keyframes coachDetailMorph {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: scale(1.2) rotate(90deg);
        opacity: 0.5;
    }
    50% {
        transform: scale(0.9) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: scale(1.15) rotate(270deg);
        opacity: 0.45;
    }
}

/* Consultation Section - Full Background (Combining Courses & Products Styles) */
.coach-detail-consultation-section {
    position: relative;
    width: 100%;
}

/* Combined Mesh - Radial (from Courses) + Conic (from Products) */
.coach-detail-consultation-mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse at 25% 30%, rgba(197, 160, 89, 0.09) 0%, transparent 50%),
        conic-gradient(from 90deg at 75% 70%, rgba(197, 160, 89, 0.07) 0deg, transparent 90deg, rgba(197, 160, 89, 0.05) 180deg, transparent 270deg, rgba(197, 160, 89, 0.07) 360deg),
        radial-gradient(ellipse at 50% 50%, rgba(197, 160, 89, 0.06) 0%, transparent 60%);
    background-size: 100% 100%, 350px 350px, 100% 100%;
    animation: coachDetailConsultationMesh 33s ease-in-out infinite;
    pointer-events: none;
}

@keyframes coachDetailConsultationMesh {
    0%, 100% {
        background-position: 0% 0%, 0% 0%, 50% 50%;
        opacity: 1;
    }
    33% {
        background-position: 50% 50%, 50% 50%, 30% 70%;
        opacity: 0.9;
    }
    66% {
        background-position: 100% 100%, 100% 100%, 25% 75%;
        opacity: 0.85;
    }
}

/* Combined Particles (from Courses) */
.coach-detail-consultation-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: 
        radial-gradient(1.5px 1.5px at 20% 25%, rgba(197, 160, 89, 0.11), transparent),
        radial-gradient(1px 1px at 60% 50%, rgba(197, 160, 89, 0.09), transparent),
        radial-gradient(2px 2px at 80% 75%, rgba(197, 160, 89, 0.08), transparent);
    background-size: 300% 300%;
    animation: coachDetailConsultationParticles 26s ease-in-out infinite;
    opacity: 0.55;
    pointer-events: none;
}

@keyframes coachDetailConsultationParticles {
    0%, 100% {
        background-position: 0% 0%, 100% 100%, 50% 50%;
    }
    50% {
        background-position: 100% 100%, 0% 0%, 30% 70%;
    }
}

/* Grid Pattern (from Products) */
.coach-detail-consultation-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: 
        linear-gradient(rgba(197, 160, 89, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197, 160, 89, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: coachDetailConsultationGrid 45s linear infinite;
    opacity: 0.4;
    pointer-events: none;
}

@keyframes coachDetailConsultationGrid {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 50px 50px;
    }
}

/* Combined Waves - Rotating (from Courses) + Flowing Lines (from Products) */
.coach-detail-consultation-waves {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.coach-detail-consultation-waves::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        55deg,
        transparent 35%,
        rgba(197, 160, 89, 0.03) 50%,
        transparent 65%
    );
    animation: coachDetailConsultationWaveRotate 24s linear infinite;
}

.coach-detail-consultation-waves::after {
    content: '';
    position: absolute;
    width: 150%;
    height: 2px;
    top: 50%;
    left: -50%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(197, 160, 89, 0.12) 20%,
        rgba(197, 160, 89, 0.18) 50%,
        rgba(197, 160, 89, 0.12) 80%,
        transparent 100%
    );
    animation: coachDetailConsultationLineFlow 20s linear infinite;
    animation-delay: -8s;
    filter: blur(1px);
}

@keyframes coachDetailConsultationWaveRotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes coachDetailConsultationLineFlow {
    0% {
        transform: translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(66.67%);
        opacity: 0;
    }
}

.coach-detail-consultation-svg-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

/* Consultation SVG Animations (Combining Courses & Products) */
.coach-svg-consultation-trail {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 8%;
    animation: coachDetailConsultationTrailMove 22s ease-in-out infinite;
    animation-delay: 0s;
}

@keyframes coachDetailConsultationTrailMove {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.3;
    }
    33% {
        transform: translate(-70px, 50px) rotate(120deg);
        opacity: 0.5;
    }
    66% {
        transform: translate(50px, -70px) rotate(240deg);
        opacity: 0.4;
    }
}

.coach-svg-consultation-hexagon {
    width: 120px;
    height: 120px;
    bottom: 25%;
    left: 10%;
    animation: coachDetailConsultationHexagonRotate 18s linear infinite;
    animation-delay: -6s;
}

@keyframes coachDetailConsultationHexagonRotate {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: rotate(180deg) scale(1.15);
        opacity: 0.5;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.3;
    }
}

.coach-svg-consultation-morph {
    width: 120px;
    height: 120px;
    top: 50%;
    right: 12%;
    animation: coachDetailConsultationMorph 20s ease-in-out infinite;
    animation-delay: -12s;
}

@keyframes coachDetailConsultationMorph {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: scale(1.25) rotate(90deg);
        opacity: 0.5;
    }
    50% {
        transform: scale(0.9) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: scale(1.15) rotate(270deg);
        opacity: 0.45;
    }
}

/* Modern Noise Texture Overlay for Consultation */
.coach-detail-consultation-section::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    animation: coachDetailNoiseShift 0.5s steps(10) infinite;
    pointer-events: none;
}

/* Card Animations */
.coach-detail-card-animate {
    animation: coachDetailCardFadeIn 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes coachDetailCardFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Enhanced Course Card Hover Effects */
.course-card {
    position: relative;
    overflow: hidden;
    z-index: 1;
    isolation: isolate;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(197, 160, 89, 0.1),
        transparent
    );
    transition: left 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.course-card:hover::before {
    left: 100%;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(197, 160, 89, 0.15);
}

/* Enhanced Product Card Hover Effects */
.product-card {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: rgba(17, 24, 39, 0.7) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    isolation: isolate;
}

.product-card:hover {
    background: rgba(17, 24, 39, 0.85) !important;
}

.product-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
    pointer-events: none;
}

.product-card:hover::after {
    width: 300px;
    height: 300px;
}

.product-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(197, 160, 89, 0.12);
    border-color: rgba(197, 160, 89, 0.3);
    background: rgba(17, 24, 39, 0.85) !important;
}

/* Modern Noise Texture Overlay for Courses */
.coach-detail-courses-section::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    animation: coachDetailNoiseShift 0.5s steps(10) infinite;
    pointer-events: none;
}

/* Modern Noise Texture Overlay for Products */
.coach-detail-products-section::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    animation: coachDetailNoiseShift 0.5s steps(10) infinite;
    pointer-events: none;
}

/* Additional Gradient Orbs for Products Section */
.coach-detail-products-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(197, 160, 89, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(197, 160, 89, 0.05) 0%, transparent 40%);
    animation: coachDetailProductsOrbs 25s ease-in-out infinite;
    pointer-events: none;
}

@keyframes coachDetailProductsOrbs {
    0%, 100% {
        background-position: 0% 0%, 100% 100%;
        opacity: 1;
    }
    50% {
        background-position: 100% 100%, 0% 0%;
        opacity: 0.8;
    }
}

@keyframes coachDetailNoiseShift {
    0%, 100% { background-position: 0 0; }
    10% { background-position: -2% -2%; }
    20% { background-position: 2% 2%; }
    30% { background-position: -1% 2%; }
    40% { background-position: 2% -1%; }
    50% { background-position: -2% 1%; }
    60% { background-position: 1% -2%; }
    70% { background-position: -1% -1%; }
    80% { background-position: 2% 1%; }
    90% { background-position: -2% 2%; }
}

/* Filter Button Animations */
.course-filter-btn,
.product-filter-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.course-filter-btn::before,
.product-filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: 0;
}

.course-filter-btn:hover::before,
.product-filter-btn:hover::before {
    width: 200px;
    height: 200px;
}

.course-filter-btn.active,
.product-filter-btn.active {
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
}

.course-filter-btn span,
.product-filter-btn span {
    position: relative;
    z-index: 1;
}

/* Enhanced Course Card Image Animation */
.course-card .h-48 img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
}

.course-card:hover .h-48 img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Enhanced Product Card Image Animation */
.product-card img {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.05);
    filter: brightness(1.05);
}

/* Enroll Now Button Animation */
.course-card a[href*="enroll"],
.course-card .text-brand-gold {
    position: relative;
    transition: all 0.3s ease;
}

.course-card:hover a[href*="enroll"],
.course-card:hover .text-brand-gold {
    transform: translateX(5px);
    color: #ffffff !important;
}

/* Add to Cart Button Animation */
.product-card button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.product-card button:hover::before {
    width: 300px;
    height: 300px;
}

.product-card button:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(197, 160, 89, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .coach-detail-svg {
        opacity: 0.2;
    }
    
    .coach-svg-blob,
    .coach-svg-wave,
    .coach-svg-trail,
    .coach-svg-morph,
    .coach-svg-geometric,
    .coach-svg-flow {
        width: 80px;
        height: auto;
    }
    
    .coach-detail-card-animate {
        animation-delay: 0s !important;
    }
    
    @keyframes coachDetailWaveMove {
        0% {
            transform: translateX(0) translateY(0);
        }
        100% {
            transform: translateX(150px) translateY(-20px);
        }
    }
    
    @keyframes coachDetailFlowMove {
        0%, 100% {
            transform: translateX(0) translateY(0);
        }
        50% {
            transform: translateX(100px) translateY(-15px);
        }
    }
    
    .course-card:hover,
    .product-card:hover {
        transform: translateY(-4px) scale(1.01);
    }
}
