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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Color Variables */
:root {
    --accent-yellow: #FFD700;
    --accent-black: #000000;
    --accent-gold: #F4C430;
    --accent-orange: #FF8C00;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --success-green: #10b981;
    --warning-orange: #f59e0b;
    --error-red: #ef4444;
}

/* Icons */
.icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
}

/* Page Navigation */
.page {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
}

.page.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.top-bar {
    background: linear-gradient(135deg, var(--accent-black), var(--gray-800));
    color: var(--accent-yellow);
    padding: 10px 0;
    font-size: 14px;
    font-weight: 500;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.location-info,
.phone-info {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease;
}

.location-info:hover,
.phone-info:hover {
    transform: translateY(-1px);
}

.navbar {
    padding: 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-text {
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-gold));
    color: var(--accent-black);
    padding: 10px 16px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 22px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
}

.logo:hover .logo-text {
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.4);
    transform: translateY(-2px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    margin: 0;
}

.nav-link {
    display: block;
    padding: 10px 16px;
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-gold));
    transition: left 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    left: 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-black);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: var(--accent-yellow);
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--gray-700);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu {
    display: none;
    background: white;
    border-top: 1px solid var(--gray-200);
    padding: 20px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    display: block;
    animation: slideDown 0.3s ease-out;
}

.mobile-nav-link {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: var(--gray-700);
    font-weight: 600;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: var(--accent-yellow);
    color: var(--accent-black);
    border-left-color: var(--accent-black);
    transform: translateX(5px);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
    animation: heroContentSlideUp 1s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #ffffff, var(--accent-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.6rem);
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    font-weight: 500;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-gold));
    color: var(--accent-black);
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.4s ease;
    transform: translateY(0);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    transition: left 0.4s ease;
    z-index: -1;
}

.cta-btn:hover::before {
    left: 0;
}

.cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.cta-btn.green {
    background: linear-gradient(135deg, var(--success-green), #059669);
    color: white;
}

.cta-btn.green:hover {
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}

.cta-btn.black {
    background: linear-gradient(135deg, var(--accent-black), var(--gray-800));
    color: white;
}

.cta-btn.black:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.cta-btn.outline {
    background: transparent;
    color: var(--accent-black);
    border: 3px solid var(--accent-black);
}

.cta-btn.outline:hover {
    background: var(--accent-black);
    color: white;
}

.cta-btn.instagram-btn {
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    color: white;
}

.cta-btn.instagram-btn:hover {
    box-shadow: 0 12px 35px rgba(131, 58, 180, 0.4);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.carousel-btn:hover {
    background: rgba(255, 215, 0, 0.8);
    color: var(--accent-black);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--accent-yellow);
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 215, 0, 0.8);
    transform: scale(1.1);
}

/* Section Styles */
.about-section,
.instagram-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gray-50), #ffffff);
}

.branches-section {
    padding: 100px 0;
    background: white;
}

.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent-black), var(--gray-800));
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23FFD700" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-gold));
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255, 140, 0, 0.3), transparent 50%);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-gold));
    border-radius: 2px;
}

.section-title.white {
    color: white;
}

.section-subtitle {
    font-size: 20px;
    color: var(--gray-600);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 500;
}

.section-subtitle.white {
    color: rgba(255, 255, 255, 0.9);
}

.highlight {
    color: var(--accent-yellow);
    position: relative;
}

.cta-center {
    text-align: center;
    margin-top: 50px;
}

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

/* Branches Grid */
.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

.branch-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.branch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-gold));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    border-radius: 20px;
}

.branch-card:hover::before {
    opacity: 0.05;
}

.branch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.branch-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

.branch-card:hover .branch-image img {
    transform: scale(1.08);
}

.branch-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.branch-name {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 28px;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.branch-content {
    padding: 30px;
    position: relative;
    z-index: 2;
}

.branch-features {
    list-style: none;
    margin-bottom: 30px;
}

.branch-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--gray-700);
    font-weight: 500;
    transition: transform 0.3s ease;
}

.branch-features li:hover {
    transform: translateX(5px);
}

.branch-features .icon {
    color: var(--accent-yellow);
    width: 18px;
    height: 18px;
}

.branch-btn {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-gold));
    color: var(--accent-black);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.branch-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-orange));
    transition: left 0.3s ease;
    z-index: -1;
}

.branch-btn:hover::before {
    left: 0;
}

.branch-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    color: white;
    padding: 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-gold));
    color: var(--accent-black);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.feature-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
}

/* Branch Details Section */
.branch-hero {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 100px;
}

.back-btn {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 15px 25px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

.back-btn:hover {
    background: rgba(255, 215, 0, 0.9);
    color: var(--accent-black);
    transform: translateX(-5px);
}

.branch-info {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateY(-3px);
}

/* Branch Highlights */
.branch-highlights {
    margin-bottom: 100px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.highlight-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-gold));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.highlight-card:hover::before {
    opacity: 0.05;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-gold));
    color: var(--accent-black);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
    position: relative;
    z-index: 2;
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.highlight-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gray-900);
    position: relative;
    z-index: 2;
}

.highlight-card p {
    color: var(--gray-600);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Trainers Section */
.trainers-section {
    margin-bottom: 100px;
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.trainer-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.trainer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.trainer-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.trainer-card:hover .trainer-image img {
    transform: scale(1.08);
}

.trainer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trainer-card:hover .trainer-overlay {
    opacity: 1;
}

.trainer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--accent-yellow);
    color: var(--accent-black);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.trainer-card:hover .social-link {
    transform: translateY(0);
    opacity: 1;
}

.social-link:hover {
    background: white;
    transform: translateY(-5px) scale(1.1);
}

.trainer-info {
    padding: 30px;
}

.trainer-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.trainer-title {
    font-size: 16px;
    color: var(--accent-yellow);
    font-weight: 600;
    margin-bottom: 15px;
}

.trainer-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.specialty {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.trainer-experience {
    color: var(--gray-600);
    font-weight: 600;
    margin-bottom: 20px;
}

.trainer-btn {
    width: 100%;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-gold));
    color: var(--accent-black);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trainer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

/* Membership Plans */
.membership-plans {
    margin-bottom: 100px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.plan-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 3px solid transparent;
}

.plan-card.popular {
    border-color: var(--accent-yellow);
    transform: scale(1.05);
    background: linear-gradient(135deg, #fffbf0, white);
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.plan-card.popular:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-gold));
    color: var(--accent-black);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.plan-name {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--gray-900);
    text-align: center;
}

.plan-price {
    text-align: center;
    margin-bottom: 40px;
    font-size: 42px;
    font-weight: 800;
    color: var(--accent-yellow);
}

.plan-price span {
    font-size: 18px;
    color: var(--gray-600);
    font-weight: 500;
}

.plan-features {
    list-style: none;
    margin-bottom: 40px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--gray-700);
    font-weight: 500;
}

.plan-features li::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--accent-yellow);
    border-radius: 50%;
    flex-shrink: 0;
}

.plan-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--gray-900), var(--gray-700));
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-card.popular .plan-btn {
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-gold));
    color: var(--accent-black);
}

.plan-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.plan-card.popular .plan-btn:hover {
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

/* Branch CTA */
.branch-cta {
    background: linear-gradient(135deg, var(--accent-black), var(--gray-800));
    color: white;
    padding: 80px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.branch-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.1), transparent 50%);
}

.branch-cta h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.branch-cta p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

/* CTA Section */
.cta-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--accent-black);
    margin-bottom: 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-subtitle {
    font-size: 22px;
    color: rgba(0, 0, 0, 0.8);
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--accent-black), var(--gray-800));
    color: white;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerGrain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23FFD700" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23FFD700" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23footerGrain)"/></svg>');
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.footer-brand {
    max-width: 350px;
}

.brand-description {
    color: rgba(255, 255, 255, 0.9);
    margin: 20px 0 30px;
    line-height: 1.7;
    font-size: 16px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.footer .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--accent-yellow);
    color: var(--accent-black);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer .social-link:hover {
    background: white;
    transform: translateY(-5px) scale(1.1);
}

.footer-title {
    color: var(--accent-yellow);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.branch-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: transform 0.3s ease;
}

.detail-item:hover {
    transform: translateX(5px);
}

.detail-item .icon {
    color: var(--accent-yellow);
    margin-top: 3px;
    flex-shrink: 0;
}

.detail-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

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

/* Animations */
@keyframes heroContentSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* AOS Animation Classes */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-btn {
        padding: 16px 30px;
        font-size: 16px;
    }
    
    .carousel-btn {
        display: none;
    }
    
    .branches-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .trainers-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .branch-info {
        flex-direction: column;
        align-items: center;
    }
    
    .branch-cta {
        padding: 50px 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .back-btn {
        top: 20px;
        left: 20px;
        padding: 12px 20px;
    }
    
    .branch-hero {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-content {
        padding: 0 16px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .branch-card,
    .highlight-card,
    .plan-card,
    .trainer-card {
        margin: 0 10px;
    }
    
    .branch-cta h2 {
        font-size: 28px;
    }
    
    .branch-cta p {
        font-size: 16px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

/* Focus States for Accessibility */
button:focus,
a:focus {
    outline: 3px solid var(--accent-yellow);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cta-btn,
    .carousel-btn,
    .mobile-menu-btn {
        display: none !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .cta-btn,
    .branch-btn,
    .trainer-btn,
    .plan-btn {
        border: 2px solid var(--accent-black);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}