/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

:root {
    /* Color Palette - Black theme with accent colors */
    --primary-bg: #000000;
    --secondary-bg: #0a0a0a;
    --card-bg: #111111;
    --accent-primary: #ff0000;
    --accent-secondary: #ff3333;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --border-color: #222222;
    --hover-bg: #1a1a1a;
    
    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 120px 5%;
    --container-max: 1400px;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    cursor: pointer;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    color: #ffffff;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
    }
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.1);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.logo-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.logo:hover .logo-icon {
    box-shadow: 0 0 15px var(--accent-primary);
    transform: rotate(15deg) scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 2px;
    line-height: 1;
}

.logo-tagline {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-primary);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
    display: block;
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--section-padding);
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 0, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: var(--container-max);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    box-sizing: border-box;
}

.hero-text {
    flex: 1;
    z-index: 2;
    width: 100%;
    box-sizing: border-box;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(60px, 8vw, 120px);
    line-height: 0.9;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.hero-title span {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.line1 {
    color: var(--text-primary);
}

.line2 {
    color: var(--accent-primary);
    margin-left: 60px;
}

.line3 {
    color: var(--text-primary);
    margin-left: 120px;
}

.hero-subtitle {
    font-size: 18px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 40px;
    opacity: 1;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    opacity: 1;
}

.btn {
    padding: 18px 40px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background-color: var(--accent-primary);
    color: var(--text-primary);
}

.btn-primary:hover {
    background-color: var(--accent-secondary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
}

.btn-secondary:hover {
    background-color: var(--text-primary);
    color: var(--primary-bg);
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-equipment {
    position: absolute;
    filter: brightness(0) invert(1);
    opacity: 1;
}

.barbell {
    width: 350px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.kettlebell {
    width: 120px;
    top: 10%;
    right: 10%;
}

.plate {
    width: 150px;
    bottom: 10%;
    left: 5%;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 1;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--accent-primary), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    min-height: 100vh;
    padding: var(--section-padding);
    background-color: var(--secondary-bg);
    display: flex;
    align-items: center;
}

.section-container {
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 80px);
    letter-spacing: 4px;
    color: var(--text-primary);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-frame {
    background-color: var(--card-bg);
    padding: 40px;
    border: 2px solid var(--border-color);
    position: relative;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent-primary);
    z-index: -1;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background-color: var(--primary-bg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-item:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    filter: brightness(0) invert(1) drop-shadow(0 0 15px var(--accent-primary));
    transform: scale(1.1) rotate(10deg);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--accent-primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-subtitle {
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.about-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.feature-icon {
    width: 30px;
    height: 30px;
    background-color: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    min-height: 100vh;
    padding: var(--section-padding);
    display: flex;
    align-items: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.2);
}

.service-card.featured {
    border-color: var(--accent-primary);
    background-color: var(--hover-bg);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background-color: var(--accent-primary);
    color: var(--text-primary);
    padding: 5px 40px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    transform: rotate(45deg);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon img {
    filter: brightness(0) invert(1) drop-shadow(0 0 15px var(--accent-primary));
    transform: rotate(20deg) scale(1.1);
}

.service-title {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    margin-bottom: 30px;
}

.service-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-secondary);
}

.service-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
}

.service-btn {
    width: 100%;
    padding: 15px;
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background-color: var(--accent-primary);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    min-height: 100vh;
    padding: var(--section-padding);
    background-color: var(--secondary-bg);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.pricing-card {
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.2);
}

.pricing-card.featured {
    border-color: var(--accent-primary);
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(255, 0, 0, 0.1) 100%);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.pricing-card.premium {
    border-color: #ffd700;
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(255, 215, 0, 0.1) 100%);
}

.pricing-card.premium:hover {
    border-color: #ffd700;
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.pricing-icon {
    margin-bottom: 20px;
}

.pricing-icon img {
    width: 80px;
    height: 80px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.pricing-card:hover .pricing-icon img {
    transform: rotate(360deg) scale(1.1);
    filter: brightness(0) invert(1) drop-shadow(0 0 15px var(--accent-primary));
}

.pricing-card.premium:hover .pricing-icon img {
    filter: brightness(0) invert(1) drop-shadow(0 0 15px #ffd700);
}

.pricing-header {
    margin-bottom: 25px;
}

.plan-name {
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.plan-duration {
    color: var(--text-muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 30px;
    gap: 5px;
}

.currency {
    font-size: 24px;
    color: var(--accent-primary);
    margin-top: 8px;
}

.price {
    font-family: var(--font-display);
    font-size: 64px;
    line-height: 1;
    color: var(--accent-primary);
}

.period {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 40px;
}

.savings-badge {
    background-color: #00ff00;
    color: #000;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.couple-price {
    background-color: var(--card-bg);
    border: 1px solid var(--accent-primary);
    color: var(--text-secondary);
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 20px;
    border-radius: 5px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-features li:first-child {
    border-top: 1px solid var(--border-color);
}

.pricing-btn {
    width: 100%;
    padding: 18px;
    background-color: var(--accent-primary);
    color: var(--text-primary);
    border: none;
    font-family: var(--font-display);
    font-size: 18px;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.pricing-btn:hover {
    background-color: var(--text-primary);
    color: var(--accent-primary);
    transform: scale(1.02);
}

.pricing-card.premium .pricing-btn {
    background-color: #ffd700;
    color: #000;
}

.pricing-card.premium .pricing-btn:hover {
    background-color: #fff;
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-primary);
    color: var(--text-primary);
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.plan-badge.popular {
    background-color: #00ff00;
    color: #000;
}

.plan-badge.premium-badge {
    background-color: #ffd700;
    color: #000;
}

.pricing-footer {
    text-align: center;
    margin-top: 50px;
}

.pricing-note {
    color: var(--text-muted);
    font-size: 14px;
    margin: 10px 0;
}

.pricing-note a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
}

.pricing-note a:hover {
    text-decoration: underline;
}

.pricing-decoration {
    position: absolute;
    filter: brightness(0) invert(1);
    opacity: 0.03;
    pointer-events: none;
}

.pricing-decoration.db-1 {
    width: 200px;
    top: 10%;
    left: 5%;
    transform: rotate(-20deg);
}

.pricing-decoration.kb-1 {
    width: 180px;
    top: 60%;
    right: 8%;
    transform: rotate(45deg);
}

.pricing-decoration.wp-1 {
    width: 250px;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%) rotate(15deg);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    min-height: 100vh;
    padding: var(--section-padding);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    border-color: var(--accent-primary);
    background-color: var(--accent-primary);
    transform: scale(1.1) rotate(10deg);
}

.contact-details h4 {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--text-secondary);
}

.contact-details a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--accent-primary);
}

.social-links {
    margin-top: 20px;
}

.social-links h4 {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--accent-primary);
    border-color: var(--accent-primary);
    transform: translateY(-5px);
}

.contact-form {
    background-color: var(--card-bg);
    padding: 50px;
    border: 2px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px;
    background-color: var(--primary-bg);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.form-group textarea {
    resize: vertical;
}

.btn-full {
    width: 100%;
}

.contact-decoration {
    position: absolute;
    filter: brightness(0) invert(1);
    opacity: 0.03;
}

.plate-1 {
    width: 300px;
    top: 10%;
    right: 5%;
    transform: rotate(45deg);
}

.kettle-1 {
    width: 200px;
    bottom: 15%;
    left: 5%;
    transform: rotate(-30deg);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--secondary-bg);
    border-top: 1px solid var(--border-color);
    padding: 60px 5% 30px;
}

.footer-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-primary);
    padding-left: 10px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 2px;
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.8;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    background-color: var(--primary-bg);
    border: 2px solid var(--border-color);
    color: var(--text-primary);
    font-family: var(--font-body);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.newsletter-form button {
    padding: 12px 20px;
    background-color: var(--accent-primary);
    border: none;
    color: var(--text-primary);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--accent-secondary);
}

.footer-bottom {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
}

.footer-bottom p {
    margin: 5px 0;
}

.developer-credit {
    font-size: 13px;
    margin-top: 10px;
}

.developer-credit a {
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.developer-credit a:hover {
    color: var(--text-primary);
    text-decoration: underline;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-visual {
        height: 300px;
        order: -1; /* Move visual above text on tablet */
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 5%;
    }
    
    * {
        max-width: 100vw !important;
    }
    
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    .nav-container {
        padding: 15px 20px !important;
        width: 100%;
        box-sizing: border-box;
    }
    
    .logo {
        gap: 10px;
        flex-shrink: 0;
        max-width: 70%;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
        flex-shrink: 0;
    }
    
    .logo-name {
        font-size: 16px;
        letter-spacing: 1px;
        white-space: nowrap;
    }
    
    .logo-tagline {
        font-size: 9px;
        white-space: nowrap;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        padding: 15px 30px;
        font-size: 14px;
    }
    
    .hero-section {
        padding: 80px 20px;
        padding-top: 100px;
    }
    
    .hero-content {
        gap: 30px;
        padding: 0;
    }
    
    .hero-text {
        padding: 0 10px;
    }
    
    .hero-visual {
        height: 200px;
        position: relative;
    }
    
    .floating-equipment {
        opacity: 0.3; /* Make icons subtle on mobile */
    }
    
    .barbell {
        width: 180px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .kettlebell {
        width: 60px;
        top: 20%;
        right: 15%;
    }
    
    .plate {
        width: 70px;
        bottom: 20%;
        left: 10%;
    }
    
    .scroll-indicator {
        bottom: 20px; /* Move scroll indicator up on mobile */
    }
    
    .section-title {
        font-size: 48px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: scale(1.02) translateY(-10px);
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .schedule-item {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .schedule-icon {
        margin: 0 auto;
    }
    
    .membership-cta {
        padding: 40px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 12px 15px;
    }
    
    .logo-name {
        font-size: 14px;
        letter-spacing: 1px;
    }
    
    .logo-tagline {
        font-size: 8px;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .hero-section {
        padding: 80px 15px;
        padding-top: 90px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .line2,
    .line3 {
        margin-left: 0;
    }
    
    .price {
        font-size: 48px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }

    .schedule-controls {
        gap: 10px;
    }
    
    .day-btn {
        padding: 12px 20px;
        font-size: 11px;
    }
}