@import url("https://fonts.googleapis.com/css2?family=Revalia&display=swap");

@font-face {
    font-family: "Performance";
    src: url("../fonts/PERFORMANCE.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}
.swal2-container {
    z-index: 999999 !important;
}

:root {
    --color-primary: #d72329;
    --color-base: #000000;
    --color-light: #ffffff;
    --font-primary: "Performance", sans-serif;
    --font-base: "Revalia", sans-serif;
    --font-size-text: 16px;
    --font-size-heading: clamp(32px, 3.5vw, 56px);
    --font-size-heading-second: clamp(27px, 2.75vw, 44px);
    --padding-inline: 17px;
    --disable: none;
}

html {
    scroll-behavior: smooth;
}

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

body {
    font-family: var(--font-base);
    font-size: var(--font-size-text);
    background: var(--color-light);
    box-sizing: border-box;
}

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

/* --- Header --- */
.main-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid rgb(000 000 000 / 10%);
}

.main-header .container {
    max-width: clamp(767px, 98%, 1556px);
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.logo {
    max-width: 100px;
}

.logo img {
    width: 100%;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    position: relative;
    text-transform: uppercase;
    font-family: var(--font-base);
}

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

/* Dropdown */
.has-dropdown {
    position: relative;
    text-align: center;
}

nav .submenu {
    position: absolute;
    top: 120%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    left: 0;
    border-radius: 5px;
    background: #f5f5f5;
    min-width: 180px;
    opacity: 0;
    z-index: 1;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
}

.submenu li {
    border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.submenu a {
    display: block;
    width: 100%;
    padding: 12px 16px;
    font-size: 13px;
}

.has-dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Arrow */
.arrow {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: rotate(45deg);
    margin-left: 6px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language Switch */
.lang-switch {
    color: #000;
    font-size: 13px;
}

.lang-switch a {
    color: #000;
    text-decoration: none;
}

.lang-switch a.active {
    color: var(--color-primary);
}

/* Button */
.header-btn {
    padding: 12px 22px;
    font-size: 13px;
    background: var(--color-primary);
    color: #fff;
    text-decoration: none;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: #000;
}

html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] .nav-menu ul {
    flex-direction: row-reverse;
}

html[dir="rtl"] .nav-menu .submenu {
    flex-direction: column;
    left: auto;
    right: 0;
}

.lang-switch span {
    color: #000;
}

/* --- Buttons --- */
.hero-actions {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.btn {
    padding: 22px 34px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: 0.3s;
    font-family: var(--font-primary);
    font-size: 14px;
}

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

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

/* --- Hero Section --- */
.hero {
    background-color: var(--color-base);
    height: clamp(840px, 80vw, 913px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 17px;
    border-radius: 15px;
}

.hero .container {
    max-width: 1070px;
    margin: 0 auto;
}

.hero-inner {
    height: clamp(475px, 50vw, 660px);
    background-size: cover;
    background-position: center;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: multiply;
}
.contact-hero {
    /* background-color: var(--color-base);  <-- REMOVE this */
    background-image: url("/assets/images/beautiful-smiling-call-center-worker-headphones-is-working-modern-office.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: clamp(305px, 80vw, 913px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 17px 17px 0;
    border-radius: 15px;
}

.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
    border-radius: 15px;
}

.contact-hero .hero-wrapper {
    position: relative;
    z-index: 2;
}

.contact__label {
    font-family: var(--font-base);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 20px;
}

.contact__label .dot {
    width: 6px;
    height: 6px;
    background: #B8943E;
    border-radius: 50%;
}

.location-section .contact__label {
    justify-content: center;
}

.contact-input {
    width: 100%;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    background-color: #f9fafb;
    font-size: 14px;
    font-family: var(--font-base);
    color: #111827;
    outline: none;
}

.contact-input:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.15);
    background-color: #ffffff;
}

.hero-content {
    max-width: 100%;
    z-index: 5;
    color: var(--color-light);
    position: relative;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin: 20px 0;
    font-family: var(--font-primary);
}

.hero-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    text-transform: uppercase;
}

.red-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
}

/* --- Athletes Positioning --- */
.hero-bg-images {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.athlete {
    position: absolute;
    top: 25%;
    width: 25%;
    height: 40%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom;
}

.left-athlete {
    left: 15%;
}

.right-athlete {
    right: 0;
    top: 20%;
}

.hero-images {
    display: flex;
    justify-content: space-between;
    max-height: 530px;
    width: 100%;
    position: absolute;
    bottom: 0;
}

.hero-images img {
    max-width: 550px;
    object-fit: contain;
}

/* --- About Section --- */

.service-hero {
    background-image: url("/assets/images/Rectangle 8.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: clamp(676px, 100vh, 755px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: multiply;
    margin: 17px;
    border-radius: 15px;
}
.about-hero {
    background-image: url("/assets/images/Rectangle 8.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: clamp(676px, 100vh, 755px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: multiply;
    margin: 17px;
    border-radius: 15px;
}
.about {
    padding: 100px 0;
    background-color: #f9f9f9;
    color: var(--color-base);
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.img-large img,
.img-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.img-large {
    width: 70%;
    height: 450px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.img-small {
    width: 55%;
    height: 350px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
    border: 10px solid #f9f9f9;
}

.watermark {
    position: absolute;
    top: -20px;
    right: 10%;
    width: 200px;
    opacity: 0.1;
    z-index: 1;
}

/* --- Content Styling --- */
.about-content h2 {
    font-family: var(--font-primary);
    font-size: 42px;
    line-height: 1.1;
    margin: 20px 0;
    text-transform: uppercase;
}

.about-content .description {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #444;
    margin-bottom: 30px;
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 15px;
    font-weight: 500;
}

.check-icon {
    background: var(--color-primary);
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

/* about */
.about {
    padding: 120px 0;
}

.about__container {
    max-width: 1556px;
    margin: 0 auto;
    padding: 0 var(--padding-inline);
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 40px;
    align-items: center;
}

/* IMAGES */
.about__images {
    position: relative;
}

.image {
    overflow: hidden;
    border-radius: 10px;
}

.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image--large {
    width: 100%;
    max-width: 420px;
    margin-right: auto;
}

.image--small {
    position: absolute;
    right: 0;
    bottom: -80px;
    width: 75%;
    max-width: 360px;
}

.img-abs {
    max-width: 227px;
    position: absolute;
    top: 65px;
    right: 0;
}

.img-abs img {
    max-width: 100%;
}

/* CONTENT */
.about__label {
    font-family: var(--font-base);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    margin-bottom: 20px;
}

.about__label .dot {
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
}

.about__title {
    font-family: var(--font-primary);
    font-size: var(--font-size-heading);
    line-height: 1.1;
    margin: 0 0 24px;
}

.about__text {
    font-size: var(--font-size-text);
    font-family: var(--font-base);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* LIST */
.about__list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about__list li {
    position: relative;
    padding-left: 32px;
    font-family: var(--font-base);
    font-size: 16px;
}

.about__list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    background: var(--color-primary);
    color: var(--color-light);
    font-size: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* RTL support: move check icon to the right */
:dir(rtl) .about__list li {
    padding-left: 0;
    padding-right: 32px;
}

:dir(rtl) .about__list li::before {
    left: auto;
    right: 0;
}

/* BUTTON */
.btn {
    display: inline-block;
    padding: 22px 34px 18px;
    background: var(--color-primary);
    color: var(--color-light);
    text-decoration: none;
    border-radius: 999px;
    font-size: 14px;
    letter-spacing: 1px;
}

.services {
    padding: 120px var(--padding-inline);
}

.services-wrapper {
    max-width: 1110px;
    margin: 0 auto;
}

/* Header */
.services-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    font-size: 14px;
    margin-bottom: 18px;
}

.services-label i {
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
}

.services-title {
    text-align: center;
    font-family: var(--font-primary);
    font-size: var(--font-size-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 1px;
    color: var(--color-base);
    margin-bottom: 45px;
}

/* Grid */
.services-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

/* Card */
.service-card {
    position: relative;
    height: 390px;
    border-radius: 28px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    flex: 0 0 28%;
}

article.service-card:nth-child(2) {
    flex: 0 0 38.5%;
    height: 520px;
}

/* Gradient Overlay */
.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #ffffff00 0%, #000000 100%);
}

/* Content */
.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: left;
    color: var(--color-light);
    z-index: 2;
}

.service-content h3 {
    font-family: var(--font-primary);
    font-size: 40px;
    line-height: 1.1;
    margin-bottom: 14px;
}

.service-content p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 20px;
}

.service-content a {
    font-size: 20px;
    font-family: var(--font-primary);
    color: var(--color-light);
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Tags */
.services-tags {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.services-tags span {
    border: 1px solid #ddd;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.services-tags span i {
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
}

/* ===============================
   MILESTONES SECTION
================================ */

.milestones {
    position: relative;
    min-height: 720px;
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--color-light);
}

/* Background Image */
.milestones-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.milestones-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

/* Dark Overlay */
.milestones::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.85) 40%,
        rgba(0, 0, 0, 0.9) 100%
    );
    z-index: 1;
}

/* Content Wrapper */
.milestones-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 var(--padding-inline);
    text-align: center;
}

/* Small Label */
.milestones-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-base);
    font-size: 16px;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.milestones-label i {
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
}

/* Heading */
.milestones-title {
    text-align: center;
    font-family: var(--font-primary);
    font-size: var(--font-size-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 1px;
    color: var(--color-light);
    margin-bottom: 20px;
    margin-top: 15px;
}

/* Description */
.milestones-description {
    max-width: 760px;
    margin: 0 auto 60px;
    font-family: var(--font-base);
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.85;
}

/* Image Grid (replaces counters) */
.milestones-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

/* Single Image Block */
.milestone-image {
    position: relative;
    overflow: auto;
    border-radius: 0;
    aspect-ratio: unset;
}
 html[dir="rtl"] .hero-bg-images .athlete,
    body.rtl .hero-bg-images .athlete {
        transform: scaleX(1) !important;
        transform: unset !important; /* fallback */
    }
.milestone-image img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    object-fit: cover;
    display: block;
}

/* Image Overlay */
.milestone-image::after {
    display: none;
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.5) 40%,
        rgba(0, 0, 0, 0) 100%
    );
}

/* Caption */
.milestone-caption {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    z-index: 2;
    font-family: var(--font-primary);
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Button */
.milestones-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 22px 34px 18px;
    border-radius: 999px;
    background: var(--color-primary);
    color: var(--color-light);
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===============================
   WHY CHOOSE US
================================ */

.why-choose-us {
    padding: 140px var(--padding-inline);
    background: var(--color-light);
}

.why-container {
    max-width: 1700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 80px;
}

/* LEFT CONTENT */
.why-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-base);
    font-size: 14px;
    margin-bottom: 18px;
}

.why-label i {
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
}

.why-title {
    font-family: var(--font-primary);
    font-size: var(--font-size-heading);
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 26px;
    color: var(--color-base);
}

.why-text {
    font-family: var(--font-base);
    font-size: 16px;
    line-height: 1.8;
    max-width: 100%;
    margin-bottom: 42px;
    color: #333;
}

/* STATS */
.why-stats {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
}

.stat strong {
    display: block;
    font-family: var(--font-primary);
    font-size: 32px;
    margin-bottom: 6px;
}

.stat p {
    font-family: var(--font-base);
    font-size: 14px;
}

.stat-icon {
    display: block;
    font-size: 24px;
    margin-bottom: 6px;
}

/* BUTTONS */
.why-actions {
    display: flex;
    gap: 18px;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-light);
    padding: 20px 30px 16px;
    border-radius: 999px;
    font-family: var(--font-primary);
    font-size: 16px;
    padding-top: 8px;
    padding-bottom: 0px;
    text-decoration: none;
    text-transform: uppercase;
}

.btn-outline {
    font-family: var(--font-primary);
    padding: 22px 34px 18px;
    border-radius: 999px;
    text-decoration: none;
    text-transform: uppercase;
    background: #333;
    border: none;
}

/* RIGHT IMAGE */
.why-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.why-image img {
    max-width: 100%;
    position: relative;
    z-index: 2;
}

/* Soft circle background */
.image-bg {
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #f8d7d4 0%, #ffffff 70%);
    border-radius: 50%;
    z-index: 1;
}

/* ===============================
   SCHEDULE APPOINTMENT SECTION
================================ */

.appointment {
    background: var(--color-base);
    padding: 30px var(--padding-inline) 0;
    color: var(--color-light);
}

.appointment-container {
    max-width: 1700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 80px;
}

/* LEFT CONTENT */
.appointment-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-base);
    font-size: 14px;
    margin-bottom: 18px;
}

.appointment-label i {
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
}

.appointment-title {
    font-family: var(--font-primary);
    font-size: var(--font-size-heading);
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 26px;
}

.appointment-text {
    font-family: var(--font-base);
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 40px;
}

/* CTA BUTTON */
.appointment-btn {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-light);
    padding: 22px 34px 18px;
    border-radius: 999px;
    font-family: var(--font-primary);
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
}

/* RIGHT IMAGE + ORB */
.appointment-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.appointment-image img {
    position: relative;
    z-index: 2;
    max-width: 100%;
}

/* ===============================
   TRAINERS SECTION
================================ */

.trainers {
    padding: 140px var(--padding-inline);
    background: var(--color-light);
    text-align: center;
}

.trainers-header {
    max-width: 1060px;
    margin: 0 auto 45px;
}

/* Label */
.trainers-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-base);
    font-size: 14px;
    margin-bottom: 18px;
}

.trainers-label i {
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
}

/* Heading */
.trainers-title {
    font-family: var(--font-primary);
    font-size: 56px;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--color-base);
}

/* Grid */
.trainers-grid {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* Card */
.trainer-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #f3f3f3;
}

.trainer-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Gradient Overlay */
.trainer-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.45) 35%,
        rgba(0, 0, 0, 0) 70%
    );
    pointer-events: none;
}

/* Info */
.trainer-info {
    position: absolute;
    bottom: 22px;
    left: 20px;
    right: 20px;
    z-index: 2;
    color: var(--color-light);
}

.trainer-info h3 {
    font-family: var(--font-primary);
    font-size: 18px;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.trainer-info p {
    font-family: var(--font-primary);
    font-size: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ===============================
   HOW IT WORKS
================================ */

.how-it-works {
    padding: 100px var(--padding-inline);
    color: var(--color-light);
    background-image: url("../images/dark-section-bg-shape.png");
    background-color: #000;
    background-size: contain;
}

/* Header */
.how-header {
    text-align: center;
    max-width: 1500px;
    margin: 0 auto 80px;
}

.how-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-base);
    font-size: 14px;
    margin-bottom: 18px;
}

.how-label i {
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
}

.how-title {
    font-family: var(--font-primary);
    font-size: var(--font-size-heading);
    line-height: 1.1;
    text-transform: uppercase;
}

/* Steps */
.how-steps {
    max-width: 1540px;
    margin: 0 auto 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.how-card {
    position: relative;
    background: #2f2f2f;
    border-radius: 18px;
    padding: 60px 30px 40px;
    text-align: center;
}

/* Step badge */
.step-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #3a3a3a;
    padding: 6px 14px;
    border-radius: 999px;
    font-family: var(--font-base);
    font-size: 12px;
}

/* Icon */
.step-icon {
    font-size: 32px;
    color: var(--color-primary);
    margin-bottom: 20px;
    display: inline-block;
}

/* Card text */
.how-card h3 {
    font-family: var(--font-primary);
    font-size: 25px;
    margin-bottom: 14px;
}

.how-card p {
    font-family: var(--font-base);
    font-size: var(--font-size-text);
    line-height: 1.7;
    opacity: 0.85;
}

/* Video */
.how-video {
    position: relative;
    max-width: 1550px;
    max-height: 480px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;
}

.how-video video {
    width: 100%;
    height: 100%;
    max-height: 480px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Play Button */
.play-btn {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 104px;
    height: 104px;
    border-radius: 50%;
    background: var(--color-primary);
    border: none;
    color: var(--color-light);
    font-size: 96px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===============================
   MARQUEE
================================ */

.marquee {
    width: 100%;
    overflow: hidden;
    background: transparent;
    padding: 50px 0;
    position: relative;
}

.marquee::before {
    content: "";
    background-image: linear-gradient(0deg, #fff, transparent);
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 1;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 22s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-right: 32px;
}

.marquee-content span {
    font-family: var(--font-primary);
    font-size: 72px;
    margin-top: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-primary);
    white-space: nowrap;
}

.marquee-content img {
    max-height: 72px;
    width: auto;
}

/* ===============================
   ANIMATION
================================ */

@keyframes marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ===============================
   FOOTER BASE
================================ */

.site-footer {
    position: relative;
    background: #000;
    color: #fff;
    border-radius: 24px;
    margin: 0 17px 17px;
    overflow: hidden;
    padding: 60px 15px 40px;
}

/* Mesh overlay (PNG will be added later) */
.site-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../images/dark-section-bg-shape.png") center/cover
        no-repeat;
    opacity: 0.25;
    pointer-events: none;
}

/* ===============================
   INNER GRID
================================ */

.footer-inner {
    max-width: 1540px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr 1.2fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.footer-logo {
    width: 90px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: #cfcfcf;
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-socials a {
    font-size: 30px;
    color: var(--color-primary);
    text-decoration: none;
}

.footer-col h4 {
    font-family: var(--font-primary);
    font-size: 22px;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col li {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
}

/* .footer-col li span {
    color: #e41e1e;
} */

.footer-col p {
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-col strong {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    font-size: 13px;
    color: #aaa;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===============================
   BOTTOM BAR
================================ */

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
    .about__container {
        grid-template-columns: 1fr;
    }

    .about__images {
        display: flex;
        justify-content: space-between;
    }

    .image--small {
        position: relative;
        bottom: 0;
        margin-top: 24px;
    }


    .service-card {
        height: 460px;
    }

    .milestones-images {
        gap: 24px;
    }

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

    .why-stats {
        justify-content: center;
    }

    .why-actions {
        justify-content: center;
    }

    .why-text {
        margin-left: auto;
        margin-right: auto;
    }

    .appointment-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0;
    }

    .appointment-text {
        margin-left: auto;
        margin-right: auto;
    }

    .appointment-image {
        margin-top: 60px;
    }

    .trainers-grid, .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-steps {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        position: fixed;
        width: 100%;
        top: 80px;
        left: 0;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 25px;
    }

    .nav-menu .submenu {
        gap: 0;
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        background: transparent;
        height: 0;
        pointer-events: none;
    }

    .nav-menu .has-dropdown:hover .submenu {
        opacity: 1;
        visibility: visible;
        height: auto;
        pointer-events: all;
    }

    .header-btn {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }
    
    .header-btn.open-booking-modal {
        display: none;
    }
    
    html[dir="rtl"] .nav-menu ul {
        flex-direction: column !important;
    }
}

@media (max-width: 992px) {
    .athlete {
        width: 30%;
        height: 60%;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .header-btn {
        display: none;
    }

    .about__images {
        flex-direction: column;
    }

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

    .about-images {
        height: 500px;
        max-width: 500px;
        margin: 0 auto;
    }

    .features-list li {
        justify-content: center;
    }

    .tagline {
        justify-content: center;
    }
    
    .services-grid {
        flex-direction: column !important;
    }
    
    .service-card {
        flex: 0 0 100%;
    }
    
    article.service-card:nth-child(2) {
        flex: 0 0 100%;
    }
    
    .about {
        padding: 50px 0;
    }
    
    .services {
        padding: 50px var(--padding-inline);
    }

    .why-choose-us, .trainers {
        padding: 50px var(--padding-inline);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
    }
    
    .hero {
        height: clamp(700px, 80vw, 913px);
        align-items: start;
        padding-top: 25px;
    }

    .nav-menu ul {
        flex-direction: column;
        text-align: center;
    }

    .athlete {
        opacity: 0.3;
        width: 50%;
    }

    .milestones {
        padding: 100px 0;
    }

    .milestones-images {
        grid-template-columns: 1fr;
    }

    .milestone-image {
        max-width: 360px;
        margin: 0 auto;
    }

    .services-tags {
        flex-direction: column;
        align-items: center;
    }

    .trainers-title {
        font-size: 36px;
    }

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

    .marquee-content span {
        font-size: 30px;
    }

    .marquee-content img {
        max-height: 30px;
    }

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

    .hero-images {
        max-height: 180px;
    }

    .hero-images img {
        max-width: 180px;
    }
}

@media (max-width: 600px) {
    .footer-inner {
        grid-template-columns: 1fr;
        padding: 40px 30px;
    }

    .image--large,
    .image--small {
        max-width: 100%;
        width: 100%;
    }
    
    .header-btn.open-booking-modal {
        display: none;
    }
}

/* Grid */
.services-grid {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 30px;
}

/* Card */
.service-card {
    position: relative;
    height: 390px;
    border-radius: 28px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    flex: 0 0 28%;
}

article.service-card:nth-child(2) {
    flex: 0 0 38.5%;
    height: 520px;
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 20%,
        rgba(0, 0, 0, 0.4) 60%,
        rgba(0, 0, 0, 0.05) 100%
    );
    z-index: 1;
}

.service-content {
    position: relative;
    z-index: 2;
    padding: 32px;
    color: #fff;
}

.service-content h3 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
}

.service-content p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 24px;
}

.service-content a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-content a i {
    font-size: 18px;
}

.location-section {
    font-family: var(--font-primary);
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}

.location-section h2 {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 30px;
    color: #000;
    text-transform: uppercase;
}

.map-wrapper {
    background: #9dd7e6;
    border-radius: 14px;
    padding: 18px;
}

.map-wrapper iframe {
    width: 100%;
    height: 420px;
    border: 0;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .location-section h2 {
        font-size: 24px;
    }

    .map-wrapper iframe {
        height: 320px;
    }
}

/* About seciton ka lower vala */
/* SECTION */
.facts-section {
    padding: 96px 0;
    background: #ffffff;
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
}

/* CONTAINER */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* GRID */
.facts-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

@media (min-width: 1024px) {
    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* LEFT CONTENT */
.fact-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-family: var(--font-base);
    font-weight: 400;
    color: rgb(0 0 0 / 80%);
    margin-bottom: 15px;
}

.fact-label i {
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
}

.fact-title {
    font-family: var(--font-primary);
    font-size: var(--font-size-heading);
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 24px;
}

.fact-desc {
    font-size: 16px;
    line-height: 1.5;
    font-family: var(--font-base);
    color: rgb(0 0 0 / 80%);
    max-width: 100%;
    margin-bottom: 24px;
}

/* LIST */
.fact-list {
    list-style: none;
    font-family: var(--font-base);
    padding: 0;
    margin-bottom: 32px;
}

.fact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #374151;
    margin-bottom: 22px;
}

.check {
    min-width: 20px;
    height: 20px;
    background: #dc2626;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-top: 2px;
}

/* BUTTON */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #dc2626;
    color: #ffffff;
    font-weight: 600;
    padding: 21px 28px 19px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #b91c1c;
}

/* IMAGES */
.facts-images {
    position: relative;
    display: flex;
    justify-content: center;
}

@media (min-width: 1024px) {
    .facts-images {
        justify-content: flex-end;
    }
}

.img-back {
    width: 455px;
    height: 617px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 10;
}

.img-front {
    width: 406px;
    height: 445px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
    border: 4px solid #ffffff;
    position: absolute;
    bottom: -60px;
    left: 80px;
    z-index: 20;
    transform: scaleX(-1);
}

/* STATS */
.facts-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 75px;
    text-align: center;
    margin-top: 110px;
}

.fact-single {
    position: relative;
}

.fact-single:not(:last-child)::before {
    content: "";
    position: absolute;
    right: -12.5%;
    transform: translateX(-50%);
    height: 100%;
    width: 1px;
    background: rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
    .facts-stats {
        grid-template-columns: repeat(5, 1fr);
    }
}

.facts-stats h3 {
    font-size: clamp(30px, 5vw, 70px);
    font-family: var(--font-primary);
    margin-bottom: 10px;
    line-height: 1;
    font-weight: 800;
    color: #6e6e6e;
}

.facts-stats p {
    font-size: 16px;
    font-family: "Revalia";
    color: #6e6e6e;
}

/* SECTION */
.milestones-section {
    padding: 80px 0;
    background: #ffffff;
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
}

/* CONTAINER */
.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 var(--padding-inline);
}

.text-center {
    text-align: center;
}

/* HEADINGS */
.milestone-label {
    font-size: 16px;
    color: rgb(0 0 0 / 80%);
    margin-bottom: 12px;
}

.milestone-title {
    font-size: var(--font-size-heading);
    font-family: var(--font-primary);
    font-weight: 800;
    color: #000000;
    margin-bottom: 16px;
}

.milestone-desc {
    max-width: 840px;
    font-family: var(--font-base);
    margin: 0 auto 64px;
    font-size: 16px;
    color: rgb(0 0 0 / 80%);
    line-height: 1.6;
}

/* GRID */
.milestone-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 56px;
}

@media (min-width: 640px) {
    .milestone-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .milestone-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.facts-content {
    max-width: 625px;
}

/* ITEMS */
.milestone-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.milestone-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.milestone-item h4 {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.milestone-item p {
    font-size: 16px;
    font-family: var(--font-base);
    color: rgb(0 0 0 / 80%);
    max-width: 100%;
    line-height: 1.6;
}

/* Bottom banner */
section.bottom-banner-section {
    padding: 90px 0 60px;
    position: relative;
    text-align: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.4);
    background-blend-mode: multiply;
}

section.bottom-banner-section .sub-title {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-base);
    margin-bottom: 40px;
}

section.bottom-banner-section h2 {
    color: #fff;
    font-family: var(--font-primary);
    font-size: var(--font-size-heading-second);
    margin-bottom: 50px;
}

/* Single service */
/* Single Services */
.single-service-content {
    padding: 60px var(--padding-inline);
    max-width: 100%;
}

.single-service-content .content-box {
    max-width: 1655px;
    margin: 0 auto;
}

.featured-img {
    width: 100%;
    margin-bottom: 50px;
}

.single-service-content .content-box h2 {
    margin-bottom: 40px;
    font-size: var(--font-size-heading);
    font-family: var(--font-primary);
}

.single-service-content .content-box p {
    margin-bottom: 40px;
    line-height: 1.75;
}

.single-service-content .content-box span.days {
    margin-right: 30px;
}

.single-service-content .content-box p:last-child {
    margin-bottom: 0;
}

/* ====================
Gallery Section
=======================  */

.gallery-section {
    background-image: url("../images/dark-section-bg-shape.png");
    background-color: #000;
    background-size: contain;
    border-radius: 20px;
    padding: 50px var(--padding-inline);
    margin: 20px;
}

/* --- 2. Header Styles --- */
.gallery-header {
    text-align: center;
    margin-bottom: 30px;
}

.gallery-header h1 {
    font-family: var(--font-primary);
    font-size: var(--font-size-heading);
    color: var(--color-light);
    text-transform: uppercase;
}

.gallery-header span {
    color: var(--color-light);
    display: block;
    margin-bottom: 20px;
}

.gallery-header span .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-bottom: 3px;
    background: var(--color-primary);
    border-radius: 50%;
}

/* --- 3. Gallery Grid Layout --- */
.gallery-container {
    max-width: 1690px;
    padding-inline: var(--padding-inline);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Columns */
    gap: 10px;
}

.gallery-item {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    height: auto;
    border: 1px solid #222;
}

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

/* Hover Effect */
.gallery-item:hover img {
    transform: scale(1.05);
}

.cta-box {
    text-align: center;
    margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .gallery-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gallery-container {
        grid-template-columns: 1fr;
    }
}

/* Single Services */
.single-service-content {
    padding: 60px var(--padding-inline);
    max-width: 100%;
}

.single-service-content .content-box {
    max-width: 1655px;
    margin: 0 auto;
}

.featured-img {
    width: 100%;
    margin-bottom: 50px;
}

.single-service-content .content-box h2 {
    margin-bottom: 40px;
    font-size: var(--font-size-heading);
    font-family: var(--font-primary);
}

.single-service-content .content-box p {
    margin-bottom: 40px;
    line-height: 1.75;
}

.single-service-content .content-box span.days {
    margin-right: 30px;
}

.single-service-content .content-box p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    .fact-single:not(:last-child)::before {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .img-back {
        width: 75vw;
        height: 100vw;
    }
    .img-front {
        left: 0;
        width: 70vw;
        height: 55vw;
    }
    
    .facts-stats {
        gap: 20px;
        grid-template-columns: repeat(1, 1fr);
    }
}

.section-subtitle {
    color: var(--color-primary) !important;
}

.title-divider {
    background: var(--color-primary) !important;
}

@media screen and (max-width: 480px) {
    .hero-inner {
        height: clamp(300px, 50vw, 660px);
    }
    
    .containerr {
        padding: 50px 20px;
    }
    
    .location-section {
        margin: 0 auto;
    }
    
    .glassmorphism-card {
        align-items: start !important;
    }
    
    .h-px.flex-1.mx-4.bg-gray-300 {
        display: none;
    }
    
    .border-b.border-gray-200.px-8.py-4 {
        padding-inline: 10px;
    }
    
    .px-8.py-6.max-h-\[600px\].overflow-y-auto {
        padding-inline: 10px;
    }
    
    div#weekDays {
        gap: 0.25rem;
    }
    
    .flex.items-center.justify-center.gap-2.mb-4.text-gray-900.font-bold {
        gap: 0.25rem;
    }
    
    .weekday-btn {
        height: 45px !important;
        width: 45px !important;
        padding: 6px !important;
        display: flex;
        flex-direction: column;
    }
    
    .weekday-name {
        font-size: 10px !important;
    }
    
    .weekday-date {
        font-size: 13px !important;
    }
    
    .slots-container {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .services-title {
        text-align: left;
    }
    
    .services-label {
        display: flex;
        align-items: start;
        justify-content: start;
        text-align: left;
    }
    
    .services-label i {
        margin-top: 6px;
    }
    
    .single-service-content .content-box h2 {
        margin-bottom: 15px;
        line-height: 1;
        font-size: var(--font-size-heading);
        font-family: var(--font-primary);
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .single-service-content {
        padding: 30px var(--padding-inline);
    }
    
    .services-list-section {
        padding: 30px 0;
    }
    
    .single-service-content .content-box p {
        margin-bottom: 20px;
        line-height: 1.25;
        font-size: 14px;
    }
    
    .about__list li {
        padding-left: 25px;
        font-size: 14px;
    }
    
    .marquee {
        padding: 30px 0;
    }
    
    h2 br {
        display: none !important;
    }
    html[dir="rtl"] .hero-bg-images .athlete,
    body.rtl .hero-bg-images .athlete {
        transform: scaleX(1) !important;
        transform: unset !important; /* fallback */
    }
}










