/* Загальні стилі */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Контейнер для секції спортивної форми з фоном знижки */
.sports-kits-section {
    position: relative;
    padding: 80px 0;
    background-color: #000;
}

/* Стилі для секції знижки як фон */
.discount-section {
    position: absolute;
    top: 0%;
    left: 95%;
    transform: translate(-50%, -50%) rotate(10deg);
    width: 70%;
    max-width: 700px;
    height: 350px;
    background-image: url('img/discount.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
}

.discount-section:hover {
    transform: translate(-50%, -50%) rotate(10deg) scale(1.02);
}

/* Анімація для секції знижки */
@keyframes float {
    0% {
        transform: translate(-50%, -50%) rotate(-25deg) translateY(0px);
    }
    50% {
        transform: translate(-50%, -50%) rotate(-25deg) translateY(-10px);
    }
    100% {
        transform: translate(-50%, -50%) rotate(-25deg) translateY(0px);
    }
}

/* Забезпечення відображення контенту поверх фону */
.sports-kits-section .section-title,
.sports-kits-section .membership-plans {
    position: relative;
    z-index: 2;
}

/* Адаптивність для мобільних пристроїв */
@media (max-width: 768px) {
    .discount-section {
        top: 1%;
        left: 70%;
        width: 40%;
        height: 180px;
        opacity: 0.5;
        transform: translate(-50%, -50%) rotate(5deg);
    }
    
    .sports-kits-section {
        padding: 60px 0;
    }
}

/* Стилі для секції знижки оновлені */




    }
}

.discount-banner h3 {
    font-size: 1.6rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.5);
    letter-spacing: 1.5px;
    position: relative;
    display: inline-block;
}

.discount-banner h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 25%;
    width: 50%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffcc00, transparent);
}

.discount-banner p {
    font-size: 1rem;
    margin: 5px 0 0;
    font-weight: 500;
    opacity: 0.9;
}

.discount-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, #ff3300, #ff9900);
    color: white;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transform: rotate(15deg);
    font-size: 1.8rem;
    font-weight: 900;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5), 0 0 10px rgba(255, 255, 255, 0.5) inset;
    animation: pulse 2s infinite;
    border: 3px solid rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 3px rgba(0, 0, 0, 0.7);
    z-index: 10;
    position: relative;
}

.discount-text {
    display: block;
    background: linear-gradient(to bottom, #ffffff, #ffcc00);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    font-weight: 900;
    letter-spacing: -1px;
    transform: scale(1.05);
    animation: textPulse 2s infinite alternate;
}

@keyframes textPulse {
    0% {
        text-shadow: 0 0 4px rgba(255, 255, 255, 0.8), 0 0 8px rgba(255, 255, 255, 0.5);
        transform: scale(1.05);
    }
    100% {
        text-shadow: 0 0 8px rgba(255, 255, 255, 1), 0 0 15px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 0, 0.5);
        transform: scale(1.15);
    }
}

.discount-badge::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 0, 0.4) 0%, rgba(255, 165, 0, 0) 70%);
    animation: glow 2s infinite alternate;
    z-index: -1;
}

@keyframes glow {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }
    100% {
        opacity: 0.8;
        transform: scale(1.2);
    }
}

@keyframes pulse {
    0% {
        transform: rotate(15deg) scale(1);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 255, 255, 0.5) inset;
    }
    50% {
        transform: rotate(15deg) scale(1.15);
        box-shadow: 0 10px 30px rgba(255, 165, 0, 0.7), 0 0 20px rgba(255, 255, 255, 0.7) inset;
    }
    100% {
        transform: rotate(15deg) scale(1);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(255, 255, 255, 0.5) inset;
    }
}

/* Секція з локаціями тренувань */
.training-locations {
    padding: 80px 0;
    background-color: #000;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #FFD700;
    color: #000;
    border-radius: 50%;
    margin-bottom: 15px;
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.section-subtitle {
    color: #e0e0e0;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 15px auto 0;
    opacity: 0.8;
}

.locations-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 50px;
    justify-content: space-between;
}

.locations-map {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.map-title {
    font-size: 1.5rem;
    color: #FFD700;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.map-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
}

.map-container {
    position: relative;
    height: 400px;
    background-color: rgba(17, 17, 17, 0.8);
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.map-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/bcg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.map-compass {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23FFD700"><path d="M12 2L8 11h8L12 2zm0 20l4-9H8l4 9z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
    z-index: 2;
}

.map-point {
    position: absolute;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-point[data-location="rockwood"] {
    top: 30%;
    left: 25%;
}

.map-point[data-location="mckenzie"] {
    top: 60%;
    left: 65%;
}

.point-marker {
    width: 24px;
    height: 24px;
    background-color: #FFD700;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
    animation: pulse 2s infinite;
    transition: transform 0.3s ease;
}

.map-point:hover .point-marker {
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 215, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

.point-marker::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid #FFD700;
}

.point-info {
    position: absolute;
    top: -70px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(17, 17, 17, 0.95);
    border: 2px solid #FFD700;
    border-radius: 8px;
    padding: 15px;
    min-width: 180px;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.map-point:hover .point-info {
    opacity: 1;
    visibility: visible;
    top: -80px;
}

.point-info h4 {
    color: #FFD700;
    font-size: 1rem;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 5px;
}

.point-info p {
    font-size: 0.9rem;
    color: #fff;
    line-height: 1.4;
}

/* Програми та вікові групи */
.programs-info {
    flex: 1;
    min-width: 300px;
    background-color: rgba(17, 17, 17, 0.8);
    border-radius: 10px;
    padding: 30px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.map-legend {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    padding: 10px;
    background-color: rgba(17, 17, 17, 0.7);
    border-radius: 8px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.legend-item {
    display: flex;
    align-items: center;
    margin: 0 15px;
    font-size: 0.9rem;
    color: #e0e0e0;
}

.legend-marker {
    width: 12px;
    height: 12px;
    background-color: #FFD700;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.program-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.program-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.program-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #FFD700;
    color: #000;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 18px;
    float: left;
    box-shadow: 0 3px 8px rgba(255, 215, 0, 0.3);
}

.program-title {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.program-description {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.6;
    margin-left: 55px;
}

.hero-badge {
    display: inline-block;
    background-color: #FFD700;
    color: #000;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.programs-title {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 15px;
}

.programs-subtitle {
    color: #e0e0e0;
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.program-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.program-card {
    flex: 1 0 200px;
    background: linear-gradient(135deg, rgba(25, 25, 25, 0.9), rgba(42, 42, 42, 0.9));
    border-radius: 10px;
    padding: 25px;
    border-left: 3px solid #FFD700;
    transition: all 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.2);
}

.program-card h4 {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.program-card p {
    font-size: 0.9rem;
    color: #e0e0e0;
}

@media (max-width: 992px) {
    .section-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .map-title {
        font-size: 1.3rem;
    }
    
    .program-title {
        font-size: 1.2rem;
    }
    
    .program-description {
        font-size: 0.95rem;
    }
    
    .locations-content {
        flex-direction: column;
    }
    
    .locations-map,
    .programs-info {
        width: 100%;
    }
    
    .map-container {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .locations-content {
        flex-direction: column;
    }

    .map-container {
        height: 350px;
    }
    
    .map-legend {
        flex-wrap: wrap;
    }
    
    .legend-item {
        margin: 5px 10px;
    }
    
    .program-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .map-container {
        height: 300px;
    }
    
    .map-compass {
        width: 40px;
        height: 40px;
        top: 15px;
        right: 15px;
    }
    
    .point-info {
        min-width: 150px;
        padding: 10px;
    }
    
    .point-info h4 {
        font-size: 0.9rem;
    }
    
    .point-info p {
        font-size: 0.8rem;
    }
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    background-color: #000;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

/* Партикли фону */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    opacity: 0;
    animation: floatParticles 15s infinite linear, fadeIn 2s ease forwards;
}

.particle-ball {
    width: 40px;
    height: 40px;
    background-image: url('img/ball.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.particle-boots {
    width: 50px;
    height: 35px;
    background-image: url('img/boots.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s, 0.2s;
    animation-duration: 20s, 2s;
}

.particle:nth-child(2) {
    left: 25%;
    animation-delay: -5s, 0.4s;
    animation-duration: 18s, 2s;
}

.particle:nth-child(3) {
    left: 40%;
    animation-delay: -10s, 0.6s;
    animation-duration: 22s, 2s;
}

.particle:nth-child(4) {
    left: 60%;
    animation-delay: -15s, 0.8s;
    animation-duration: 16s, 2s;
}

.particle:nth-child(5) {
    left: 80%;
    animation-delay: -8s, 1s;
    animation-duration: 24s, 2s;
}

.particle:nth-child(6) {
    left: 15%;
    animation-delay: -12s, 1.2s;
    animation-duration: 19s, 2s;
}

.particle:nth-child(7) {
    left: 70%;
    animation-delay: -3s, 1.4s;
    animation-duration: 21s, 2s;
}

.particle:nth-child(8) {
    left: 90%;
    animation-delay: -18s, 1.6s;
    animation-duration: 17s, 2s;
}


@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    50% {
        transform: translateY(-10vh) rotate(180deg);
        opacity: 1;
    }
}

@keyframes floatParticles {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.15;
    }
    90% {
        opacity: 0.15;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0.15;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Кнопки */
.btn-primary {
    display: inline-block;
    background-color: #FFD700;
    color: #000;
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.9s;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    border: 2px solid transparent;
    z-index: 10;
    text-align: center;
}

.btn-primary::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.5s ease;
    opacity: 0;
    z-index: 2;
    pointer-events: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(90deg, #FFD700, #FFC107, #FFD700); */
    background-size: 200% 100%;
    transition: all 0.4s ease;
    z-index: 1;
    opacity: 0;
}

.btn-primary:hover {
    background-color: #FFD700;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    letter-spacing: 1px;
    color: #000;
    border: 2px solid #FFD700;
    font-weight: 700;
    opacity: 1;
    z-index: 10;
}

.btn-primary:hover::after {
    left: 100%;
    opacity: 1;
    transition: all 0.8s ease;
}

@keyframes btnPulse {
    0% {
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    }
    50% {
        box-shadow: 0 8px 30px rgba(255, 215, 0, 0.8), 0 0 20px rgba(255, 215, 0, 0.6);
    }
    100% {
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    }
}


.btn-primary:hover::before {
    opacity: 1;
    background-position: right center;
}

.btn-primary:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: all 0.2s ease;
}

.btn-secondary {
    display: inline-block;
    border: 2px solid #FFD700;
    color: #FFD700;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #FFD700;
    color: #000;
}

/* Хедер */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background-color: rgba(0, 0, 0, 0.8);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 0.8s ease forwards;
}

.main-menu {
    display: flex;
}

.main-menu li {
    margin: 0 15px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 0.8s ease forwards;
}

.main-menu li:nth-child(1) {
    animation-delay: 0.1s;
}

.main-menu li:nth-child(2) {
    animation-delay: 0.2s;
}

.main-menu li:nth-child(3) {
    animation-delay: 0.3s;
}

.main-menu li:nth-child(4) {
    animation-delay: 0.4s;
}

.main-menu li:nth-child(5) {
    animation-delay: 0.5s;
}

.main-menu a {
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}

.main-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #FFD700;
    transition: width 0.3s ease;
}

.main-menu a:hover::after,
.main-menu a.active::after {
    width: 100%;
}

.language-switcher {
    display: flex;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.lang-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    padding: 5px 10px;
    margin: 0 5px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.lang-btn.active {
    opacity: 1;
    font-weight: 600;
    border-bottom: 2px solid #FFD700;
}

.lang-btn:hover {
    opacity: 1;
}

/* Головна секція */
.hero {
    padding: 120px 0 80px;
    background-image: url('img/bcg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 550px;
}

.hero-text h1 {
    font-size: 4.5rem;
    line-height: 0.9;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-text h1 .strength {
    display: block;
    color: #FFD700;
}

.hero-text h1 .in-unity {
    display: block;
    color: #fff;
}

.hero-text h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.3;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.6s;
}

.join-us-block {
    margin-bottom: 25px;
    background-color: rgba(0, 0, 0, 0.6);
    border-left: 3px solid #FFD700;
    padding: 15px;
    border-radius: 5px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 0.8s;
}

.join-us-title {
    font-size: 1.8rem;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
}

.benefits-list li {
    padding: 5px 0 5px 25px;
    position: relative;
    font-size: 1.1rem;
    color: #fff;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

.hero-video {
    flex: 0 0 750px;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    animation: fadeInScale 1.2s ease forwards 1.2s;
}

.video-container {
    position: relative;
    background-color: #000;
    width: 600px;
    height: 600px;
    overflow: hidden;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    border: 8px solid #FFD700;
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.5),
        inset 0 0 50px rgba(0, 0, 0, 0.3);
    animation: footballPulse 3s ease-in-out infinite;
    transition: all 1.5s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: center;
    z-index: 2;
    perspective: 1000px;
}

.video-container:hover {
    animation: videoHoverEffect 4s ease-in-out infinite;
}

/* Додаємо стан для виходу з ховера, щоб зробити перехід плавнішим */
.video-container {
    will-change: transform, filter, box-shadow;
}

.video-container:hover .video-overlay {
    opacity: 0.7;
    background: linear-gradient(
        135deg,
        rgba(255, 215, 0, 0.2) 0%,
        rgba(255, 215, 0, 0.3) 30%,
        rgba(255, 215, 0, 0.2) 70%,
        rgba(255, 215, 0, 0.4) 100%
    );
    box-shadow: inset 0 0 30px rgba(255, 215, 0, 0.3);
    animation: overlayPulse 3s ease-in-out infinite;
}

.video-container::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    background: linear-gradient(
        45deg,
        #FFD700 0%,
        #FFA500 25%,
        #FFD700 50%,
        #FFA500 75%,
        #FFD700 100%
    );
    z-index: -1;
    animation: footballShimmer 4s ease-in-out infinite;
}

.video-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    transform: translate(-50%, -50%);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    animation: footballInnerGlow 2.5s ease-in-out infinite reverse;
}

.video-container h2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) skew(15deg);
    font-size: 4rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
    font-weight: 700;
    letter-spacing: 2px;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    background-color: #000;
    position: relative;
    overflow: hidden;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

.video-placeholder video {
    width: 130%;
    height: 130%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center;
    transform: translate(-50%, -50%);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    transition: all 1.5s cubic-bezier(0.22, 1, 0.36, 1);
    filter: saturate(1.1);
}

.video-container:hover .video-placeholder video {
    animation: videoZoom 4s ease-in-out infinite;
}

@keyframes videoZoom {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1.08);
        filter: saturate(1.3) contrast(1.1) brightness(1.05);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        filter: saturate(1.4) contrast(1.15) brightness(1.1);
    }
}

.video-placeholder video {
    will-change: transform, filter;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(255, 215, 0, 0.1) 30%,
        rgba(0, 0, 0, 0.3) 70%,
        rgba(0, 0, 0, 0.5) 100%
    );
    z-index: 1;
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    transition: all 1.5s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: background, box-shadow, opacity;
    opacity: 1;
}

@keyframes footballPulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
        box-shadow: 
            0 0 30px rgba(255, 215, 0, 0.5),
            inset 0 0 50px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.02);
        filter: brightness(1.05);
        box-shadow: 
            0 0 40px rgba(255, 215, 0, 0.6),
            inset 0 0 50px rgba(0, 0, 0, 0.3);
    }
}

@keyframes videoHoverEffect {
    0% {
        transform: scale(1.05) rotate(3deg) rotateY(0deg);
        filter: hue-rotate(10deg) brightness(1.1) contrast(1.05);
        box-shadow: 
            0 0 80px rgba(255, 215, 0, 0.9),
            inset 0 0 50px rgba(0, 0, 0, 0.3);
    }
    25% {
        transform: scale(1.05) rotate(2deg) rotateY(2deg);
        filter: hue-rotate(5deg) brightness(1.15) contrast(1.05);
        box-shadow: 
            0 0 85px rgba(255, 215, 0, 0.95),
            inset 0 0 50px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05) rotate(1deg) rotateY(0deg);
        filter: hue-rotate(0deg) brightness(1.2) contrast(1.05);
        box-shadow: 
            0 0 90px rgba(255, 215, 0, 1),
            inset 0 0 50px rgba(0, 0, 0, 0.3);
    }
    75% {
        transform: scale(1.05) rotate(2deg) rotateY(-2deg);
        filter: hue-rotate(5deg) brightness(1.15) contrast(1.05);
        box-shadow: 
            0 0 85px rgba(255, 215, 0, 0.95),
            inset 0 0 50px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1.05) rotate(3deg) rotateY(0deg);
        filter: hue-rotate(10deg) brightness(1.1) contrast(1.05);
        box-shadow: 
            0 0 80px rgba(255, 215, 0, 0.9),
            inset 0 0 50px rgba(0, 0, 0, 0.3);
    }
}

@keyframes footballShimmer {
    0% {
        background-position: -200% 0;
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
    100% {
        background-position: 200% 0;
        opacity: 0.8;
    }
}

@keyframes overlayPulse {
    0%, 100% {
        opacity: 0.7;
        box-shadow: inset 0 0 30px rgba(255, 215, 0, 0.3);
    }
    50% {
        opacity: 0.8;
        box-shadow: inset 0 0 40px rgba(255, 215, 0, 0.4);
    }
}

@keyframes footballInnerGlow {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Адаптивні стилі */
@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
        min-height: 80vh;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
        order: 2;
    }
    
    .hero-text h1 {
        font-size: 3.2rem;
        margin-bottom: 15px;
    }
    
    .hero-text h2 {
        font-size: 1.2rem;
        margin-bottom: 25px;
    }
    
    .hero-video {
        flex: none;
        width: 100%;
        height: 450px;
        order: 1;
    }
    
    .video-container {
        width: 400px;
        height: 400px;
        margin: 0 auto;
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    }
    
    .btn-primary {
        padding: 12px 35px;
        font-size: 1rem;
    }
    
    .video-container h2 {
        font-size: 2.5rem;
    }
    
    .main-menu {
        display: none;
    }
    
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-text h2 {
        font-size: 1rem;
    }
    
    .hero-video {
        height: 350px;
    }
    
    .video-container {
        width: 280px;
        height: 280px;
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    }
    
    .video-container h2 {
        font-size: 2rem;
    }
    
    .btn-primary {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Секція з тарифами */
.membership {
    padding: 80px 0;
    background-color: #000;
    position: relative;
    overflow: visible;
}

.membership::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 50%;
    background-image: url('img/bcg_text.png');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.membership-header {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
    position: relative;
    height: 250px;
}

.hanging-boot {
    position: absolute;
    top: 150px;
    z-index: 5;
    opacity: 0;
    animation: fadeIn 1s ease forwards 2s;
}

.right-boot {
    right: -15%;
    animation-delay: 2.2s;
    z-index: 6;
    top: 30px;
}

.left-boot {
    left: -15%;
    opacity: 0;
    animation-delay: 2.4s;
    z-index: 7;
}

.left-boot.fade-in {
    opacity: 0.9;
    filter: drop-shadow(0 10px 25px rgba(255, 215, 0, 0.3));
}

.boot-string {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 120px;
    background: linear-gradient(to bottom, #8B4513, #654321);
    border-radius: 2px;
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
}

.boot-string::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: #8B4513;
    border-radius: 50%;
    border: 2px solid #654321;
}

.boot-item {
    position: relative;
    top: 120px;
    animation: gentleSwing 6s ease-in-out infinite;
    transform-origin: top center;
    transition: all 0.3s ease;
}

.left-boot .boot-item {
    animation: gentleSwingReverse 6s ease-in-out infinite;
}

.boot-item img {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.2));
    transition: all 0.5s ease;
}

.left-boot .boot-item img {
    width: 400px;
    transform: scaleX(-1);
}

.boot-item:hover {
    animation-play-state: paused;
    transform: scale(1.15) rotate(5deg);
    filter: brightness(1.1);
}

.boot-item:hover img {
    filter: drop-shadow(0 20px 35px rgba(255, 215, 0, 0.5));
    transform: scale(1.05);
}

@keyframes gentleSwing {
    0%, 100% {
        transform: rotate(-3deg);
    }
    50% {
        transform: rotate(3deg);
    }
}

@keyframes gentleSwingReverse {
    0%, 100% {
        transform: rotate(3deg);
    }
    50% {
        transform: rotate(-3deg);
    }
}

.symbol-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #6a0dad;
    color: #fff;
    border-radius: 50%;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.membership-plans {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 1.5s;
}

.second-row {
    margin-bottom: 0;
}

.plan-card {
    flex: 1;
    background-color: rgba(17, 17, 17, 0.8);
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.plan-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.3);
    background-color: rgba(17, 17, 17, 0.95);
}

.plan-card:hover::before {
    left: 100%;
}

.plan-card:hover h3 {
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    transform: scale(1.05);
}

.plan-card h3 {
    transition: all 0.3s ease;
}

.plan-card h3 {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-align: center;
}

.plan-card h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    text-align: center;
    color: #FFD700;
}

.plan-card p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.plan-features {
    margin-bottom: 20px;
}

.plan-features li {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.plan-price {
    margin-top: auto;
    text-align: center;
    font-weight: 600;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Стилі для примітки про знижку */
.discount-notice {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards 2s;
}

.discount-card {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-radius: 10px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 1;
    width: 100%;
}

.discount-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.discount-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

.discount-card:hover::before {
    left: 100%;
    top: 100%;
}

.discount-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s infinite;
}

.discount-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

.discount-content {
    flex: 1;
    color: #000;
}

.discount-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
    text-shadow: none;
    color: #000;
}

.discount-content p {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: #000;
}

.discount-content small {
    font-size: 0.8rem;
    opacity: 0.8;
    font-style: italic;
    color: #333;
}

.special-sessions .focus-areas {
    margin-left: 20px;
    margin-bottom: 20px;
}

.special-sessions .focus-areas li {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

/* Секція з формою консультації */
.consultation {
    padding: 80px 0;
    background-color: #000;
}

.consultation-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.consultation-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.consultation-image img {
    max-width: 80%;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

.consultation-form-container {
    flex: 1;
    background-color: rgba(17, 17, 17, 0.8);
    padding: 40px;
    border-radius: 10px;
}

.consultation-form-container .section-title {
    text-align: left;
    margin-bottom: 10px;
}

.consultation-form-container p {
    margin-bottom: 30px;
    opacity: 0.7;
}

.consultation-form .form-group {
    margin-bottom: 20px;
}

.consultation-form input,
.consultation-form select {
    width: 100%;
    padding: 12px 15px;
    background-color: #222;
    border: 2px solid transparent;
    border-radius: 5px;
    color: #FFD700;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.consultation-form input:focus,
.consultation-form select:focus {
    outline: none;
    border-color: #FFD700;
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2);
    animation: inputGlow 0.5s ease;
}

.consultation-form input:hover,
.consultation-form select:hover {
    background-color: #2a2a2a;
    transform: translateY(-1px);
    box-shadow: 0 3px 15px rgba(255, 215, 0, 0.1);
}

@keyframes inputGlow {
    0% { box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); }
    50% { box-shadow: 0 5px 25px rgba(255, 215, 0, 0.4); }
    100% { box-shadow: 0 5px 20px rgba(255, 215, 0, 0.2); }
}

.consultation-form input::placeholder {
    color: rgba(255, 215, 0, 0.6);
    transition: color 0.3s ease;
}

.consultation-form input:focus::placeholder {
    color: rgba(255, 215, 0, 0.8);
}

.consultation-form select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23FFD700" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    cursor: pointer;
}

.consultation-form .form-group {
    position: relative;
    overflow: hidden;
}

.consultation-form .form-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    transition: left 0.5s ease;
}

.consultation-form .form-group:hover::before {
    left: 100%;
}

.consultation-form button {
    width: 100%;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border: none;
    padding: 15px;
    border-radius: 5px;
    color: #000;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.consultation-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.consultation-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    background: linear-gradient(45deg, #FFA500, #FFD700);
}

.consultation-form button:hover::before {
    left: 100%;
}

.consultation-form button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

@keyframes buttonPulse {
    0% { box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6); }
    100% { box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3); }
}

.consultation-form button:focus {
    outline: none;
    animation: buttonPulse 1s ease infinite;
}

/* Оновлена галерея з каруселлю */
.gallery {
    padding: 80px 0;
    background-color: #000;
}

.gallery-subtitle {
    text-align: left;
    margin-bottom: 40px;
    opacity: 0.7;
}

/* Карусель галереї */
.gallery-carousel {
    position: relative;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-container {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.carousel-slide {
    min-width: 50%;
    position: relative;
    padding: 0 10px;
    box-sizing: border-box;
}

.carousel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.carousel-slide:hover img {
    transform: scale(1.02);
}

/* Кнопки навігації */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 215, 0, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #000;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: #FFD700;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

.carousel-btn svg {
    width: 24px;
    height: 24px;
}

/* Індикатори */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 0, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background: #FFD700;
    border-color: #FFD700;
    transform: scale(1.2);
}

/* Анімації для touch/swipe */
.carousel-track.dragging {
    transition: none;
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.carousel-slide:hover::before {
    opacity: 1;
}

/* Інформація про тренера */
.coach-info {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: 40px;
}

.coach-image {
    margin-right: 20px;
}

.coach-image img {
    height: 300px;
    border-radius: 5px;
}

.coach-details h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.coach-details p {
    color: #FFD700;
    font-size: 1.1rem;
}

/* Футер */
footer {
    background-color: #111;
    padding: 60px 0 20px;
    border-top: 1px solid #333;
}

.footer-content {
    display: flex;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1;
}

.footer-logo img {
    max-width: 150px;
}

.footer-info {
    flex: 2;
    display: flex;
}

.footer-nav, 
.footer-contacts {
    flex: 1;
}

.footer-nav h3,
.footer-contacts h3 {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-nav ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a:hover {
    color: #FFD700;
}

.footer-contacts p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-block;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.social-link img {
    width: 30px;
    height: 30px;
    filter: grayscale(30%);
    transition: all 0.3s ease;
}

.social-link:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.social-link:hover img {
    filter: grayscale(0%);
}

.footer-partners {
    flex: 1;
    margin-top: 30px;
}

.footer-partners h3 {
    color: #FFD700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.partner {
    background: rgba(17, 17, 17, 0.5);
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid #FFD700;
    transition: all 0.3s ease;
}

.partner:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.partner-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.partner-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #e0e0e0;
    letter-spacing: 0.5px;
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Інформація про тренера */
.coach-info {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.coach-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.coach-image {
    text-align: center;
}

.coach-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.coach-image img:hover {
    transform: scale(1.05);
}

.coach-details h3 {
    font-size: 3rem;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.coach-title {
    font-size: 1.3rem;
    color: #FFD700;
    margin-bottom: 30px;
    font-weight: 600;
}

.coach-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.coach-achievements h4 {
    color: #FFD700;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.coach-achievements ul {
    list-style: none;
    padding: 0;
}

.coach-achievements li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #e0e0e0;
}

.coach-achievements li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

/* Адаптивність */
@media (max-width: 1200px) {
    .membership-plans {
        flex-wrap: wrap;
    }
    
    .plan-card {
        flex: 0 0 calc(50% - 20px);
        margin-bottom: 20px;
    }
}

@media (max-width: 992px) {
    .hero-content,
    .consultation-content,
    .coach-info {
        flex-direction: column;
    }
    
    .hero-video,
    .consultation-image {
        padding: 30px 0;
    }
    
    .consultation-form-container {
        width: 100%;
    }
    
    .coach-info {
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .coach-image {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-logo {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .footer-partners {
        margin-top: 40px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 15px;
    }
    
    .main-menu {
        margin: 15px 0;
    }
    
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .join-us-block {
        margin-bottom: 20px;
        padding: 12px;
    }
    
    .join-us-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .benefits-list li {
        font-size: 1rem;
        padding: 4px 0 4px 22px;
    }
    
    .membership-header {
        height: 200px;
        margin-bottom: 40px;
    }
    
    .hanging-boot {
        top: 100px;
        right: 3%;
    }
    
    .boot-string {
        height: 50px;
    }
    
    .boot-item {
        top: 50px;
    }
    
    .boot-item img {
        width: 180px;
    }
    
    .plan-card {
        flex: 0 0 100%;
    }
    
    /* Адаптивність карусельної галереї */
    .carousel-slide {
        min-width: 100%;
    }
    
    /* Coach Info Mobile Styles */
    .coach-info {
        padding: 60px 0;
    }
    
    .coach-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .coach-image img {
        max-width: 300px;
    }
    
    .coach-details h3 {
        font-size: 2.5rem;
    }
    
    .coach-title {
        font-size: 1.1rem;
    }
    
    .coach-description {
        font-size: 1rem;
        text-align: left;
    }
    
    /* Адаптивні стилі для примітки про знижку */
    .discount-card {
        flex-direction: column;
        text-align: center;
        padding: 15px 20px;
        gap: 12px;
        margin: 0 20px;
    }
    
    .discount-icon img {
        width: 35px;
        height: 35px;
    }
    
    .discount-content h3 {
        font-size: 1.1rem;
    }
    
    .discount-content p {
        font-size: 0.9rem;
    }
    
    .discount-content small {
        font-size: 0.75rem;
    }
 }
    
    .carousel-slide img {
        height: 250px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn-prev {
        left: 10px;
    }
    
    .carousel-btn-next {
        right: 10px;
    }
    
    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .footer-info {
        flex-direction: column;
    }
    
    .footer-nav {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .partner {
        padding: 15px;
    }
    
    .partner-name {
        font-size: 1.1rem;
    }
    
    .partner-description {
        font-size: 0.8rem;
    }
    
    .social-link img {
        width: 25px;
        height: 25px;
    }
    
    .join-us-block {
        margin-bottom: 15px;
        padding: 10px;
    }
    
    .join-us-title {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }
    
    .benefits-list li {
        font-size: 0.9rem;
        padding: 3px 0 3px 20px;
    }
    
    
    
    .partner-name {
        font-size: 1.2rem;
    }
    
    .partner-description {
        font-size: 0.9rem;
    }
    
    .social-links {
        justify-content: center;
    }
