/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #9ACD32;
    --secondary-color: #6B8E23;
    --accent-color: #FFD700;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --white: #FFFFFF;
    --light-bg: #F8F9FA;
    --gradient: linear-gradient(135deg, #9ACD32 0%, #6B8E23 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --border-radius: 15px;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--gradient);
    transition: all 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
    left: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1002;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--gradient);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="0,20 50,0 100,20 150,5 200,25 250,10 300,30 350,15 400,35 450,20 500,40 550,25 600,45 650,30 700,50 750,35 800,55 850,40 900,60 950,45 1000,65 1000,100 0,100"/></svg>') repeat-x;
    animation: wave 20s ease-in-out infinite;
}

@keyframes wave {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-50px); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: bold;
    color: var(--white);
    margin-bottom: 1rem;
    animation: slideInLeft 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    opacity: 0.9;
    animation: slideInLeft 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 2rem;
    opacity: 0.8;
    animation: slideInLeft 1s ease-out 0.4s both;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    animation: slideInLeft 1s ease-out 0.6s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out 0.8s both;
}

.hero-logo img {
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes slideInLeft {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* MOBILE HERO FIXES - This overrides everything above on mobile */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding-top: 100px !important; /* Force space for navbar */
        padding-bottom: 2rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr !important; /* Force single column */
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
        max-width: 100%;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        min-height: calc(100vh - 100px);
    }
    
    .hero-content {
        order: 1;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2.5rem !important;
        line-height: 1.2;
        margin-bottom: 1rem;
        animation: none; /* Remove conflicting animations */
    }
    
    .hero-subtitle {
        font-size: 1.3rem !important;
        margin-bottom: 1rem;
        animation: none;
    }
    
    .hero-description {
        font-size: 1.1rem !important;
        margin-bottom: 2rem;
        padding: 0;
        animation: none;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 1rem 2rem;
        animation: none;
		display: inline-block;
        position: relative;
        z-index: 1;
    }
    
    .hero-image {
        order: 2;
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        animation: none;
        overflow: hidden;
    }
    
    .hero-logo {
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        overflow: hidden;
    }
    
    .hero-logo img {
        max-width: 280px !important;
        width: 70% !important;
        height: auto !important;
        max-height: 280px;
        object-fit: contain;
        animation: none; /* Stop floating animation on mobile */
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 120px !important;
    }
    
    .hero-content h1 {
        font-size: 2rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.2rem !important;
    }
    
    .hero-description {
        font-size: 1rem !important;
    }
    
    .hero-logo img {
        max-width: 220px !important;
        width: 65% !important;
    }
    
    .hero-container {
        padding: 0 0.5rem;
    }
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--white);
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    position: relative;
}

.about h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: var(--gradient);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.8;
}

.about-text strong {
    color: var(--text-dark);
}

/* Trainer Section */
.trainer {
    padding: 5rem 0;
    background: var(--light-bg);
}

.trainer h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    position: relative;
}

.trainer h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: var(--gradient);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.trainer-content {
    display: grid;
    gap: 4rem;
}

.trainer-info {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: center;
}

.trainer-photo {
    position: relative;
}

.trainer-photo img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.trainer-details h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.trainer-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 2rem;
}

.trainer-credentials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.credential {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.credential i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.gym-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.gym-photo img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.gym-photo img:hover {
    transform: scale(1.05);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--white);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    position: relative;
}

.services h2::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 4px;
    background: var(--gradient);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.service-card.premium {
    background: var(--gradient);
    color: var(--white);
}

.service-card.premium .service-icon i {
    color: var(--white);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-card.premium .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card.premium h3 {
    color: var(--white);
}

.service-duration {
    color: var(--primary-color);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.service-card.premium .service-duration {
    color: var(--white);
    opacity: 0.9;
}

.service-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.service-card.premium .service-price {
    color: var(--white);
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-light);
}

.service-card.premium ul li {
    color: rgba(255, 255, 255, 0.9);
}

.service-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-card.premium ul li::before {
    color: var(--white);
}

/* Booking Section - Modern Calendar Interface */
.booking {
    padding: 5rem 0;
    background: var(--light-bg);
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.booking-header {
    background: var(--gradient);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.booking-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.booking-header p {
    opacity: 0.9;
    font-size: 1.1rem;
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.calendar-section {
    padding: 2rem;
    border-right: 1px solid #eee;
}

.times-section {
    padding: 2rem;
    background: #fafbfc;
}

/* Service Selection */
.service-selector {
    margin-bottom: 2rem;
}

.service-selector label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--text-dark);
}

.service-selector select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e1e8ed;
    border-radius: 10px;
    font-size: 1rem;
    background: var(--white);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.service-selector select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(154, 205, 50, 0.1);
}

/* Calendar */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.calendar-nav {
    background: none;
    border: 2px solid var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.calendar-nav:hover {
    background: var(--primary-color);
    color: var(--white);
}

.calendar-month {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #e1e8ed;
    border-radius: 10px;
    overflow: hidden;
}

.calendar-day-header {
    background: var(--light-bg);
    padding: 1rem 0.5rem;
    text-align: center;
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--text-light);
}

.calendar-day {
    background: var(--white);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.calendar-day:hover {
    background: rgba(154, 205, 50, 0.1);
}

.calendar-day.other-month {
    color: #ccc;
    background: #f8f9fa;
}

.calendar-day.available {
    color: var(--text-dark);
}

.calendar-day.booked {
    background: #ffebee;
    color: #d32f2f;
    position: relative;
}

.calendar-day.booked::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #d32f2f;
    border-radius: 50%;
}

.calendar-day.selected {
    background: var(--primary-color);
    color: var(--white);
}

.calendar-day.past {
    opacity: 0.3;
    cursor: not-allowed;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.selected {
    background: var(--primary-color);
}

.legend-dot.booked {
    background: #d32f2f;
}

.legend-dot.available {
    border: 2px solid var(--text-light);
    background: var(--white);
}

/* Time Selection */
.times-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.times-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-dark);
}

.selected-date {
    font-size: 0.9rem;
    color: var(--text-light);
}

.time-period {
    margin-bottom: 2rem;
}

.time-period h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.times-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.time-slot {
    padding: 0.75rem 1rem;
    border: 2px solid #e1e8ed;
    border-radius: 25px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    background: var(--white);
    position: relative;
}

.time-slot.available:hover {
    border-color: var(--primary-color);
    background: rgba(154, 205, 50, 0.05);
}

.time-slot.selected {
    background: var(--primary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}

/* Unavailable slot states */
.time-slot.unavailable,
.time-slot:disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
    opacity: 0.6;
    border-color: #ddd;
}

.time-slot.booked {
    background: #ffebee;
    color: #d32f2f;
    cursor: not-allowed;
    border-color: #ffcdd2;
    position: relative;
}

.time-slot.booked::after {
    content: '✕';
    position: absolute;
    top: 2px;
    right: 4px;
    font-size: 0.7rem;
    color: #d32f2f;
    opacity: 0.7;
}

.time-slot.not-scheduled {
    background: #fafafa;
    color: #bbb;
    cursor: not-allowed;
    border-color: #e0e0e0;
    position: relative;
}

.time-slot.not-scheduled::after {
    content: '—';
    position: absolute;
    top: 2px;
    right: 6px;
    font-size: 0.8rem;
    color: #bbb;
    opacity: 0.7;
}

/* Hover effects only for available slots */
.time-slot.available {
    cursor: pointer;
}

.time-slot.available:hover {
    border-color: var(--primary-color);
    background: rgba(154, 205, 50, 0.05);
    transform: translateY(-1px);
}

/* Tooltip styles */
.time-slot[title] {
    position: relative;
}

/* Booking Summary */
.booking-summary {
    background: rgba(154, 205, 50, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.booking-summary h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.summary-details {
    display: grid;
    gap: 0.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-item.service {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 0.9rem;
}

.summary-item.price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary-color);
}

/* Client Info Form */
.client-form {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.client-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.client-form .form-group {
    display: flex;
    flex-direction: column;
}

.client-form .form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.client-form .form-group input {
    padding: 0.75rem;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.client-form .form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(154, 205, 50, 0.1);
}

.book-button {
    background: var(--gradient);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: var(--shadow);
}

.book-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(154, 205, 50, 0.3);
}

.book-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.no-times-message {
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
    font-style: italic;
}

/* Mobile Responsive for Booking */
@media (max-width: 768px) {
    .booking-content {
        grid-template-columns: 1fr;
    }

    .calendar-section {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .times-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .client-form .form-row {
        grid-template-columns: 1fr;
    }

    .booking-header h1 {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .calendar-legend {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
	.times-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Alert Messages */
.alert {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert i {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: var(--primary-color);
    font-weight: bold;
}

.footer-info h4 {
    margin-bottom: 0.5rem;
    color: var(--white);
}

.footer-info p {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-cta {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--gradient);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
}

.footer-socials h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(154, 205, 50, 0.3);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-links a {
        font-size: 1.2rem;
        margin: 1rem 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .navbar.scrolled {
        background: rgba(255, 255, 255, 0.98);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .trainer-info {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
	
	.social-links {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .gym-gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .booking-form {
        padding: 2rem 1.5rem;
    }
    
    .trainer-credentials {
        grid-template-columns: 1fr;
    }
}

/* Animation for elements coming into view */
.animate-in {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Lazy loading images */
img.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

img.lazy.loaded {
    opacity: 1;
}