/* ============================================ */
/* STYLE.CSS - Complete Stylesheet for FitPro */
/* ============================================ */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo i {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff6b35, #ff8555);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ff6b35;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8555 100%);
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(255, 133, 85, 0.9));
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    position: relative;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 2rem;
    z-index: 10;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 1s ease;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff, #ffe0d6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.95);
    color: #ff6b35;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #ffffff;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 10;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: white;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: -3px;
    width: 8px;
    height: 8px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Content */
.page-content {
    min-height: 100vh;
    padding-top: 80px;
}

/* Section Headers */
.section-header {
    text-align: center;
    padding: 6rem 0 2rem;
}

.section-header h1 {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: #f8f9fa;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

/* Intro Section */
.intro-section {
    padding: 5rem 0;
    background: #fff;
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #666;
}

/* Services Preview */
.services-preview {
    padding: 5rem 0;
    background: #f8f9fa;
}

/* Testimonials Preview & Section */
.testimonials-preview {
    padding: 5rem 0;
    background: #fff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: #ff6b35;
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}

.testimonial-content {
    position: relative;
}

.client-name {
    font-weight: bold;
    color: #1a1a1a;
    margin-top: 1rem;
}

.client-result {
    color: #ff6b35;
    font-style: italic;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ff6b35, #ff8555);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* About Page */
.about-section {
    padding: 2rem 0 5rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.about-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.trainer-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.cert-badge {
    display: inline-block;
    background: #ff6b35;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin: 0.5rem;
    font-size: 0.9rem;
}

/* Services Page */
.service-section {
    padding: 2rem 0 5rem;
}

.service-card {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: scale(1.02);
}

.service-card h3 {
    color: #ff6b35;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #1a1a1a;
    margin: 1rem 0;
}

/* Schedule Page */
.schedule-table {
    width: 100%;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-top: 3rem;
    overflow-x: auto;
}

.schedule-table table {
    width: 100%;
    border-collapse: collapse;
}

.schedule-table th {
    background: linear-gradient(135deg, #ff6b35, #ff8555);
    color: white;
    padding: 1.5rem 1rem;
    text-align: left;
    font-weight: 600;
}

.schedule-table td {
    padding: 1.5rem 1rem;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: top;
}

.schedule-table tr:hover {
    background: #f8f9fa;
}

.class-name {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
}

.class-trainer {
    font-size: 0.9rem;
    color: #666;
}

.class-duration {
    font-size: 0.85rem;
    color: #ff6b35;
    margin-top: 0.3rem;
}

.empty-slot {
    color: #999;
    font-style: italic;
}

.schedule-note {
    background: #fff3e0;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 4px solid #ff6b35;
}

/* Blog Page */
.blog-section {
    padding: 2rem 0 5rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    color: #ff6b35;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Gallery Page */
.gallery-section {
    padding: 2rem 0 5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 250px;
    cursor: pointer;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* FAQ Page */
.faq-container {
    max-width: 900px;
    margin: 3rem auto 0;
}

.faq-category {
    margin-top: 3rem;
}

.faq-category h2 {
    color: #ff6b35;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.faq-item {
    background: #fff;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    margin: 0;
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-icon {
    color: #ff6b35;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #f8f9fa;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
}

.faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.8;
}

/* Contact Page */
.contact-section {
    padding: 2rem 0 5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #ff6b35;
}

.contact-info {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 2rem;
    color: #ff6b35;
    margin-right: 1rem;
}

.map-container {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section {
    text-align: left;
}

.footer-section .logo {
    color: #ff6b35;
    margin-bottom: 1rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #ff6b35;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #ff6b35, #ff8555);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(20px);
        padding: 2rem 0;
        gap: 1rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    /* Hero Section Mobile */
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 6rem 1rem 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* Section Headers Mobile */
    .section-header {
        padding: 5rem 1rem 2rem;
    }

    .section-header h1 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* Grid Layouts Mobile */
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-grid,
    .blog-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Container Mobile */
    .container {
        padding: 0 1rem;
    }

    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-section ul {
        padding-left: 0;
    }

    /* Schedule Table Mobile */
    .schedule-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .schedule-table table {
        min-width: 800px;
    }

    .schedule-table th,
    .schedule-table td {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }

    /* Service Cards Mobile */
    .service-card {
        padding: 2rem 1.5rem;
        margin: 1.5rem 0;
    }

    .service-card h3 {
        font-size: 1.5rem;
    }

    .price {
        font-size: 1.8rem;
    }

    /* Trainer Cards Mobile */
    .trainer-card {
        padding: 1.5rem;
    }

    .trainer-card > div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .trainer-card > div[style*="display: grid"] > div:first-child {
        margin: 0 auto 1.5rem;
    }

    /* Testimonial Cards Mobile */
    .testimonial-card {
        padding: 2rem 1.5rem;
        margin: 1.5rem 0;
    }

    .testimonial-content {
        margin-left: 0;
    }

    .quote-icon {
        position: static;
        margin-bottom: 1rem;
    }

    /* Gallery Mobile */
    .gallery-item {
        height: 200px;
    }

    /* Contact Form Mobile */
    .contact-form {
        padding: 2rem 1.5rem;
    }

    .contact-info {
        padding: 2rem 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .contact-icon {
        margin-bottom: 0.5rem;
    }

    /* Blog Cards Mobile */
    .blog-card {
        margin-bottom: 1.5rem;
    }

    .blog-img {
        height: 180px;
    }

    /* FAQ Mobile */
    .faq-container {
        padding: 0 1rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer {
        font-size: 0.95rem;
    }

    /* CTA Sections Mobile */
    .cta-section {
        padding: 3rem 1rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Intro Section Mobile */
    .intro-section {
        padding: 3rem 0;
    }

    .intro-content h2 {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    /* Services Preview Mobile */
    .services-preview {
        padding: 3rem 0;
    }

    /* Testimonials Preview Mobile */
    .testimonials-preview {
        padding: 3rem 0;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    /* About Section Mobile */
    .about-section {
        padding: 1rem 0 3rem;
    }

    /* Additional Mobile Optimizations */
    .cert-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin: 0.3rem;
        display: inline-block;
    }

    .map-container {
        height: 250px;
    }

    /* Smooth scroll for mobile */
    html {
        scroll-behavior: smooth;
    }

    /* Touch-friendly spacing */
    a, button {
        min-height: 44px;
        min-width: 44px;
    }

    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }

    /* Membership Plans Mobile */
    div[style*="grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))"] {
        grid-template-columns: 1fr !important;
    }

    /* Special adjustments for service page grids */
    .service-card div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
        height: 70px;
    }

    .logo {
        font-size: 1.3rem;
    }

    .logo i {
        font-size: 1.5rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .section-header {
        padding: 4rem 1rem 1.5rem;
    }

    .section-header h1 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    .feature-card,
    .service-card,
    .blog-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .feature-card h3,
    .blog-card h3 {
        font-size: 1.1rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    .price {
        font-size: 1.6rem;
    }

    .schedule-table th,
    .schedule-table td {
        padding: 0.8rem 0.4rem;
        font-size: 0.85rem;
    }

    .class-name {
        font-size: 0.9rem;
    }

    .class-trainer,
    .class-duration {
        font-size: 0.8rem;
    }

    .schedule-note {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }

    .faq-icon {
        font-size: 1.3rem;
    }

    .faq-answer {
        font-size: 0.9rem;
        padding: 1rem;
    }

    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.7rem;
        font-size: 0.95rem;
    }

    .contact-icon {
        font-size: 1.5rem;
    }

    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-section {
        margin-bottom: 2rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-section p {
        font-size: 0.9rem;
    }

    .social-link {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .footer-bottom {
        font-size: 0.85rem;
    }

    /* Gallery Mobile Small */
    .gallery-item {
        height: 180px;
    }

    .gallery-overlay h4 {
        font-size: 0.95rem;
    }

    .gallery-overlay p {
        font-size: 0.85rem;
    }

    /* Blog Mobile Small */
    .blog-img {
        height: 160px;
    }

    .blog-content {
        padding: 1.2rem;
    }

    .blog-date {
        font-size: 0.85rem;
    }

    /* Testimonial Mobile Small */
    .testimonial-card p {
        font-size: 1rem;
    }

    .client-name,
    .client-result {
        font-size: 0.9rem;
    }

    /* Trainer Card Mobile Small */
    .trainer-card h2 {
        font-size: 1.3rem;
    }

    .trainer-card p {
        font-size: 0.95rem;
    }

    /* CTA Mobile Small */
    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    /* About Content Mobile Small */
    .about-content h2,
    .intro-content h2 {
        font-size: 1.6rem;
    }

    .about-content p,
    .intro-text {
        font-size: 0.95rem;
    }

    /* Hide scroll indicator on small screens */
    .scroll-indicator {
        display: none;
    }

    /* Adjust floating shapes for mobile */
    .shape {
        opacity: 0.5;
    }

    .shape-1 {
        width: 100px;
        height: 100px;
    }

    .shape-2 {
        width: 80px;
        height: 80px;
    }

    .shape-3 {
        width: 60px;
        height: 60px;
    }
}

/* Tablet Specific (iPad, etc) */
@media (min-width: 481px) and (max-width: 768px) {
    .feature-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-description {
        font-size: 1.2rem;
    }

    .section-header h1 {
        font-size: 2.5rem;
    }
}

/* Large Mobile / Small Tablet (Landscape) */
@media (min-width: 576px) and (max-width: 767px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .schedule-table table {
        min-width: 100%;
    }
}

/* Very Small Devices */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .section-header h1 {
        font-size: 1.5rem;
    }

    .feature-card,
    .service-card {
        padding: 1.2rem;
    }

    .nav-container {
        height: 65px;
    }

    .logo {
        font-size: 1.2rem;
    }
}

/* Landscape Mode Adjustments */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 8rem 1rem 3rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .scroll-indicator {
        display: none;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .hamburger,
    .hero-buttons,
    .btn,
    .social-links,
    .floating-shapes {
        display: none !important;
    }

    .hero {
        height: auto;
        page-break-after: always;
    }

    .page-content {
        padding-top: 0;
    }
}
   