* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #545454;
    --secondary-color: #ffffff;
    --dark-color: #161616;
    --text-light: #ffffff;
    --text-dark: #161616;
    --text-gray: #545454;
    --whatsapp-color: #25D366;
    --shadow: 0 10px 30px rgba(22, 22, 22, 0.1);
    --transition: all 0.6s ease;
    --border-radius: 12px;
    --vh: 1vh;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--secondary-color);
    transition: var(--transition);
    overflow-x: hidden;
    width: 100%;
}

.hperlink-style {
    display: flex;
    align-items: center;
}

/* RTL Support */
body.rtl {
    direction: rtl;
    font-family: 'Cairo', sans-serif;
}

/* RTL Desktop Navigation */
@media (min-width: 768px) {
    body.rtl .nav-menu {
        flex-direction: row-reverse;
        direction: ltr; /* Keep text direction normal, just reverse order */
    }
    
    body.rtl .nav-menu .nav-item {
        order: initial; /* Reset any order properties */
    }
}

/* RTL Desktop Styles */
body.rtl .hero-content {
    text-align: right;
}

body.rtl .about-content {
    grid-template-columns: 1fr 1fr;
}

body.rtl .about-text {
    text-align: right;
}

/* RTL: Keep paragraphs justified */
body.rtl .about-text p,
body.rtl .service-description p,
body.rtl .service-card p,
body.rtl .trainer-bio {
    text-align: justify;
    text-justify: inter-word;
}

body.rtl .feature {
    flex-direction: row;
    text-align: left;
    justify-content: flex-end;
}

/* RTL Feature improvements */
body.rtl .feature {
    text-align: left;
    direction: ltr;
}

body.rtl .feature i {
    margin-left: 0.5rem;
    margin-right: 0;
    order: 2;
}

body.rtl .feature div {
    order: 1;
    text-align: left;
}

body.rtl .feature h4 {
    text-align: right;
    font-family: 'Cairo', sans-serif;
}

body.rtl .feature p {
    text-align: right;
    font-family: 'Cairo', sans-serif;
}

body.rtl .contact-item {
    flex-direction: row;
    text-align: left;
    justify-content: flex-end;
}

body.rtl .contact-item-link {
    flex-direction: row;
    text-align: left;
    justify-content: flex-end;
}

/* Enhanced RTL contact card styling */
body.rtl .contact-item:hover {
    transform: translateX(-10px);
}

body.rtl .contact-item-link:hover {
    transform: translateX(-10px);
}

/* RTL Contact card improvements */
body.rtl .contact-item,
body.rtl .contact-item-link {
    text-align: left;
    direction: ltr;
}

body.rtl .contact-item i,
body.rtl .contact-item-link i {
    margin-left: 0.5rem;
    margin-right: 0;
    order: 2;
}

body.rtl .contact-item div,
body.rtl .contact-item-link div {
    order: 1;
    text-align: left;
}

body.rtl .contact-item h4,
body.rtl .contact-item-link h4 {
    text-align: right;
    font-family: 'Cairo', sans-serif;
}

body.rtl .contact-item p,
body.rtl .contact-item-link p {
    text-align: left;
    font-family: 'Cairo', sans-serif;
}

/* Better spacing for RTL contact cards */
body.rtl .contact-info {
    gap: 1.5rem;
}

body.rtl .contact-item,
body.rtl .contact-item-link {
    padding: 1.25rem;
    gap: 0.75rem;
}

body.rtl .benefit {
    flex-direction: row-reverse;
    text-align: right;
}

body.rtl .whatsapp-content {
    text-align: right;
}

/* RTL Footer Layout - Desktop and Tablet */
@media (min-width: 768px) {
    body.rtl .footer-content {
        text-align: right;
        flex-direction: row;
    }
    
    body.rtl .footer-left {
        flex-direction: row;
        order: 1;
    }
    
    body.rtl .footer-right {
        order: 2;
    }
    
    body.rtl .footer-section {
        text-align: right;
    }
    
    body.rtl .footer-section h3,
    body.rtl .footer-section h4 {
        text-align: right;
    }
    
    body.rtl .footer-section p {
        text-align: right;
    }
    
    body.rtl .footer-section ul {
        text-align: right;
    }
}

/* Touch Device Optimizations */
.touch-device * {
    -webkit-tap-highlight-color: transparent;
}

.touch-device .btn,
.touch-device .nav-link,
.touch-device .pricing-card,
.touch-device .contact-item,
.touch-device .contact-item-link {
    min-height: 44px;
    min-width: 44px;
    touch-action: manipulation;
}

.touch-device .nav-toggle {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Viewport Height Fix */
.hero {
    min-height: calc(var(--vh, 1vh) * 100);
}

/* Smooth scrolling optimization for mobile */
@media (max-width: 767px) {
    html {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Prevent zoom on input focus */
    input, textarea, select {
        font-size: 16px;
    }
    
    /* Improve button touch targets */
    .btn {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        touch-action: manipulation;
    }
    
    /* Optimize images for mobile */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    /* Improve text readability on mobile */
    body {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
    
    /* Better focus indicators for mobile */
    .btn:focus,
    .nav-link:focus,
    .lang-btn:focus {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }
    
    /* Optimize animations for mobile */
    .animate-fade-up,
    .animate-slide-left,
    .animate-slide-right {
        transition: opacity 0.6s ease;
        transform: none;
    }
    
    .animate-fade-up.visible,
    .animate-slide-left.visible,
    .animate-slide-right.visible {
        opacity: 1;
        transform: none;
    }
}

body.rtl .social-links {
    justify-content: flex-end;
    margin: 1rem 0 0;
    width: fit-content;
}

/* Language Toggle */
.language-toggle {
    position: static;
    top: auto;
    right: auto;
    z-index: auto;
}

.lang-btn {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 0.5rem 0.8rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: var(--shadow);
    font-size: 0.9rem;
}

.lang-btn:hover {
    background: var(--dark-color);
    transform: translateY(-2px);
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--secondary-color);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.navbar.scrolled {
    background: var(--secondary-color);
    backdrop-filter: blur(10px);
}

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

.nav-logo h2 {
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo h2 i {
    color: var(--primary-color);
    font-size: 1.6rem;
}

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

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

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

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

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

/* Hero background images */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.1;
}

/* Desktop hero background - show by default */
.hero-bg-desktop {
    display: block;
}

/* Mobile hero background - hide by default */
.hero-bg-mobile {
    display: none;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-top: 2rem;
}

.hero-text {
    flex: 2;
    min-width: 300px;
    color: var(--text-light);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

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

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 500px;
    text-align: justify;
    text-justify: inter-word;
    hyphens: none;
    word-spacing: 0.05em;
}

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

.btn {
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Section Styling */
section {
    padding: 5rem 0;
}

/* Offers Section */
.offers-section {
    padding: 0;
    background: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.offer-carousel {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.offer-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    width: 100%;
    padding: 0;
}

.offer-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.offer-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.offer-slide.prev {
    transform: translateX(-100%);
}

/* RTL Support - keep same sliding direction as English */
body.rtl .offer-slide {
    transform: translateX(100%);
}

body.rtl .offer-slide.active {
    transform: translateX(0);
}

body.rtl .offer-slide.prev {
    transform: translateX(-100%);
}

.offer-image {
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* Language-specific image visibility */
.offer-image-en {
    display: block;
}

.offer-image-ar {
    display: none;
}

/* RTL Language Support */
body.rtl .offer-image-en {
    display: none;
}

body.rtl .offer-image-ar {
    display: block;
}

/* Desktop image - larger resolution */
.offer-image-desktop.offer-image-en {
    display: block;
}

.offer-image-desktop.offer-image-ar {
    display: none;
}

.offer-image-mobile.offer-image-en {
    display: none;
}

.offer-image-mobile.offer-image-ar {
    display: none;
}

/* RTL Desktop images */
body.rtl .offer-image-desktop.offer-image-en {
    display: none;
}

body.rtl .offer-image-desktop.offer-image-ar {
    display: block;
}

body.rtl .offer-image-mobile.offer-image-en {
    display: none;
}

body.rtl .offer-image-mobile.offer-image-ar {
    display: none;
}

.offer-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: var(--dark-color);
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.offer-arrow:hover {
    background: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.offer-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.offer-arrow:disabled:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-50%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.offer-arrow-left {
    left: 20px;
}

.offer-arrow-right {
    right: 20px;
}

.offer-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

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

.offer-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.offer-indicator.active {
    background: var(--secondary-color);
    border-color: var(--primary-color);
    transform: scale(1.3);
}

.offer-indicator:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* RTL Support for Offers Section */
body.rtl .offer-arrow-left {
    left: auto;
    right: 20px;
}

body.rtl .offer-arrow-left i::before {
    content: "\f054"; /* fa-chevron-right */
}

body.rtl .offer-arrow-right {
    right: auto;
    left: 20px;
}

body.rtl .offer-arrow-right i::before {
    content: "\f053"; /* fa-chevron-left */
}

body.rtl .offer-indicators {
    direction: ltr;
    justify-content: center;
}

/* Mobile Responsive for Offers */
@media (max-width: 767px) {
    .offers-section {
        background: transparent;
    }
    
    .offer-carousel {
        background: transparent;
    }
    
    .offer-container {
        min-height: 0;
        height: auto;
        max-height: none;
        padding: 0;
        position: relative;
        display: block;
    }
    
    .offer-slide {
        height: auto;
        min-height: 0;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }
    
    .offer-slide.active {
        position: relative;
        height: auto;
        min-height: 0;
        opacity: 1;
        transform: none;
    }
    
    .offer-slide:not(.active) {
        opacity: 0;
        pointer-events: none;
    }
    
    .offer-image {
        height: auto;
        width: 100%;
        max-height: none;
        min-height: 0;
        object-fit: contain;
        display: block;
        margin: 0;
    }
    
    /* Mobile image - smaller resolution for faster loading */
    .offer-image-desktop.offer-image-en {
        display: none;
    }
    
    .offer-image-desktop.offer-image-ar {
        display: none;
    }
    
    .offer-image-mobile.offer-image-en {
        display: block;
    }
    
    .offer-image-mobile.offer-image-ar {
        display: none;
    }
    
    /* RTL Mobile images */
    body.rtl .offer-image-desktop.offer-image-en {
        display: none;
    }
    
    body.rtl .offer-image-desktop.offer-image-ar {
        display: none;
    }
    
    body.rtl .offer-image-mobile.offer-image-en {
        display: none;
    }
    
    body.rtl .offer-image-mobile.offer-image-ar {
        display: block;
    }
    
    .offer-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .offer-arrow-left {
        left: 10px;
    }
    
    .offer-arrow-right {
        right: 10px;
    }
    
    .offer-indicators {
        bottom: 15px;
        gap: 8px;
    }
    
    .offer-indicator {
        width: 10px;
        height: 10px;
    }
    
    /* RTL Mobile adjustments */
    body.rtl .offer-arrow-left {
        left: auto;
        right: 10px;
    }
    
    body.rtl .offer-arrow-right {
        right: auto;
        left: 10px;
    }
}


.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--primary-color);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--secondary-color);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
    text-align: justify;
    text-justify: inter-word;
    hyphens: none;
    word-spacing: 0.05em;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.feature h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.feature p {
    color: var(--text-gray);
    margin: 0;
}

.about-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    width: 100%;
    overflow-x: hidden;
}

.services-grid {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.services-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

.join-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    min-width: 280px;
    max-width: 400px;
    width: auto;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(84, 84, 84, 0.2);
    text-align: center;
}

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

.join-btn i {
    font-size: 1.2rem;
}

.service-card {
    flex: 0 0 280px;
    max-width: 300px;
    background: var(--secondary-color);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: 0.6s;
    position: relative;
    overflow: visible;
    width: 100%;
    min-width: 0;
}

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

.service-icon {
    width: 80px;
    height: 80px;    
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    text-align: justify;
    text-justify: inter-word;
    hyphens: none;
    word-spacing: 0.05em;
}

.service-features {
    list-style: none;
    /*text-align: left;*/
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    border-bottom: 1px solid #eee;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    display: block;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.learn-more-btn i {
    transition: transform 0.3s ease;
}

.service-card-link:hover .learn-more-btn i {
    transform: translateX(5px);
}

body.rtl .service-card-link:hover .learn-more-btn i {
    transform: translateX(-5px);
}

/* Service Detail Sections */
.service-detail-section {
    background: var(--secondary-color);
    padding: 5rem 0;
}

.boxing-detail {
    background: var(--secondary-color);
}

#ring-service {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.service-detail-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}

.service-video {
    flex: 1;
    min-width: 300px;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.video-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.service-description {
    flex: 1;
    min-width: 300px;
}

.service-description h3 {
    font-size: 2rem;
    text-align: center;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.service-description p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
    text-justify: inter-word;
    hyphens: none;
    word-spacing: 0.05em;
}

.service-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-benefits li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.service-benefits i {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.service-gallery {
    margin-top: 3rem;
}

.gallery-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 3rem;
}

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

.gallery-item-service {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.4s ease;
    cursor: pointer;
}

.gallery-item-service:hover {
    transform: translateY(-10px);
}

.gallery-item-service img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item-service:hover img {
    transform: scale(1.1);
}

.gallery-overlay-service {
    display: none;
}

/* Trainers Section */
.trainers {
    background: var(--secondary-color);
}

.trainers-grid {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trainer-card {
    flex: 0 0 480px;
    max-width: 300px;
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

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

.trainer-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

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

.trainer-social {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
    opacity: 0;
    transition: var(--transition);
}

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

.trainer-social a {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

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

.trainer-info {
    padding: 1.5rem;
}

.trainer-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    text-align: center;
}

.trainer-specialty {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.trainer-bio {
    color: var(--text-gray);
    line-height: 1.6;
    text-align: justify;
    text-justify: inter-word;
    hyphens: none;
    word-spacing: 0.05em;
}

/* Gallery Section */
.gallery {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gallery-grid {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    flex: 0 0 auto;
    max-width: 300px;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(22, 22, 22, 0.8));
    color: var(--text-light);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Pricing Section */
.pricing {
    background: var(--secondary-color);
    height: auto;
}

.pricing-grid {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    flex: 0 0 auto;
    max-width: 300px;
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: pointer;
}

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

.pricing-card.featured {
    background: var(--secondary-color);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.selected {
    border-color: var(--whatsapp-color);
    background: rgba(37, 211, 102, 0.05);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.2);
}

.pricing-card.selected .pricing-header h3 {
    color: var(--whatsapp-color);
}

.pricing-card.selected .btn-primary {
    background: var(--whatsapp-color);
    color: var(--secondary-color);
}

.pricing-card.selected .btn-outline {
    border-color: var(--whatsapp-color);
    color: var(--whatsapp-color);
}

.pricing-card.selected .btn-outline:hover {
    background: var(--whatsapp-color);
    color: var(--secondary-color);
}

.pricing-card:last-child {
    margin-bottom: 1rem;
}



.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
}

.currency {
    font-size: 1.2rem;
    color: var(--primary-color);
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.period {
    color: var(--text-gray);
}

.currency-icon {
    height: 2rem;
    width: auto;
    vertical-align: middle;
    margin-left: 0.25rem;
}

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

.pricing-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid #f0f0f0;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    width: 20px;
    text-align: center;
}

.whatsapp-benefits {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.whatsapp-benefits li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.whatsapp-benefits li:last-child {
    border-bottom: none;
}

.whatsapp-benefits i {
    width: 20px;
    text-align: center;
}

.fa-check {
    color: var(--whatsapp-color);
}

.fa-times {
    color: #dc3545;
}

/* Join Now Section */
.join-now-section {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
}

.join-now-overlay {
    display: none;
}

.join-now-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.join-now-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: pulse-icon 2s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

@keyframes pulse-icon {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

.join-now-icon i {
    font-size: 3.5rem;
    color: var(--secondary-color);
    animation: rotate-dumbbell 3s ease-in-out infinite;
}

@keyframes rotate-dumbbell {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-15deg);
    }
    75% {
        transform: rotate(15deg);
    }
}

.join-now-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: slide-down 0.6s ease-out;
}

@keyframes slide-down {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.join-now-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    text-align: justify;
    text-justify: inter-word;
    hyphens: none;
    opacity: 0.9;
    line-height: 1.7;
    animation: fade-in 0.8s ease-out 0.2s both;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0.9;
    }
}

.btn-join-now {
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    animation: bounce-in 0.8s ease-out 0.4s both;
}

@keyframes bounce-in {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.btn-join-now:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.btn-join-now i {
    transition: transform 0.4s ease;
}

.btn-join-now:hover i {
    transform: translateX(5px);
}

body.rtl .btn-join-now:hover i {
    transform: translateX(-5px);
}

.join-now-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fade-up 1s ease-out 0.6s both;
}

@keyframes fade-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.join-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

.join-feature i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    animation: check-pop 0.6s ease-out;
}

@keyframes check-pop {
    0% {
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.join-feature:nth-child(1) i {
    animation-delay: 0.8s;
}

.join-feature:nth-child(2) i {
    animation-delay: 1s;
}

.join-feature:nth-child(3) i {
    animation-delay: 1.2s;
}

/* Contact Section */
.contact {
    background: var(--secondary-color);
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content:center;
}

.contact-map {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid #f0f0f0;
    min-height: 80px;
}

.contact-item:hover {
    transform: translateX(10px);
    background: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 15px 35px rgba(84, 84, 84, 0.2);
    border-color: var(--primary-color);
}

.contact-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}

.contact-item:hover i {
    color: var(--secondary-color);
}

.contact-item h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-item:hover h4 {
    color: var(--secondary-color);
}

.contact-item p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

.contact-item p a {
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item p a:hover {
    color: var(--primary-color);
}

.contact-item:hover p {
    color: var(--secondary-color);
}

.contact-item:hover p a {
    color: var(--secondary-color);
}

.contact-item-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid #f0f0f0;
    min-height: 80px;
}

.contact-item-link:hover {
    transform: translateX(10px);
    background: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    box-shadow: 0 15px 35px rgba(84, 84, 84, 0.2);
    border-color: var(--primary-color);
}

.contact-item-link i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}

.contact-item-link:hover i {
    color: var(--secondary-color);
}

.contact-item-link h4 {
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-item-link:hover h4 {
    color: var(--secondary-color);
}

.contact-item-link p {
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

.contact-item-link:hover p {
    color: var(--secondary-color);
}

/* .contact-map styles are already defined above with flex properties */

.map-container {
    width: 100%;
    height: 500px;
    background: #f8f9fa;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

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

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--text-light);
    padding: 3rem 0 1rem;
    width: 100%;
    overflow-x: hidden;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-left {
    display: flex;
    gap: 2rem;
    flex: 1;
}

.footer-right {
    display: flex;
    flex: 0 0 auto;
}

.footer-section {
    flex: 1;
}

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

.footer-section p {
    text-align: justify;
    text-justify: inter-word;
    hyphens: none;
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    opacity: 1;
}

.footer-section ul li a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
    opacity: 1;
}

.footer-section ul li i {
    width: 20px;
    margin-right: 0.5rem;
    color: var(--primary-color);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--primary-color);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.8;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: var(--whatsapp-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    text-decoration: none;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn i {
    font-size: 1.8rem;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s ease;
}

.animate-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.animate-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ========================================
   MOBILE-FIRST RESPONSIVE DESIGN
   ======================================== */

/* Base Mobile Styles (320px and up) */
@media (max-width: 767px) {
    /* Global Mobile Reset */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
        font-size: 16px;
        line-height: 1.5;
    }
    
    .container {
        max-width: 100%;
        padding: 0 16px;
        margin: 0 auto;
    }
    
    section {
        padding: 2rem 0;
        overflow-x: hidden;
    }
    
    /* Mobile Navigation */
    .navbar {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-container {
        padding: 1rem 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-logo h2 {
        font-size: 1.3rem;
        font-weight: 700;
    }
    
    .nav-logo .logo-image {
        height: 35px !important;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--secondary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: left 0.6s ease;
        z-index: 999;
        gap: 2rem;
    }
    
    /* Ensure RTL mobile menu is also vertical */
    body.rtl .nav-menu {
        flex-direction: column;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        font-weight: 500;
        padding: 1rem 2rem;
        display: block;
        text-align: center;
        border-radius: 8px;
        transition: all 0.6s ease;
    }
    
    .nav-link:hover {
        background: var(--primary-color);
        color: var(--secondary-color);
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        z-index: 1001;
    }
    
    .bar {
        width: 25px;
        height: 3px;
        background: var(--primary-color);
        margin: 3px 0;
        transition: 0.6s;
        border-radius: 2px;
    }
    
    .nav-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-6px, 6px);
    }
    
    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-6px, -6px);
    }
    
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    
    .language-toggle {
        order: 1;
    }
    
    .nav-toggle {
        order: 2;
    }
    
    .lang-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.85rem;
    }
    
    /* Mobile Hero Section */
    .hero {
        min-height: 100vh;
        padding-top: 80px;
        display: flex;
        align-items: center;
        text-align: center;
        background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    }
    
    /* Mobile hero background images */
    .hero-bg-desktop {
        display: none;
    }
    
    .hero-bg-mobile {
        display: block;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        padding: 2rem 0;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-title {
        font-size: 2.2rem;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        text-align: justify;
        text-justify: inter-word;
        hyphens: none;
        opacity: 0.9;
        max-width: 100%;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        margin-bottom: 2rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        text-align: center;
        justify-content: center;
    }
    
    /* Mobile About Section */
    .about-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-text {
        order: 2;
        text-align: center;
    }
    
    .about-image {
        order: 1;
        text-align: center;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        text-align: justify;
        text-justify: inter-word;
        hyphens: none;
        word-spacing: 0.05em;
    }
    
    .about-features {
        gap: 1.5rem;
    }
    
    .feature {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .feature i {
        font-size: 1.5rem;
        margin-top: 0.2rem;
        flex-shrink: 0;
    }
    
    .feature h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .feature p {
        font-size: 0.95rem;
    }
    
    .about-image img {
        width: 100%;
        max-width: 400px;
        height: auto;
        border-radius: 12px;
    }
    
    
    /* Mobile Services Section */
    .services-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 0;
    }
    
    .service-card {
        width: 100%;
        padding: 1.5rem;
        margin: 0;
        text-align: center;
    }
    
    .services-cta {
        margin-top: 2rem;
        padding: 1rem 0;
    }
    
    .join-btn {
        min-width: 250px;
        max-width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 1rem;
        display: inline-block;;
    }
    
    .service-icon i {
        font-size: 1.8rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        text-align: justify;
        text-justify: inter-word;
        hyphens: none;
        word-spacing: 0.05em;
    }
    
    .service-features {
        padding: 0 1rem;
    }
    
    .service-features li {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }

    /* Mobile Service Detail Sections */
    .service-detail-section {
        padding: 3rem 0;
    }

    .service-detail-content {
        flex-direction: column;
        gap: 2rem;
    }

    .service-video {
        width: 100%;
        margin-bottom: 1rem;
    }

    .video-container {
        padding-bottom: 75%; /* Larger aspect ratio for mobile (taller) */
        width: 100%;
        max-width: 100%;
    }

    .service-description h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .service-description p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        text-align: justify;
        text-justify: inter-word;
        hyphens: none;
        word-spacing: 0.05em;
    }

    .service-benefits li {
        font-size: 0.95rem;
    }

    .gallery-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .gallery-grid-service {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-item-service img {
        height: 250px;
    }

    /* Mobile Trainers Section */
    .trainers-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .trainer-card {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    .trainer-info {
        padding: 1.5rem;
        text-align: center;
    }
    
    .trainer-info h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    
    .trainer-specialty {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .trainer-bio {
        font-size: 0.95rem;
        line-height: 1.5;
        text-align: justify;
        text-justify: inter-word;
        hyphens: none;
        word-spacing: 0.05em;
    }
    
    /* Mobile Gallery Section */
    .gallery-grid {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .gallery-item {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    
    .gallery-item:last-child {
        margin-bottom: 1rem;
    }
    
    .gallery-item img {
        width: 100%;
        height: 250px;
    }
    
    .gallery-overlay {
        padding: 1.5rem;
    }
    
    .gallery-overlay h3 {
        font-size: 1.1rem;
    }
    
    /* Mobile Pricing Section */
    .pricing-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pricing-card {
        width: 100%;
        padding: 2rem 1.5rem;
        margin: 0;
    }
    
    .pricing-card.featured {
        transform: none;
        margin: 1rem 0;
    }
    
    .pricing-header h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .pricing-features {
        margin-bottom: 1.5rem;
    }
    
    .pricing-features li {
        padding: 0.6rem 0;
        font-size: 0.9rem;
    }
    
    .price {
        margin: 1.5rem 0;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .currency-icon {
        height: 1.8rem;
    }
    
    .pricing-card .btn {
        width: 100%;
        max-width: none;
        padding: 1rem;
        font-size: 1rem;
    }
    
    /* Mobile Join Now Section */
    .join-now-section {
        padding: 3rem 0;
    }

    .join-now-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .join-now-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
        text-align: justify;
        text-justify: inter-word;
        hyphens: none;
        padding: 0 1rem;
    }

    .join-now-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 1.5rem;
    }

    .join-now-icon i {
        font-size: 2.5rem;
    }

    .btn-join-now {
        width: 100%;
        max-width: 280px;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }

    .join-now-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .join-feature {
        font-size: 0.95rem;
    }
    
    /* Mobile Contact Section */
    .contact-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-info {
        order: 2;
        gap: 1.5rem;
    }
    
    .contact-map {
        order: 1;
    }
    
    .contact-item,
    .contact-item-link {
        padding: 1.25rem;
        gap: 1rem;
        min-height: 70px;
        text-align: left;
    }
    
    .contact-item i,
    .contact-item-link i {
        font-size: 1.5rem;
        width: 25px;
        flex-shrink: 0;
    }
    
    .contact-item h4,
    .contact-item-link h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .contact-item p,
    .contact-item-link p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .map-container {
        width: 100%;
        height: 250px;
        border-radius: 12px;
    }
    
    /* Mobile Footer */
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-left,
    .footer-right {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        justify-content: center;
        align-items: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p {
        text-align: justify;
        text-justify: inter-word;
        hyphens: none;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .footer-section ul li {
        margin-bottom: 0.5rem;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
    }
    
    /* Quick Links - Column layout on mobile */
    .hperlink-style {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .hperlink-style li {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .hperlink-style li a {
        display: block;
        width: 100%;
    }
    
    .social-links {
        justify-content: center;
        margin: 1rem auto 0;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Mobile WhatsApp Float Button */
    .whatsapp-float {
        bottom: 1rem;
        right: 1rem;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        border-radius: 50%;
    }
    
    .whatsapp-btn i {
        font-size: 1.6rem;
    }
    
    /* Mobile Section Headers */
    .section-header {
        margin-bottom: 2.5rem;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    /* Mobile RTL Adjustments */
    body.rtl .hero-content {
        text-align: center;
    }
    
    body.rtl .hero-title {
        text-align: center;
    }
    
    body.rtl .hero-description {
        text-align: center;
    }
    
    body.rtl .about-text {
        text-align: center;
    }
    
    /* RTL Mobile: Keep paragraphs justified */
    body.rtl .about-text p,
    body.rtl .service-description p,
    body.rtl .service-card p,
    body.rtl .trainer-bio {
        text-align: justify;
        text-justify: inter-word;
    }
    
    body.rtl .feature {
        text-align: right;
        gap: 1rem;
        align-items: flex-start;
    }
    
    body.rtl .feature i {
        font-size: 1.5rem;
        margin-top: 0.2rem;
        flex-shrink: 0;
        order: 2;
    }
    
    body.rtl .feature div {
        order: 1;
        text-align: right;
    }
    
    body.rtl .contact-item,
    body.rtl .contact-item-link {
        text-align: left;
        direction: ltr;
    }
    
    body.rtl .contact-item i,
    body.rtl .contact-item-link i {
        order: 2;
        margin-left: 0.5rem;
        margin-right: 0;
    }
    
    body.rtl .contact-item div,
    body.rtl .contact-item-link div {
        order: 1;
        text-align: left;
    }
    
    body.rtl .contact-item h4,
    body.rtl .contact-item-link h4 {
        text-align: right;
        font-family: 'Cairo', sans-serif;
    }
    
    body.rtl .contact-item p,
    body.rtl .contact-item-link p {
        text-align: left;
        font-family: 'Cairo', sans-serif;
    }
    
    body.rtl .whatsapp-content {
        text-align: center;
    }
    
    body.rtl .footer-content {
        text-align: center;
    }
    
    body.rtl .footer-left,
    body.rtl .footer-right {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        justify-content: center;
        align-items: center;
    }
    
    body.rtl .social-links {
        justify-content: center;
        margin: 1rem auto 0;
    }
}

/* Tablet Styles (768px to 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        padding: 0 24px;
    }
    
    .offer-container {
        min-height: 450px;
    }
    
    .offer-image {
        min-height: 450px;
        height: 100%;
        object-fit: cover;
    }
    
    .nav-toggle {
        display: none !important;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .services-grid {
        gap: 2rem;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .service-card {
        flex: 0 0 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
    
    .trainers-grid {
        gap: 2rem;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .trainer-card {
        flex: 0 0 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
    
    .pricing-grid {
        gap: 2rem;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .pricing-card {
        flex: 0 0 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
    
    .gallery-grid {
        gap: 2rem;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .gallery-item {
        flex: 0 0 calc(50% - 1rem);
        max-width: calc(50% - 1rem);
    }
    
    .contact-content {
        gap: 3rem;
    }
    
    .whatsapp-content {
        gap: 3rem;
    }
    
    .join-btn {
        min-width: 260px;
        max-width: 350px;
        padding: 1.1rem 2.5rem;
        font-size: 1.05rem;
    }
}

/* Desktop Styles (1024px and up) */
@media (min-width: 1024px) {
    .container {
        padding: 0 32px;
    }
    
    .nav-toggle {
        display: none !important;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .services-grid {
        gap: 3rem;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .service-card {
        flex: 0 0 calc(33.333% - 2rem);
        max-width: calc(33.333% - 2rem);
    }
    
    .trainers-grid {
        gap: 3rem;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .trainer-card {
        flex: 0 0 calc(33.333% - 2rem);
        max-width: calc(33.333% - 2rem);
    }
    
    .pricing-grid {
        gap: 3rem;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .pricing-card {
        flex: 0 0 calc(33.333% - 2rem);
        max-width: calc(33.333% - 2rem);
    }
    
    .gallery-grid {
        gap: 3rem;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .gallery-item {
        flex: 0 0 calc(50% - 1.5rem);
        max-width: calc(50% - 1.5rem);
    }
    
    .about-content {
        gap: 4rem;
    }
    
    .contact-content {
        gap: 4rem;
    }
    
    .whatsapp-content {
        gap: 4rem;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-section {
        flex: 0 0 calc(25% - 1.5rem);
    }
}
