/* ============================================
   ULTRA-MODERN COACHES PAGE DESIGN
   Professional UI/UX for Team/Coaches Page
============================================= */

:root {
    --coaches-primary: #002b1b;
    --coaches-secondary: #00d9a3;
    --coaches-accent: #00ffc8;
    --coaches-text-dark: #1a1a1a;
    --coaches-text-light: #666666;
    --coaches-bg-light: #f8fafb;
    --coaches-white: #ffffff;
    --coaches-border: #e5e7eb;
    --coaches-shadow: 0 10px 30px rgba(0, 43, 27, 0.08);
    --coaches-shadow-hover: 0 25px 60px rgba(0, 43, 27, 0.15);
}

/* ============================================
   COACHES HERO SECTION
============================================= */

.coaches-hero-section {
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #f8fafb 0%, #ffffff 50%, #f1f5f9 100%);
    overflow: hidden;
}

.hero-background-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.04;
}

.pattern-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--coaches-secondary), var(--coaches-accent));
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
    animation: floatPattern 12s ease-in-out infinite;
}

.circle-2 {
    width: 250px;
    height: 250px;
    bottom: -125px;
    left: -125px;
    animation: floatPattern 8s ease-in-out infinite reverse;
}

.circle-3 {
    width: 180px;
    height: 180px;
    top: 40%;
    left: 60%;
    animation: floatPattern 15s ease-in-out infinite;
}

.pattern-dots {
    position: absolute;
    top: 20%;
    right: 20%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.dot {
    width: 12px;
    height: 12px;
    background: var(--coaches-secondary);
    border-radius: 50%;
    animation: dotPulse 3s ease-in-out infinite;
}

.dot:nth-child(2) { animation-delay: 0.5s; }
.dot:nth-child(3) { animation-delay: 1s; }
.dot:nth-child(4) { animation-delay: 1.5s; }

@keyframes floatPattern {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    33% {
        transform: translateY(-30px) rotate(120deg) scale(1.1);
    }
    66% {
        transform: translateY(20px) rotate(240deg) scale(0.9);
    }
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

.hero-content {
    padding-right: 40px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, rgba(0, 217, 163, 0.1), rgba(0, 255, 200, 0.08));
    border: 2px solid rgba(0, 217, 163, 0.2);
    border-radius: 50px;
    color: var(--coaches-secondary);
    font-weight: 800;
    font-size: 14px;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 217, 163, 0.05), rgba(0, 255, 200, 0.03));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.hero-badge:hover::before {
    transform: translateX(100%);
}

.hero-title {
    font-size: 58px;
    font-weight: 900;
    line-height: 1.1;
    color: var(--coaches-text-dark);
    margin-bottom: 28px;
}

.title-highlight {
    background: linear-gradient(135deg, var(--coaches-secondary), var(--coaches-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--coaches-secondary), var(--coaches-accent));
    border-radius: 3px;
    animation: underlineGlow 3s ease-in-out infinite;
}

@keyframes underlineGlow {
    0%, 100% {
        box-shadow: 0 0 0 rgba(0, 217, 163, 0);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 217, 163, 0.6);
    }
}

.hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: var(--coaches-text-light);
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--coaches-primary);
    line-height: 1;
    margin-bottom: 6px;
    background: linear-gradient(135deg, var(--coaches-primary), var(--coaches-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--coaches-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.stat-divider {
    width: 3px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--coaches-secondary), transparent);
    border-radius: 2px;
}

.hero-cta {
    margin-top: 20px;
}

.hero-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: linear-gradient(135deg, var(--coaches-primary), var(--coaches-secondary));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 43, 27, 0.3);
}

.hero-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--coaches-secondary), var(--coaches-accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-cta-btn:hover::before {
    opacity: 1;
}

.hero-cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 43, 27, 0.4);
    color: white;
}

.hero-cta-btn span,
.hero-cta-btn i {
    position: relative;
    z-index: 2;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-main-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, var(--coaches-primary), var(--coaches-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 90px;
    color: white;
    box-shadow: var(--coaches-shadow-hover);
    z-index: 3;
}

.visual-glow {
    position: absolute;
    inset: -30px;
    background: inherit;
    border-radius: inherit;
    opacity: 0.4;
    filter: blur(40px);
    animation: visualGlow 4s ease-in-out infinite;
}

@keyframes visualGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

.visual-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    border: 3px solid rgba(0, 217, 163, 0.3);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring-1 {
    width: 280px;
    height: 280px;
    animation: ringRotate 20s linear infinite;
}

.ring-2 {
    width: 340px;
    height: 340px;
    animation: ringRotate 25s linear infinite reverse;
    border-color: rgba(0, 255, 200, 0.2);
}

.ring-3 {
    width: 400px;
    height: 400px;
    animation: ringRotate 30s linear infinite;
    border-color: rgba(0, 43, 27, 0.1);
}

@keyframes ringRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.floating-achievement {
    position: absolute;
    background: var(--coaches-white);
    border-radius: 20px;
    padding: 20px;
    box-shadow: var(--coaches-shadow);
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 160px;
    border: 2px solid rgba(0, 217, 163, 0.1);
    backdrop-filter: blur(20px);
}

.achievement-1 {
    top: 15%;
    left: 5%;
    animation: floatAchievement1 6s ease-in-out infinite;
}

.achievement-2 {
    top: 65%;
    right: 5%;
    animation: floatAchievement2 8s ease-in-out infinite;
}

.achievement-3 {
    bottom: 15%;
    left: 15%;
    animation: floatAchievement3 7s ease-in-out infinite;
}

@keyframes floatAchievement1 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(3deg);
    }
}

@keyframes floatAchievement2 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-25px) rotate(-3deg);
    }
}

@keyframes floatAchievement3 {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.achievement-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--coaches-secondary), var(--coaches-accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
}

.achievement-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.achievement-number {
    font-size: 20px;
    font-weight: 900;
    color: var(--coaches-text-dark);
    line-height: 1;
}

.achievement-label {
    font-size: 12px;
    color: var(--coaches-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* ============================================
   COACHES GRID SECTION
============================================= */

.coaches-grid-section {
    padding: 100px 0;
    background: var(--coaches-white);
    position: relative;
}

.coaches-grid-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--coaches-secondary), transparent);
}

.section-header-enhanced {
    text-align: center;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.header-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 28px;
}

.decoration-line {
    flex: 1;
    height: 2px;
    max-width: 150px;
    background: linear-gradient(90deg, transparent, var(--coaches-secondary), transparent);
    position: relative;
}

.decoration-line::before,
.decoration-line::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--coaches-secondary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.decoration-line.left::after {
    right: 0;
}

.decoration-line.right::before {
    left: 0;
}

.section-badge-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--coaches-primary), var(--coaches-secondary));
    border-radius: 50px;
    color: white;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    box-shadow: 0 10px 30px rgba(0, 43, 27, 0.3);
    position: relative;
    overflow: hidden;
}

.section-badge-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.section-badge-enhanced i {
    font-size: 18px;
}

.section-title-enhanced {
    font-size: 44px;
    font-weight: 900;
    color: var(--coaches-text-dark);
    margin-bottom: 18px;
    line-height: 1.2;
}

.section-description-enhanced {
    font-size: 18px;
    color: var(--coaches-text-light);
    line-height: 1.7;
    max-width: 650px;
    margin: 0 auto 32px;
}

.header-stats-mini {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.mini-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(0, 217, 163, 0.08), rgba(0, 255, 200, 0.05));
    border: 2px solid rgba(0, 217, 163, 0.15);
    border-radius: 30px;
    transition: all 0.3s ease;
}

.mini-stat:hover {
    background: linear-gradient(135deg, rgba(0, 217, 163, 0.15), rgba(0, 255, 200, 0.1));
    border-color: var(--coaches-secondary);
    transform: translateY(-2px);
}

.mini-stat-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--coaches-secondary), var(--coaches-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.mini-stat-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--coaches-text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ============================================
   COACHES SLIDER CONTAINER
============================================= */

.coaches-slider-container {
    position: relative;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 20px;
}

.coaches-slider-wrapper {
    position: relative;
    border-radius: 26px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(250, 252, 255, 0.05));
    backdrop-filter: blur(24px);
    border: 2px solid rgba(0, 43, 27, 0.08);
    padding: 50px 30px 60px;
    box-shadow: var(--coaches-shadow);
}

.coaches-slider {
    position: relative;
}

.coach-slide-item {
    padding: 0 15px;
}

/* Custom Navigation Buttons */
.coaches-slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 30;
}

.slider-nav-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--coaches-primary), var(--coaches-secondary));
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 43, 27, 0.3);
    pointer-events: all;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.25);
}

.slider-nav-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--coaches-secondary), var(--coaches-accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slider-nav-btn:hover::before {
    opacity: 1;
}

.slider-nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 43, 27, 0.4);
}

.slider-nav-btn i {
    position: relative;
    z-index: 2;
}

.slider-nav-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.slider-nav-btn:hover::after {
    opacity: 1;
}

.prev-btn {
    left: -30px;
}

.next-btn {
    right: -30px;
}

/* Custom Dots */
.coaches-slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.coaches-slider-dots .owl-dot {
    width: 16px;
    height: 16px;
    background: rgba(0, 43, 27, 0.2);
    border-radius: 50%;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.coaches-slider-dots .owl-dot::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--coaches-secondary), var(--coaches-accent));
    border-radius: inherit;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.coaches-slider-dots .owl-dot.active::before,
.coaches-slider-dots .owl-dot:hover::before {
    transform: scale(1);
}

.coaches-slider-dots .owl-dot.active {
    background: var(--coaches-secondary);
    transform: scale(1.2);
    box-shadow: 0 0 0 4px rgba(0, 217, 163, 0.2);
}

/* Slider Animation Effects - Fixed Badges Position */
.coaches-slider .owl-item {
    opacity: 0.7;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.coaches-slider .owl-item.center,
.coaches-slider .owl-item.active {
    opacity: 1;
}

/* Center item zoom with badge compensation */
.coaches-slider .owl-item.center .ultra-coach-card {
    transform: scale(1.05);
    z-index: 5;
    position: relative;
}

/* Compensate badge size when card zooms */
.coaches-slider .owl-item.center .coach-status-badge {
    transform: scale(0.952);
    transform-origin: top left;
}

.coaches-slider .owl-item.center .expertise-badge {
    transform: scale(0.952);
    transform-origin: top right;
}

.coaches-slider .owl-item.center .ultra-coach-card .card-glow-effect {
    opacity: 0.2;
}

/* Ensure proper overflow on image container */
.coaches-slider .ultra-coach-card {
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
}

.coaches-slider .coach-image-container-large {
    overflow: hidden !important;
}

/* Responsive Slider Navigation */
@media (max-width: 991px) {
    .prev-btn {
        left: -20px;
    }
    
    .next-btn {
        right: -20px;
    }
    
    .slider-nav-btn {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .coaches-slider-wrapper {
        padding: 30px 15px;
    }
    
    .prev-btn {
        left: -15px;
    }
    
    .next-btn {
        right: -15px;
    }
    
    .slider-nav-btn {
        width: 44px;
        height: 44px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .coaches-slider-nav {
        position: static;
        transform: none;
        justify-content: center;
        gap: 20px;
        margin-top: 30px;
    }
    
    .prev-btn,
    .next-btn {
        position: static;
    }
}

/* ============================================
   ULTRA COACH CARDS - SMALLER & ENHANCED
============================================= */

.ultra-coach-card {
    position: relative;
    background: var(--coaches-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--coaches-shadow);
    border: 2px solid var(--coaches-border);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    max-width: 380px;
    margin: 0 auto;
}

.ultra-coach-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--coaches-shadow-hover);
    border-color: var(--coaches-secondary);
}

.coach-status-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(34, 197, 94, 0.95);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(34, 197, 94, 0.5);
    border-radius: 25px;
    font-size: 11px;
    font-weight: 800;
    color: white;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    pointer-events: none;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
}

/* Smaller Image Container */
.coach-image-container-large {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.coach-image-container-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.ultra-coach-card:hover .coach-image-container-large img {
    transform: scale(1.12);
}

/* Enhanced Social Overlay */
.coach-social-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 16px;
    background: linear-gradient(to top, rgba(0, 43, 27, 0.98), rgba(0, 43, 27, 0.85) 70%, transparent);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 3;
}

.ultra-coach-card:hover .coach-social-overlay {
    transform: translateY(0);
}

.social-links-list {
    display: flex;
    gap: 10px;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-link-enhanced {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    color: white;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.social-link-enhanced::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--coaches-secondary), var(--coaches-accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link-enhanced:hover::before {
    opacity: 1;
}

.social-link-enhanced:hover {
    transform: translateY(-4px) scale(1.08);
    background: var(--coaches-secondary);
    color: var(--coaches-primary);
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(0, 217, 163, 0.4);
}

.social-link-enhanced i {
    position: relative;
    z-index: 2;
}

.expertise-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

/* Smaller Coach Info Section */
.coach-info-enhanced {
    padding: 24px 20px;
    text-align: center;
}

.coach-name-large {
    font-size: 22px;
    font-weight: 900;
    color: var(--coaches-text-dark);
    margin-bottom: 8px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--coaches-text-dark), var(--coaches-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coach-designation-large {
    font-size: 15px;
    color: var(--coaches-secondary);
    font-weight: 700;
    margin-bottom: 14px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.coach-description-large {
    font-size: 14px;
    color: var(--coaches-text-light);
    line-height: 1.6;
    margin-bottom: 18px;
    min-height: 55px;
}

/* Contact Button - Smaller */
.coach-contact-section {
    margin-bottom: 18px;
}

.contact-coach-btn-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--coaches-primary), var(--coaches-secondary));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 43, 27, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-coach-btn-enhanced::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--coaches-secondary), var(--coaches-accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-coach-btn-enhanced:hover::before {
    opacity: 1;
}

.contact-coach-btn-enhanced:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 43, 27, 0.4);
}

.contact-coach-btn-enhanced i,
.contact-coach-btn-enhanced span {
    position: relative;
    z-index: 2;
}

/* Smaller Horizontal Stats */
.coach-social-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 14px 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(0, 43, 27, 0.08));
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    margin-top: 10px;
    flex-wrap: wrap;
}

.coach-social-footer a {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--coaches-secondary), var(--coaches-accent));
    color: #fff;
    font-size: 18px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.coach-social-footer a::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.coach-social-footer a:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 43, 27, 0.2);
}

.coach-social-footer a:hover::after {
    opacity: 1;
}

.card-glow-effect {
    position: absolute;
    inset: -5px;
    background: linear-gradient(135deg, var(--coaches-secondary), var(--coaches-accent));
    border-radius: 25px;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.6s ease;
    z-index: -1;
}

.ultra-coach-card:hover .card-glow-effect,
.ultra-coach-card.hovered .card-glow-effect {
    opacity: 0.3;
}

/* Enhanced Slider Card Effects */
.ultra-coach-card.hovered {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--coaches-shadow-hover);
}

.ultra-coach-card.hovered .image-frame {
    border-color: var(--coaches-secondary);
    transform: scale(1.05);
}

.ultra-coach-card.hovered .image-glow {
    opacity: 0.4;
}

.ultra-coach-card.hovered .coach-image {
    transform: scale(1.1);
}

/* Image Loading Animation */
.coach-image {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.coach-image.loaded {
    opacity: 1;
}

/* Slider Fade Effects */
.coaches-slider .owl-item:not(.active) .ultra-coach-card {
    opacity: 0.6;
    transform: scale(0.95);
}

.coaches-slider .owl-item.active .ultra-coach-card {
    opacity: 1;
    transform: scale(1);
}

/* Center item highlight */
.coaches-slider .owl-item.center .ultra-coach-card {
    transform: scale(1.05);
    z-index: 2;
    position: relative;
}

.coaches-slider .owl-item.center .ultra-coach-card .card-glow-effect {
    opacity: 0.2;
}

/* Smooth transitions for all slider items */
.coaches-slider .ultra-coach-card {
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ============================================
   MODERN PAGINATION
============================================= */

.modern-pagination-wrapper {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid rgba(0, 43, 27, 0.1);
}

.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
    backdrop-filter: blur(30px);
    border: 2px solid rgba(0, 43, 27, 0.1);
    border-radius: 24px;
    padding: 32px 40px;
    box-shadow: var(--coaches-shadow);
}

.pagination-info .pagination-text {
    font-size: 16px;
    color: var(--coaches-text-light);
    font-weight: 600;
}

.pagination-controls .pagination {
    margin: 0;
    gap: 12px;
}

.pagination-controls .page-link {
    border: none;
    background: transparent;
    color: var(--coaches-text-dark);
    font-weight: 700;
    padding: 14px 20px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    font-size: 16px;
    min-width: 52px;
    text-align: center;
}

.pagination-controls .page-link:hover,
.pagination-controls .page-item.active .page-link {
    background: linear-gradient(135deg, var(--coaches-secondary), var(--coaches-accent));
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 217, 163, 0.4);
}

/* ============================================
   CTA SECTION
============================================= */

.coaches-cta-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--coaches-primary) 0%, #003d2a 100%);
    overflow: hidden;
}

.cta-background-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.1;
}

.pattern-wave {
    position: absolute;
    width: 200%;
    height: 200px;
    background: linear-gradient(90deg, transparent, var(--coaches-secondary), transparent);
    border-radius: 50%;
}

.wave-1 {
    top: -100px;
    left: -50%;
    animation: waveMove 20s ease-in-out infinite;
}

.wave-2 {
    bottom: -100px;
    right: -50%;
    animation: waveMove 25s ease-in-out infinite reverse;
}

@keyframes waveMove {
    0%, 100% {
        transform: translateX(0) rotate(0deg);
    }
    50% {
        transform: translateX(100px) rotate(5deg);
    }
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: white;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--coaches-secondary), var(--coaches-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 40px;
    box-shadow: 0 20px 60px rgba(0, 217, 163, 0.3);
    animation: ctaIconFloat 4s ease-in-out infinite;
}

@keyframes ctaIconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.cta-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-description {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 50px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.cta-btn.primary {
    background: linear-gradient(135deg, var(--coaches-secondary), var(--coaches-accent));
    color: var(--coaches-primary);
    box-shadow: 0 15px 40px rgba(0, 217, 163, 0.4);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
}

.cta-btn:hover {
    transform: translateY(-4px);
}

.cta-btn.primary:hover {
    box-shadow: 0 25px 60px rgba(0, 217, 163, 0.6);
    color: var(--coaches-primary);
}

.cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

/* ============================================
   RESPONSIVE DESIGN
============================================= */

@media (max-width: 1199px) {
    .hero-title {
        font-size: 48px;
    }
    
    .section-title-enhanced {
        font-size: 38px;
    }
    
    .coach-image-container-large {
        height: 280px;
    }
}

@media (max-width: 991px) {
    .hero-content {
        padding-right: 0;
        margin-bottom: 60px;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .header-decoration {
        gap: 15px;
    }
    
    .decoration-line {
        max-width: 80px;
    }
    
    .header-stats-mini {
        gap: 20px;
    }
    
    .coach-image-container-large {
        height: 300px;
    }
    
    .pagination-container {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 767px) {
    .coaches-hero-section {
        padding: 80px 0 60px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 18px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-divider {
        width: 50px;
        height: 2px;
    }
    
    .section-title-enhanced {
        font-size: 32px;
    }
    
    .section-description-enhanced {
        font-size: 16px;
    }
    
    .decoration-line {
        display: none;
    }
    
    .header-stats-mini {
        flex-direction: column;
        gap: 12px;
    }
    
    .ultra-coach-card {
        max-width: 100%;
    }
    
    .coach-image-container-large {
        height: 350px;
    }
    
    .coach-stats-horizontal {
        flex-direction: column;
        gap: 16px;
        padding: 20px 16px;
    }
    
    .stat-divider-compact {
        width: 50px;
        height: 2px;
    }
    
    .floating-achievement {
        display: none;
    }
    
    .cta-title {
        font-size: 32px;
    }
    
    .cta-description {
        font-size: 18px;
    }
}

@media (max-width: 575px) {
    .hero-visual {
        height: 350px;
    }
    
    .hero-main-visual {
        width: 160px;
        height: 160px;
        font-size: 60px;
    }
    
    .section-title-enhanced {
        font-size: 28px;
    }
    
    .section-badge-enhanced {
        padding: 12px 24px;
        font-size: 12px;
    }
    
    .mini-stat {
        padding: 10px 20px;
    }
    
    .mini-stat-text {
        font-size: 12px;
    }
    
    .coach-image-container-large {
        height: 320px;
    }
}

/* ============================================
   ACCESSIBILITY & PERFORMANCE
============================================= */

@media (prefers-reduced-motion: reduce) {
    .pattern-circle,
    .dot,
    .visual-glow,
    .floating-achievement,
    .pattern-element,
    .status-indicator,
    .ring,
    .pattern-wave,
    .cta-icon {
        animation: none !important;
    }
    
    .hero-cta-btn:hover,
    .ultra-coach-card:hover,
    .cta-btn:hover {
        transform: none !important;
    }
}

/* Focus styles for accessibility */
.hero-cta-btn:focus,
.contact-coach-btn:focus,
.social-link:focus,
.cta-btn:focus,
.pagination-controls .page-link:focus {
    outline: 3px solid rgba(0, 217, 163, 0.5);
    outline-offset: 2px;
}

