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

:root {
    --primary-color: #ff4747;
    --secondary-color: #1a1a1a;
    --text-color: #333;
    --light-text: #666;
    --white: #ffffff;
    --light-bg: #f0f4f8;
    --alt-bg: #e8eff5;
    --border-color: #e0e0e0;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* ===== Particles Background ===== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 71, 71, 0.6);
    border-radius: 50%;
    animation: particleFloat 8s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-duration: 6s; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; top: 80%; animation-duration: 8s; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; top: 40%; animation-duration: 7s; animation-delay: 2s; }
.particle:nth-child(4) { left: 40%; top: 60%; animation-duration: 9s; animation-delay: 0.5s; }
.particle:nth-child(5) { left: 50%; top: 30%; animation-duration: 6.5s; animation-delay: 1.5s; }
.particle:nth-child(6) { left: 60%; top: 70%; animation-duration: 8.5s; animation-delay: 2.5s; }
.particle:nth-child(7) { left: 70%; top: 50%; animation-duration: 7.5s; animation-delay: 0.8s; }
.particle:nth-child(8) { left: 80%; top: 25%; animation-duration: 9.5s; animation-delay: 1.8s; }
.particle:nth-child(9) { left: 90%; top: 65%; animation-duration: 6.8s; animation-delay: 2.2s; }
.particle:nth-child(10) { left: 15%; top: 45%; animation-duration: 8.2s; animation-delay: 0.3s; }
.particle:nth-child(11) { left: 25%; top: 15%; animation-duration: 7.2s; animation-delay: 1.3s; }
.particle:nth-child(12) { left: 35%; top: 75%; animation-duration: 9.2s; animation-delay: 2.8s; }
.particle:nth-child(13) { left: 45%; top: 35%; animation-duration: 6.3s; animation-delay: 0.6s; }
.particle:nth-child(14) { left: 55%; top: 85%; animation-duration: 8.8s; animation-delay: 1.6s; }
.particle:nth-child(15) { left: 65%; top: 10%; animation-duration: 7.8s; animation-delay: 2.6s; }
.particle:nth-child(16) { left: 75%; top: 55%; animation-duration: 9.8s; animation-delay: 0.9s; }
.particle:nth-child(17) { left: 85%; top: 40%; animation-duration: 6.6s; animation-delay: 1.9s; }
.particle:nth-child(18) { left: 95%; top: 90%; animation-duration: 8.6s; animation-delay: 2.9s; }
.particle:nth-child(19) { left: 5%; top: 60%; animation-duration: 7.6s; animation-delay: 0.4s; }
.particle:nth-child(20) { left: 48%; top: 5%; animation-duration: 9.6s; animation-delay: 1.4s; }

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-30px) translateX(20px) scale(1.5);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-60px) translateX(-15px) scale(1);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-40px) translateX(25px) scale(1.3);
        opacity: 0.7;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--secondary-color);
    padding: 20px 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.5s ease;
    transition: all 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo h1:hover {
    color: var(--primary-color);
    transform: scale(1.05);
}

.logo h1 span {
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.logo h1:hover span {
    color: var(--white);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== Hero Section ===== */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 68px;
    overflow: hidden;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    }
    25% {
        background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    }
    50% {
        background: linear-gradient(135deg, #1a1a1a 0%, #3d3d3d 100%);
    }
    75% {
        background: linear-gradient(135deg, #252525 0%, #1a1a1a 100%);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 71, 71, 0.03) 2px,
            rgba(255, 71, 71, 0.03) 4px
        );
}

/* Animated Background Shapes */
.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.15;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-color);
    top: 10%;
    left: 10%;
    animation: float 20s infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: #ff6b6b;
    top: 60%;
    right: 15%;
    animation: float 15s infinite reverse;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--primary-color);
    bottom: 10%;
    left: 50%;
    animation: float 18s infinite;
    animation-delay: -5s;
}

.shape-4 {
    width: 180px;
    height: 180px;
    background: #ff8787;
    top: 30%;
    right: 30%;
    animation: pulse 12s infinite;
}

.shape-5 {
    width: 220px;
    height: 220px;
    background: var(--primary-color);
    bottom: 30%;
    left: 20%;
    animation: float 22s infinite;
    animation-delay: -10s;
}

.shape-6 {
    width: 280px;
    height: 280px;
    background: #ff5c5c;
    top: 50%;
    left: 60%;
    animation: pulse 16s infinite;
    animation-delay: -8s;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
    padding: 20px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 18px;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
    animation: fadeInDown 1s ease;
    animation-delay: 0.3s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease;
    animation-delay: 0.5s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-title span {
    color: var(--primary-color);
    animation: glow 2s ease infinite;
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(255, 71, 71, 0.5);
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 71, 71, 0.8), 0 0 40px rgba(255, 71, 71, 0.6);
    }
}

.hero-description {
    font-size: 20px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease;
    animation-delay: 0.7s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease;
    animation-delay: 0.9s;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* ===== Buttons ===== */
.btn {
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    font-size: 16px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(255, 71, 71, 0.3);
    animation: pulse-btn 2s ease infinite;
}

@keyframes pulse-btn {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 71, 71, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 71, 71, 0.6);
    }
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 71, 71, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    position: relative;
    overflow: hidden;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--white);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-secondary:hover::after {
    left: 0;
}

.btn-secondary:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    animation: fadeInDown 0.8s ease forwards;
    opacity: 0;
    transform: translateY(-30px);
}

.section-title span {
    color: var(--primary-color);
}

.section-line {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto 20px;
    animation: expandWidth 1s ease forwards;
    animation-delay: 0.3s;
    width: 0;
}

@keyframes expandWidth {
    to {
        width: 80px;
    }
}

.section-description {
    font-size: 18px;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(20px);
    animation-delay: 0.5s;
}

/* ===== About Section ===== */
.about {
    background: var(--alt-bg);
    position: relative;
    overflow: hidden;
}

/* Animated Background for About */
.animated-bg-about {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape-about {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.08;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.shape-about-1 {
    width: 400px;
    height: 400px;
    background: #667eea;
    top: -10%;
    right: 10%;
    animation: float 25s infinite;
}

.shape-about-2 {
    width: 350px;
    height: 350px;
    background: var(--primary-color);
    bottom: -15%;
    left: 15%;
    animation: float 20s infinite reverse;
    animation-delay: -7s;
}

.shape-about-3 {
    width: 300px;
    height: 300px;
    background: #764ba2;
    top: 40%;
    left: 50%;
    animation: pulse 18s infinite;
    animation-delay: -5s;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow);
    animation: fadeInLeft 1s ease forwards;
    opacity: 0;
    transform: translateX(-50px);
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.image-icon {
    font-size: 120px;
}

.about-text h3 {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    animation: fadeInRight 1s ease forwards;
    opacity: 0;
    transform: translateX(50px);
    animation-delay: 0.2s;
}

.about-text p {
    font-size: 17px;
    color: var(--light-text);
    margin-bottom: 20px;
    line-height: 1.8;
    animation: fadeInRight 1s ease forwards;
    opacity: 0;
    transform: translateX(50px);
}

.about-text p:nth-of-type(1) { animation-delay: 0.4s; }
.about-text p:nth-of-type(2) { animation-delay: 0.6s; }

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 10px;
    animation: scaleIn 0.6s ease forwards;
    opacity: 0;
    transform: scale(0.5);
}

.stat-item:nth-child(1) { animation-delay: 0.8s; }
.stat-item:nth-child(2) { animation-delay: 1s; }
.stat-item:nth-child(3) { animation-delay: 1.2s; }

.stat-item:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
    background: var(--primary-color);
}

.stat-item:hover h4,
.stat-item:hover p {
    color: var(--white);
    transition: color 0.3s ease;
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.stat-item h4 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-weight: 800;
}

.stat-item p {
    font-size: 16px;
    color: var(--text-color);
    font-weight: 600;
}

/* ===== Services Section ===== */
.services {
    background: var(--light-bg);
    position: relative;
    overflow: hidden;
}

/* Animated Background for Services */
.animated-bg-services {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.shape-service {
    position: absolute;
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.1;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.shape-service-1 {
    width: 350px;
    height: 350px;
    background: var(--primary-color);
    top: 20%;
    left: 5%;
    animation: float 22s infinite;
}

.shape-service-2 {
    width: 280px;
    height: 280px;
    background: #ff6b6b;
    bottom: 10%;
    right: 10%;
    animation: float 18s infinite reverse;
    animation-delay: -6s;
}

.shape-service-3 {
    width: 320px;
    height: 320px;
    background: #ff8787;
    top: 50%;
    right: 30%;
    animation: pulse 20s infinite;
    animation-delay: -10s;
}

.shape-service-4 {
    width: 250px;
    height: 250px;
    background: var(--primary-color);
    bottom: 30%;
    left: 40%;
    animation: float 24s infinite;
    animation-delay: -12s;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

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

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
    transition: transform 0.4s ease;
}

.service-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.4s ease;
}

.service-card h3 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    color: var(--light-text);
    line-height: 1.7;
}

/* ===== Pricing Section ===== */
.pricing {
    background: var(--alt-bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.pricing-card:nth-child(1) { animation-delay: 0.2s; }
.pricing-card:nth-child(2) { animation-delay: 0.4s; }
.pricing-card:nth-child(3) { animation-delay: 0.6s; }

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.pricing-card:hover .amount {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    animation: bounce 2s ease infinite;
}

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

.pricing-header h3 {
    font-size: 28px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.price {
    margin-bottom: 30px;
}

.currency {
    font-size: 24px;
    color: var(--light-text);
    vertical-align: top;
}

.amount {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary-color);
}

.period {
    font-size: 18px;
    color: var(--light-text);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* ===== Trainers Section ===== */
.trainers {
    background: var(--light-bg);
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trainer-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.trainer-card:nth-child(1) { animation-delay: 0.1s; }
.trainer-card:nth-child(2) { animation-delay: 0.3s; }
.trainer-card:nth-child(3) { animation-delay: 0.5s; }
.trainer-card:nth-child(4) { animation-delay: 0.7s; }

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

.trainer-card:hover .trainer-image {
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

.trainer-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.trainer-card:hover .trainer-image img {
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

.trainer-info {
    padding: 25px;
    text-align: center;
}

.trainer-info h3 {
    font-size: 22px;
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-weight: 700;
}

.trainer-role {
    font-size: 15px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.trainer-description {
    font-size: 14px;
    color: var(--light-text);
    line-height: 1.6;
}

/* ===== Contact Section ===== */
.contact {
    background: var(--alt-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    animation: fadeInLeft 0.8s ease forwards;
    opacity: 0;
    transform: translateX(-30px);
}

.contact-item:nth-child(1) { animation-delay: 0.2s; }
.contact-item:nth-child(2) { animation-delay: 0.4s; }
.contact-item:nth-child(3) { animation-delay: 0.6s; }
.contact-item:nth-child(4) { animation-delay: 0.8s; }

.contact-item:hover .contact-icon {
    transform: scale(1.2) rotate(10deg);
    transition: transform 0.3s ease;
}

.contact-icon {
    font-size: 32px;
    min-width: 50px;
}

.contact-item h4 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-item p {
    font-size: 16px;
    color: var(--light-text);
}

.contact-form {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 15px;
    animation: fadeInRight 1s ease forwards;
    opacity: 0;
    transform: translateX(50px);
    animation-delay: 0.3s;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
    animation: slideInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

.form-group:nth-child(1) input { animation-delay: 0.5s; }
.form-group:nth-child(2) input { animation-delay: 0.6s; }
.form-group:nth-child(3) input { animation-delay: 0.7s; }
.form-group:nth-child(4) textarea { animation-delay: 0.8s; }

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    transform: scale(1.02);
    box-shadow: 0 0 15px rgba(255, 71, 71, 0.2);
}

.form-group textarea {
    resize: vertical;
}

/* ===== Footer ===== */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    animation: slideRight 3s ease infinite;
}

@keyframes slideRight {
    to {
        left: 100%;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 800;
}

.footer-section h3 span {
    color: var(--primary-color);
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-section ul li a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover::before {
    left: -15px;
    opacity: 1;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(10px);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 25px;
}

.social-link::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    animation: blink 2s ease infinite;
}

@keyframes blink {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.social-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

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

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

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(40px, 10px) scale(1.05);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.25;
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .services-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .hero-title {
        font-size: 56px;
    }
}

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

    .hamburger {
        display: flex;
    }

    .hero {
        height: 80vh;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .services-grid,
    .pricing-grid,
    .trainers-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

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

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 32px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

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

    .btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}