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

:root {
    --primary-red: #FF0000;
    --secondary-black: #000000;
    --accent-yellow: #FFFF00;
    --bg-dark: #0A0A0A;
    --text-white: #FFFFFF;
    --text-gray: #CCCCCC;
    --success-green: #00FF00;
    --gradient-red: linear-gradient(135deg, #FF0000, #CC0000);
    --gradient-dark: linear-gradient(135deg, #1a1a1a, #0A0A0A);
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.kettlebell-swing {
    width: 100px;
    height: 100px;
    position: relative;
    animation: swing 1s ease-in-out infinite;
}

.kettlebell {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.kettlebell::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 20px;
    background: var(--primary-red);
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px 20px 0 0;
}

@keyframes swing {
    0%, 100% { transform: rotate(-30deg); }
    50% { transform: rotate(30deg); }
}

.loading-text {
    margin-top: 30px;
    color: var(--primary-red);
    font-size: 1.5rem;
    animation: pulse 1s infinite;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 2px 20px rgba(255, 0, 0, 0.3);
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-red);
    font-family: 'Bebas Neue', cursive;
}

.logo i {
    margin-right: 10px;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.member-login-btn {
    background: var(--gradient-red);
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.member-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

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

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

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-dark);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: center;
}

.transformation-slider {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.before-image, .after-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.before-image {
    background-image: url('https://images.unsplash.com/photo-1584863231364-2edc166de576?w=600');
    filter: grayscale(50%);
}

.after-image {
    background-image: url('https://images.unsplash.com/photo-1583454110551-21f2fa2afe61?w=600');
    clip-path: inset(0 50% 0 0);
    transition: clip-path 0.3s ease;
}

.slider-control {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    z-index: 5;
    opacity: 0;
    cursor: ew-resize;
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-red);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.hero-content {
    animation: fadeInUp 1s ease;
}
.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.word-animate {
    display: inline-block;
    animation: wordPop 0.6s ease backwards;
}

.word-animate:nth-child(1) { animation-delay: 0.1s; }
.word-animate:nth-child(2) { animation-delay: 0.2s; }
.word-animate:nth-child(3) { animation-delay: 0.3s; }

.word-animate.beast {
    color: var(--primary-red);
    text-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
}

@keyframes wordPop {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    animation: fadeIn 1s ease 0.5s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.cta-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button.pulse-red {
    background: var(--gradient-red);
    color: white;
    animation: pulse 2s infinite;
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--primary-red);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.3);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(255, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

.transformation-counter {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    color: var(--accent-yellow);
}

.transformation-counter i {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

.counter {
    font-size: 2.5rem;
    font-weight: bold;
    font-family: 'Bebas Neue', cursive;
}

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

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.float-element {
    position: absolute;
    color: var(--primary-red);
    opacity: 0.1;
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
}

.element-1 { top: 20%; left: 10%; animation-delay: 0s; }
.element-2 { top: 60%; right: 10%; animation-delay: 2s; }
.element-3 { bottom: 20%; left: 50%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

/* Live Status Bar */
.live-status-bar {
    background: rgba(0, 0, 0, 0.9);
    padding: 1rem 0;
    border-top: 2px solid var(--primary-red);
    border-bottom: 2px solid var(--primary-red);
}

.status-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 2rem;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.status-item i {
    color: var(--primary-red);
}

.crowd-level {
    color: var(--accent-yellow);
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--gradient-dark);
}

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

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.title-line {
    width: 100px;
    height: 3px;
    background: var(--gradient-red);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 0, 0.1), transparent);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.feature-card:hover::before {
    transform: scale(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.2);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    animation: iconPulse 2s infinite;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.feature-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.feature-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
    color: var(--accent-yellow);
}

/* Programs Section */
.programs {
    padding: 5rem 0;
    background: #0F0F0F;
}

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

.program-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.3);
}

.program-card.featured {
    border: 2px solid var(--primary-red);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-red);
    color: white;
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 10;
}

.program-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.program-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.weight-loss { background-image: url('https://images.unsplash.com/photo-1517836357463-d25dfeac3438?w=600'); }
.muscle-building { background-image: url('https://images.unsplash.com/photo-1583454110551-21f2fa2afe61?w=600'); }
.fundamentals { background-image: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=600'); }
.hiit { background-image: url('https://images.unsplash.com/photo-1549060279-7e168fcee0c2?w=600'); }

.program-content {
    padding: 2rem;
}

.program-content h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary-red);
}

.program-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.program-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.program-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.program-features i {
    color: var(--success-green);
}

.program-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-yellow);
    font-family: 'Bebas Neue', cursive;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.program-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-red);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.program-btn:hover {
    background: linear-gradient(135deg, #CC0000, #FF0000);
    transform: translateX(5px);
}

/* Trainers Section */
.trainers {
    padding: 5rem 0;
    background: var(--gradient-dark);
}

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

.trainer-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.trainer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.3);
}

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

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

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

.trainer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.trainer-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: white;
    font-size: 1.1rem;
}

.trainer-stats div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trainer-stats i {
    color: var(--primary-red);
}

.trainer-info {
    padding: 1.5rem;
    text-align: center;
}

.trainer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-red);
}

.trainer-info p {
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.trainer-badges {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.badge {
    background: rgba(255, 0, 0, 0.2);
    color: var(--primary-red);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.trainer-social a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.trainer-social a:hover {
    color: var(--primary-red);
}

.book-trainer-btn {
    width: 100%;
    padding: 0.8rem;
    margin-top: 1rem;
    background: var(--gradient-red);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-trainer-btn:hover {
    background: linear-gradient(135deg, #CC0000, #FF0000);
    transform: translateY(-2px);
}

/* Schedule Section */
.schedule {
    padding: 5rem 0;
    background: #0F0F0F;
}

.schedule-controls {
    margin-bottom: 3rem;
}

.day-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.day-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.day-tab.active,
.day-tab:hover {
    background: var(--gradient-red);
    color: white;
    border-color: var(--primary-red);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--primary-red);
    color: var(--primary-red);
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--gradient-red);
    color: white;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.schedule-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-red);
    transition: all 0.3s ease;
}

.schedule-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.2);
}

.schedule-time {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--accent-yellow);
    margin-bottom: 0.5rem;
}

.schedule-class {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.schedule-trainer {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.schedule-spots {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spots-left {
    font-size: 0.9rem;
    color: var(--success-green);
}

.book-class-btn {
    background: var(--gradient-red);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.book-class-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(255, 0, 0, 0.3);
}

/* Membership Section */
.membership {
    padding: 5rem 0;
    background: var(--gradient-dark);
}

.special-offers-banner {
    background: rgba(255, 255, 0, 0.1);
    border: 2px solid var(--accent-yellow);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 3rem;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: var(--accent-yellow);
}

.offer-item i {
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

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

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.3);
}

.pricing-card.featured {
    border: 2px solid var(--primary-red);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-red);
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.pricing-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-white);
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-gray);
}

.amount {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--primary-red);
    font-family: 'Bebas Neue', cursive;
}

.period {
    font-size: 1rem;
    color: var(--text-gray);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pricing-features li i {
    color: var(--success-green);
}

.pricing-features li.disabled {
    color: var(--text-gray);
    opacity: 0.5;
}

.pricing-features li.disabled i {
    color: #FF0000;
}

.pricing-btn {
    width: 100%;
    padding: 1rem;
    background: transparent;
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.pricing-btn:hover {
    background: var(--gradient-red);
    color: white;
}

.featured-btn {
    background: var(--gradient-red);
    color: white;
    border: none;
}

/* Success Stories Section */
.success-stories {
    padding: 5rem 0;
    background: #0F0F0F;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.story-filter {
    background: transparent;
    border: 1px solid var(--primary-red);
    color: var(--primary-red);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.story-filter.active,
.story-filter:hover {
    background: var(--gradient-red);
    color: white;
}

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

.story-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.3);
}

.transformation-images {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
}

.before-after {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
}

.before-after img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.before {
    filter: grayscale(50%);
}

.vs-badge {
    position: absolute;
    background: var(--primary-red);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50%;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.story-content {
    padding: 2rem;
}

.story-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-red);
}

.story-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.play-video-btn {
    background: var(--gradient-red);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.play-video-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

/* Tools Section */
.tools {
    padding: 5rem 0;
    background: var(--gradient-dark);
}

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

.tool-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.2);
}

.tool-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
}

.tool-card input,
.tool-card select {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: white;
    font-size: 1rem;
}

.tool-card button {
    width: 100%;
    padding: 0.8rem;
    background: var(--gradient-red);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tool-card button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(255, 0, 0, 0.3);
}

.bmi-result,
.calorie-result,
.protein-result {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    text-align: center;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #0F0F0F;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.gym-tour-video {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.gym-tour-video iframe {
    width: 100%;
    height: 100%;
}

.virtual-tour-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-red);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.virtual-tour-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.3);
}

.facilities-showcase h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-red);
}

.facility-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.facility {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.facility:hover {
    background: rgba(255, 0, 0, 0.1);
    transform: translateY(-5px);
}

.facility i {
    font-size: 2rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    display: block;
}

.facility span {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-red);
    text-align: center;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    background: rgba(255, 255, 255, 0.15);
}

.submit-btn {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-red);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.4);
}

.contact-info {
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.08);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--text-white);
}

.info-item p {
    color: var(--text-gray);
    line-height: 1.6;
}

.map-container {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
}

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

/* Footer */
.footer {
    background: #000000;
    padding: 3rem 0 1rem;
    border-top: 3px solid var(--primary-red);
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-red);
}

.footer-section p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-red);
    transform: translateY(-5px);
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-red);
}

.newsletter-form {
    display: flex;
    margin-bottom: 1.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px 0 0 5px;
    color: white;
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    background: var(--gradient-red);
    color: white;
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #CC0000, #FF0000);
}

.app-downloads {
    display: flex;
    gap: 1rem;
}

.app-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.app-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

.footer-bottom a {
    color: var(--primary-red);
    text-decoration: none;
}

/* Floating Widgets */
.floating-widgets {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 100;
}

.widget {
    width: 60px;
    height: 60px;
    background: var(--gradient-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.widget:hover {
    transform: scale(1.1);
}

.widget i {
    font-size: 1.5rem;
    color: white;
}

.widget-text {
    position: absolute;
    right: 70px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.widget:hover .widget-text {
    opacity: 1;
}

.whatsapp-widget {
    background: #25D366;
}

.whatsapp-widget a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--gradient-red);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 99;
}

.scroll-to-top.visible {
    display: flex;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 0, 0, 0.4);
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: modalSlide 0.3s ease;
}

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

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-red);
}

.modal h2 {
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    text-align: center;
}

.modal-body input {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: white;
}

.modal-body button {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-red);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-body button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .transformation-slider {
        height: 400px;
    }

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

    .schedule-grid,
    .programs-grid,
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .floating-widgets {
        bottom: 70px;
    }

    .status-container {
        flex-direction: column;
        gap: 1rem;
    }

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

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

/* Additional Effects */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.tilt-card:hover {
    transform: rotateY(5deg) rotateX(5deg);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #CC0000;
}




/* Mobile First Approach - Base styles for mobile */

/* Extra Small Devices (phones, 480px and below) */
@media (max-width: 480px) {
    /* Typography adjustments */
    body {
        font-size: 14px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.2rem; }
    
    /* Navigation Mobile */
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .member-login-btn {
        display: none;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        height: calc(100vh - 60px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 0.5rem 0;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
        background: var(--primary-red);
        margin: 3px 0;
        transition: 0.3s;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Hero Section Mobile */
    .hero {
        padding-top: 80px;
        height: auto;
        min-height: 100vh;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .transformation-slider {
        height: 300px;
        order: 2;
    }
    
    .hero-content {
        order: 1;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-button {
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .transformation-counter {
        font-size: 1rem;
    }
    
    .counter {
        font-size: 2rem;
    }
    
    /* Live Status Bar Mobile */
    .status-container {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.5rem;
    }
    
    .status-item {
        font-size: 0.8rem;
    }
    
    /* Features Section Mobile */
    .section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .title-line {
        width: 50px;
        display: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    /* Programs Section Mobile */
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .program-image {
        height: 200px;
    }
    
    .program-content {
        padding: 1.5rem;
    }
    
    .program-stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .featured-badge {
        font-size: 0.7rem;
        padding: 0.4rem 2rem;
    }
    
    /* Trainers Section Mobile */
    .trainers-slider {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .trainer-image {
        height: 250px;
    }
    
    .trainer-stats {
        font-size: 0.9rem;
    }
    
    /* Schedule Section Mobile */
    .day-tabs {
        overflow-x: auto;
        white-space: nowrap;
        padding: 0 1rem;
        gap: 0.5rem;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
    }
    
    .day-tab {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
        flex-shrink: 0;
    }
    
    .filter-buttons {
        padding: 0 1rem;
    }
    
    .filter-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .schedule-item {
        padding: 1rem;
    }
    
    /* Membership Section Mobile */
    .special-offers-banner {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }
    
    .offer-item {
        font-size: 0.9rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .pricing-card {
        padding: 2rem 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    /* Success Stories Mobile */
    .filter-tabs {
        overflow-x: auto;
        white-space: nowrap;
        padding: 0 1rem;
        -webkit-overflow-scrolling: touch;
    }
    
    .story-filter {
        flex-shrink: 0;
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
    }
    
    .stories-carousel {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .before-after img {
        width: 120px;
        height: 120px;
    }
    
    /* Tools Section Mobile */
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .tool-card {
        padding: 1.5rem;
    }
    
    /* Contact Section Mobile */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gym-tour-video {
        height: 250px;
    }
    
    .facility-icons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .map-container {
        height: 250px;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .app-downloads {
        flex-direction: column;
        align-items: center;
    }
    
    .app-btn {
        width: 200px;
        justify-content: center;
    }
    
    /* Floating Widgets Mobile */
    .floating-widgets {
        bottom: 70px;
        right: 10px;
    }
    
    .widget {
        width: 50px;
        height: 50px;
    }
    
    .widget i {
        font-size: 1.2rem;
    }
    
    .widget-text {
        display: none;
    }
    
    /* Scroll to Top Mobile */
    .scroll-to-top {
        right: 10px;
        bottom: 120px;
        width: 40px;
        height: 40px;
    }
    
    /* Modal Mobile */
    .modal-content {
        width: 95%;
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    /* Container padding adjustment */
    .container {
        padding: 0 1rem;
    }
    
    /* Section padding adjustment */
    section {
        padding: 3rem 0;
    }
}

/* Small Devices (landscape phones, 481px to 767px) */
@media (min-width: 481px) and (max-width: 767px) {
    /* Hero adjustments */
    .hero-title {
        font-size: 3rem;
    }
    
    .transformation-slider {
        height: 400px;
    }
    
    /* Grid adjustments */
    .features-grid,
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .facility-icons {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* Status bar */
    .status-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .status-item {
        width: 45%;
    }
}

/* Medium Devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    /* Navigation */
    .nav-menu {
        position: static;
        flex-direction: row;
        background: transparent;
        width: auto;
        padding: 0;
    }
    
    .hamburger {
        display: none;
    }
    
    .member-login-btn {
        display: block;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Hero Section */
    .hero-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    /* Grid layouts */
    .programs-grid,
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .trainers-slider {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Contact grid */
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Large Devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .programs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .trainers-slider {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects on touch devices */
    .feature-card:hover,
    .program-card:hover,
    .trainer-card:hover,
    .pricing-card:hover {
        transform: none;
    }
    
    /* Larger touch targets */
    button, .cta-button, .nav-link {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Disable parallax effects */
    .floating-elements {
        display: none;
    }
}

/* Landscape orientation adjustments */
@media (max-width: 767px) and (orientation: landscape) {
    .hero {
        min-height: auto;
    }
    
    .hero-container {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .transformation-slider {
        height: 200px;
    }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2),
       (min-resolution: 192dpi) {
    /* Sharper borders and shadows */
    .feature-card,
    .program-card,
    .pricing-card {
        border-width: 0.5px;
    }
}

/* Print styles */
@media print {
    .navbar,
    .floating-widgets,
    .scroll-to-top,
    .virtual-tour-btn,
    .hero-buttons {
        display: none !important;
    }
    
    body {
        color: black;
        background: white;
    }
}