* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --zinc-950: #09090b;
    --zinc-900: #18181b;
    --zinc-800: #27272a;
    --zinc-700: #3f3f46;
    --zinc-400: #a1a1aa;
    --zinc-300: #d4d4d8;
    --red-600: #dc2626;
    --red-700: #b91c1c;
    --red-800: #991b1b;
    --orange-400: #fb923c;
    --orange-500: #f97316;
    --orange-600: #ea580c;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--zinc-950);
    color: white;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

nav.scrolled {
    background: rgba(9, 9, 11, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.logo-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--red-600);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.logo-circle:hover {
    transform: scale(1.08);
    border-color: var(--red-500);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.5);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    padding-left: 1rem;


    font-family: 'Cinzel', serif;
    font-weight: 800;
    letter-spacing: 0.25em;
    color: white;
    text-shadow: 
        0 0 10px rgba(220,38,38,0.4),
        0 0 30px rgba(220,38,38,0.2);
}
.logo-text1{
    font-family: 'Cinzel', serif;

}

.logo-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, var(--red-600), transparent);
}

.logo-text span {
    color: var(--red-600);
    font-weight: 800;
    letter-spacing: 4px;
    margin-left: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--red-600);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

.mobile-menu {
    display: none;
    background: rgba(24, 24, 27, 0.98);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--zinc-800);
    padding: 1.5rem 1rem;
}

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

.mobile-menu a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 0.75rem 0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--red-600);
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-mob{
    display: none;
}

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

.hero-video iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

@media (min-aspect-ratio: 16/9) {
    .hero-video iframe {
        height: 56.25vw;
    }
}

@media (max-aspect-ratio: 16/9) {
    .hero-video iframe {
        width: 177.78vh;
    }
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(9, 9, 11, 0.6), rgba(9, 9, 11, 0.6), rgba(9, 9, 11, 0.6));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
    max-width: 1900px;
    margin-top: 90px;
}

.hero-content h1 {
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-content h1 span {
    color: var(--red-600);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 3rem);
    font-weight: 300;
    color: var(--zinc-300);
    margin-bottom: 3rem;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .hero-content {
        margin-top: 10px;
    }

    .hero {
        display: none;
    }

    .hero-mob{
        display: block;
        position: relative;
        height: 100vh;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}


.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.25rem 2.5rem;
    background: var(--red-600);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.125rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 20px 25px -5px rgba(220, 38, 38, 0.3);
}

.cta-button:hover {
    background: var(--red-700);
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(220, 38, 38, 0.5);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}

.parallax-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 1;
}

@media (min-width: 768px) {
    #novosti .parallax-bg {
        background-position: center 20%;
    }
}

.parallax-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(9, 9, 11, 0.85);
}

.section-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 6rem 1rem;
}

h2 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 1rem;
}

.section-divider {
    width: 96px;
    height: 4px;
    background: var(--red-600);
    margin: 0 auto 4rem;
}

.news-carousel-wrapper {
    position: relative;
    width: 100%;
}

.news-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.carousel-dots {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

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

.carousel-dot.active {
    background: var(--red-600);
    width: 24px;
    border-radius: 5px;
}

.news-card {
    background: var(--zinc-800);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(220, 38, 38, 0.2);
}

.news-image {
    position: relative;
    width: 100%;
    height: 224px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 1.5rem;
}

.news-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.news-card:hover h3 {
    color: var(--red-600);
}

.news-content p {
    color: var(--zinc-400);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    color: var(--red-600);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--red-700);
}

.o-klubu {
    padding: 6rem 1rem;
    background: var(--zinc-950);
}

.about-text {
    max-width: 800px;
    margin: 0 auto 5rem;
    text-align: center;
}

.about-text p {
    font-size: 1.25rem;
    color: var(--zinc-300);
    line-height: 1.8;
}

.coaches-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.coaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.coach-card {
    background: var(--zinc-900);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--zinc-800);
    transition: all 0.3s ease;
}

.coach-card:hover {
    transform: translateY(-8px);
    border-color: var(--red-600);
    background: var(--zinc-800);
}

.coach-image {
    position: relative;
    width: 100%;
    height: 256px;
    overflow: hidden;
}

.coach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.coach-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--zinc-900), rgba(24, 24, 27, 0.4), transparent);
}

.coach-info {
    padding: 2rem;
    text-align: center;
}

.coach-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.coach-role {
    color: var(--red-600);
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.coach-info p {
    color: var(--zinc-400);
    line-height: 1.6;
}

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--zinc-800);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    border: 1px solid var(--zinc-700);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--red-600);
    border-color: var(--red-600);
}
.programs-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 3rem 0 5rem 0;
    position: relative;
}

.programs-carousel-wrapper::before,
.programs-carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.programs-carousel-wrapper::before {
    left: 0;
}

.programs-carousel-wrapper::after {
    right: 0;
}

.programs-carousel {
    width: 100%;
    overflow: hidden;
    cursor: grab;
}

.programs-carousel.dragging {
    cursor: grabbing;
}

.programs-track {
    display: flex;
    gap: 2rem;
    width: fit-content;
    user-select: none;
    will-change: transform;
}

.program-card {
    background: var(--zinc-800);
    padding: 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    color: white;
    border: 1px solid var(--zinc-700);
    transition: all 0.3s ease;
    display: block;
    min-width: 350px;
    max-width: 350px;
    flex-shrink: 0;
    pointer-events: auto;
}

.program-card:hover {
    transform: translateY(-8px);
    background: linear-gradient(135deg, var(--red-600), var(--red-700));
    border-color: var(--red-600);
    box-shadow: 0 20px 25px -5px rgba(220, 38, 38, 0.3);
}

.program-icon {
    color: var(--red-600);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.program-card:hover .program-icon {
    color: white;
}

.program-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.program-card p {
    color: var(--zinc-400);
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.program-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.program-link {
    color: var(--red-600);
    font-weight: 600;
    transition: color 0.3s ease;
}

.program-card:hover .program-link {
    color: white;
}

.cta-special {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    background: var(--zinc-950);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-diagonal {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--zinc-950);
    transform: skewY(-2deg);
    transform-origin: top left;
}

.cta-content-wrapper {
    position: relative;
    width: 100%;
    padding: 4rem 1rem;
}

.cta-glitch {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, var(--red-600) 1px, transparent 1px),
        linear-gradient(0deg, var(--red-600) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.03;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.cta-spotlight {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.cta-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(220, 38, 38, 0.2);
    border: 2px solid var(--red-600);
    border-radius: 50px;
    color: var(--red-600);
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
    }
}

.cta-content h2 {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 0 40px rgba(220, 38, 38, 0.3);
}

.cta-content h2 span {
    color: var(--red-600);
    display: block;
}

.cta-content > p {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: var(--zinc-300);
    margin-bottom: 3rem;
    font-weight: 300;
}

.cta-button-special {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    background: white;
    color: var(--red-600);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(220, 38, 38, 0.5);
    position: relative;
    overflow: hidden;
}

.cta-button-special::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--red-600);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.cta-button-special:hover::before {
    transform: translateX(0);
}

.cta-button-special:hover {
    color: white;
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(220, 38, 38, 0.8);
}

.cta-button-special svg {
    transition: transform 0.3s ease;
}

.cta-button-special:hover svg {
    transform: translateX(5px);
}

footer {
    background: linear-gradient(to bottom, #0a0a0b, #000000);
    border-top: 3px solid var(--red-600);
    padding: 4rem 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--red-600), transparent);
}

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

@media (max-width: 1200px) and (min-width: 1025px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 2rem;
    }

    .footer-links-col {
        grid-column: 1;
        grid-row: 1;
    }

    .social-pc {
        display: none;
    }

    .social-mob {
        display: block;
        grid-column: 2;
        grid-row: 1;
    }

    .footer-hours {
        grid-column: 1;
        grid-row: 2;
    }

    .footer-contact {
        grid-column: 2;
        grid-row: 2;
    }

    .footer-map {
        grid-column: 1 / -1;
        grid-row: 3;
        max-width: 700px;
        margin: 0 auto;
    }

    .map-container {
        height: 220px;
    }
}

.footer-column h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--red-600);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.contact-item svg {
    color: var(--red-600);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item .label {
    color: var(--zinc-400);
    font-size: 0.875rem;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--red-600);
}

.working-hours {
    color: var(--zinc-300);
}

.hours-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.hours-item svg {
    color: var(--red-600);
}

.day {
    font-weight: 600;
}

.time {
    padding-left: 1.75rem;
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--zinc-300);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--red-600);
}

.footer-social-col {
}

.social-mob {
    display: none;
}

.social-pc {
    display: block;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--zinc-400);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    color: var(--red-600);
    background-color: rgba(220, 38, 38, 0.1);
    transform: translateY(-2px);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.map-container {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer-bottom {
    border-top: 1px solid var(--zinc-800);
    padding-top: 2rem;
    text-align: center;
    color: var(--zinc-400);
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 1024px) and (min-width: 780px) {
    /* Tablet Footer Fix (780px-1024px) - iPad Air, iPad Pro, Surface Pro 7 */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 2rem;
    }

    .footer-links-col {
        grid-column: 1;
        grid-row: 1;
    }

    .social-pc {
        display: none;
    }

    .social-mob {
        display: block;
        grid-column: 2;
        grid-row: 1;
    }

    .footer-hours {
        grid-column: 1;
        grid-row: 2;
    }

    .footer-contact {
        grid-column: 2;
        grid-row: 2;
    }

    .footer-map {
        grid-column: 1 / -1;
        grid-row: 3;
        max-width: 600px;
        margin: 0 auto;
    }

    .map-container {
        height: 200px;
    }
}

@media (max-width: 768px) {

    .stats-section{
        display: none;
    }

    .cta-special{
        min-height: 300px;
    }

    .news-carousel-wrapper {
        overflow: hidden;
        padding: 0 1rem;
    }

    .news-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 1rem;
        padding: 0;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .news-grid::-webkit-scrollbar {
        display: none;
    }

    .news-card {
        flex: 0 0 calc(100% - 2rem);
        scroll-snap-align: center;
        margin: 0 1rem;
        flex-shrink: 0;
    }
    .news-grid.no-snap {
        scroll-snap-type: none !important;
    }
    .news-grid.no-smooth {
    scroll-behavior: auto !important;
}

    .carousel-dots {
        display: flex;
    }

    .coaches-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 2rem;
    }

    .footer-links-col {
        grid-column: 1;
        grid-row: 1;
    }

    .social-mob {
        display: block;
        grid-column: 1;
        grid-row: 2;
    }

    .social-pc {
        display: none;
    }

    .footer-hours {
        grid-column: 2;
        grid-row: 1;
    }

    .footer-contact {
        margin-top: -110px;
        grid-column: 2;
        grid-row: 2;
    }

    .footer-map {
        display: none;
    }

    .footer-column h3 {
        font-size: 1rem;
        margin-bottom: 1.25rem;
        font-weight: 700;
        letter-spacing: 0.05em;
    }

    .contact-item {
        margin-bottom: 1.25rem;
        font-size: 0.875rem;
    }

    .contact-item svg {
        width: 18px;
        height: 18px;
    }

    .working-hours {
        font-size: 0.875rem;
    }

    .hours-item {
        margin-top: 0.875rem;
    }

    .hours-item svg {
        width: 18px;
        height: 18px;
    }

    .time {
        padding-left: 1.75rem;
        margin-bottom: 0.625rem;
        font-size: 0.875rem;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .footer-links li {
        margin-bottom: 0;
    }

    .footer-links a {
        font-size: 0.875rem;
        display: block;
        padding: 0.625rem 0;
        transition: all 0.3s ease;
    }

    .footer-links a:hover {
        color: var(--red-600);
        padding-left: 0.5rem;
    }

    .program-card {
        min-width: 280px;
        max-width: 280px;
        padding: 2rem;
    }

    .programs-carousel-wrapper::before,
    .programs-carousel-wrapper::after {
        width: 50px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        gap: 2rem 1.5rem;
    }

    .footer-column h3 {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }

    .contact-item,
    .working-hours,
    .footer-links a {
        font-size: 0.8125rem;
    }

    .contact-item svg,
    .hours-item svg {
        width: 16px;
        height: 16px;
    }
}
.coach-section-modern {
    margin-bottom: 3rem;
}

.coaches-title-modern {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.coaches-title-modern::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--red-600);
}

.coaches-grid-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.coach-card-modern {
    background: var(--zinc-900);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--zinc-800);
    transition: all 0.4s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.coach-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.coach-card-modern:hover::before {
    opacity: 1;
}

.coach-card-modern:hover {
    border-color: var(--red-600);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.coach-image-modern {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.coach-image-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    object-position: center 40%;

}

.coach-card-modern:hover .coach-image-modern img {
    transform: scale(1.05);
}

.coach-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(220, 38, 38, 0.95);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(10px);
}

.coach-details {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 1;
}

.coach-details h4 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--zinc-100);
}

.coach-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--zinc-800);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--red-600);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--zinc-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.coach-bio {
    color: var(--zinc-400);
    line-height: 1.7;
    font-size: 0.95rem;
}

.coaches-carousel-wrapper {
    position: relative;
}

.coaches-carousel-dots {
    display: none;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.coaches-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.coaches-carousel-dot.active {
    background: var(--red-600);
    width: 32px;
    border-radius: 6px;
}

@media (max-width: 968px) {
    .coach-section-modern {
        overflow: hidden;
    }

    .coaches-carousel-wrapper {
        overflow: hidden;
        touch-action: pan-y pinch-zoom;
    }

    .coaches-grid-modern {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        gap: 1.5rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0 1rem;
        grid-template-columns: none;
    }

    .coaches-grid-modern::-webkit-scrollbar {
        display: none;
    }

    .coach-card-modern {
        flex: 0 0 calc(100% - 2rem);
        scroll-snap-align: center;
    }

    .coaches-carousel-dots {
        display: flex;
    }

    .coach-image-modern {
        height: 280px;
    }

    .coach-details h4 {
        font-size: 1.5rem;
    }
}

@media (max-width: 640px) {
    .coach-image-modern {
        height: 250px;
    }

    .coach-details {
        padding: 1.5rem;
    }

    .coach-stats {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .coach-bio {
        font-size: 0.9rem;
    }
}

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--zinc-800);
    color: white;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    border: 1px solid var(--zinc-700);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--red-600);
    border-color: var(--red-600);
}

/* Add this to your existing CSS in the <style> tag */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Mobile carousel styles */
@media (max-width: 768px) {
    .testimonial-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 1rem;
        padding: 0 1rem;
    }

    .testimonial-grid::-webkit-scrollbar {
        display: none;
    }

    .testimonial-card {
        min-width: 85vw;
        scroll-snap-align: center;
        flex-shrink: 0;
    }
}

/* Carousel dots for testimonials */
.testimonial-carousel-dots {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.testimonial-carousel-dots .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--zinc-700);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-carousel-dots .carousel-dot.active {
    background: var(--red-600);
    width: 24px;
    border-radius: 5px;
}

@media (max-width: 768px) {
    .testimonial-carousel-dots {
        display: flex;
    }
}

.social-mob{
    display: none;
}

@media (max-width: 768px) {
    .social-mob {
        display: block;
    }
    .social-pc{
        display: none;
    }
}