  /* =============================================================
   GYM CLEANING PAGE – gym-cleaning.css
   Scoped to .gym-* classes only.
   No body, *, or font-family overrides.
   Brand color: #077cea | Accent: #fee766
   ============================================================= */

/* ---------------------------------------------------------------
   CSS VARIABLES (page-scoped)
--------------------------------------------------------------- */
.gym-banner-bg,
.gym-intro-section,
.gym-services-section,
.gym-facilities-section,
.gym-highttouch-section,
.gym-why-section,
.gym-process-section,
.gym-compliance-section,
.gym-pricing-section,
.gym-benefits-section,
.gym-faq-section,
.gym-cta-section,
.gym-breadcrumb-bar {
    --gym-blue:     #077cea;
    --gym-blue-dk:  #0563c1;
    --gym-yellow:   #fee766;
    --gym-white:    #ffffff;
    --gym-dark:     #0a0a1a;
    --gym-grey:     #dcf0ff;
    --gym-text:     #444;
    --gym-radius:   14px;
}

/* ---------------------------------------------------------------
   BANNER / HERO
--------------------------------------------------------------- */
/* banner start */
.tj-breadcrumb-area {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 230px 0 120px;
    overflow: hidden;
    position: relative;
    z-index: 1
}

.tj-breadcrumb-area::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(7 124 234 / .5);
    z-index: -2
}

.tj-breadcrumb-area::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(1 15 52 / .3);
    z-index: -1
}

@media only screen and (min-width:768px) and (max-width:991px) {
    .tj-breadcrumb-area {
        padding: 200px 0 100px
    }
}

@media only screen and (min-width:576px) and (max-width:767px) {
    .tj-breadcrumb-area {
        padding: 180px 0 80px
    }
}

@media (max-width:575px) {
    .tj-breadcrumb-area {
        padding: 180px 0 80px
    }
}

.tj-breadcrumb-bg-shape {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translate(4%, -30%);
    -ms-transform: translate(4%, -30%);
    transform: translate(4%, -30%);
    z-index: -1
}

.tj-breadcrumb-title {
    color: var(--tj-color-common-white);
    font-weight: var(--tj-fw-bold);
    margin-bottom: 12px;
    font-size: var(--tj-fs-h2);

}

.tj-breadcrumb-body {
    font-family: var(--tj-ff-heading);
    font-weight: var(--tj-fw-medium);
    font-size: 18px;
    color: var(--tj-color-common-white);
    margin-bottom: 0
}

.tj-breadcrumb-body .spacing {
    margin: 0 10px 0
}
/* banner  closed */


.gym-section-title_h1 {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 800;
    color: var(--gym-dark);
    line-height: 1.25;
    margin-bottom: 16px;
}


/* ---------------------------------------------------------------
   SHARED SECTION ATOMS
--------------------------------------------------------------- */
.gym-section-tag {
    display: inline-block;
    background: rgba(7, 124, 234, 0.1);
    color: var(--gym-blue);
    border: 1px solid rgba(7, 124, 234, 0.25);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
}

.gym-section-title {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 800;
    color: var(--gym-dark);
    line-height: 1.25;
    margin-bottom: 16px;
}

.gym-section-desc {
    font-size: 16px;
    color: var(--gym-text);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.gym-section-header {
    text-align: center;
    margin-bottom: 52px;
}

.gym-inline-link {
    color: var(--gym-blue);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.gym-inline-link:hover {
    color: var(--gym-blue-dk);
}

/* ---------------------------------------------------------------
   INTRO SECTION
--------------------------------------------------------------- */
.gym-intro-section {
    padding: 80px 0;
    background: #dcf0ff;
}

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

.gym-intro-image {
    position: relative;
}

.gym-intro-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 24px 60px rgba(7, 124, 234, 0.15);
}

.gym-intro-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--gym-yellow);
    border-radius: var(--gym-radius);
    padding: 16px 24px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.badge-number {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: #0a0a1a;
    line-height: 1;
}

.badge-label {
    font-size: 12px;
    font-weight: 600;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gym-intro-content p {
    font-size: 16px;
    color: var(--gym-text);
    line-height: 1.7;
    margin-bottom: 16px;
    text-align: justify;
}

.gym-benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 24px 0 30px;
}

.gym-benefit-chip {
    background: var(--gym-grey);
    color: #222;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    border-left: 3px solid var(--gym-blue);
}

.gym-intro-cta {
    margin-top: 8px;
}

/* ---------------------------------------------------------------
   SERVICES SECTION
--------------------------------------------------------------- */
.gym-services-section {
    padding: 30px 0;
    background:#fff;
}

.gym-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.gym-service-card {
    background: #fff;
    border-radius: 18px;
    padding: 32px 28px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
}

.gym-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(7, 124, 234, 0.14);
    border-top-color: var(--gym-blue);
}

.gym-service-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
}

.gym-service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gym-dark);
    margin-bottom: 12px;
}

.gym-service-card p {
    font-size: 14.5px;
    color: var(--gym-text);
    line-height: 1.7;
    text-align: justify;
    margin: 0;
}

/* ---------------------------------------------------------------
   FACILITIES SECTION
--------------------------------------------------------------- */
.gym-facilities-section {
    padding: 30px 0;
    background: #dcf0ff;
}

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

.gym-facilities-content p {
    font-size: 16px;
    color: var(--gym-text);
    line-height: 1.7;
    margin-bottom: 24px;
}

.gym-facility-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.gym-facility-item {
    background: var(--gym-grey);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    border-left: 3px solid var(--gym-blue);
}

.gym-facilities-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 24px 60px rgba(7, 124, 234, 0.12);
}

/* ---------------------------------------------------------------
   HIGH-TOUCH AREAS
--------------------------------------------------------------- */
.gym-highttouch-section {
    padding: 30px 0;
    background: var(--gym-grey);
}

.gym-hightouch-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gym-hightouch-item {
    background: #fff;
    border-radius: var(--gym-radius);
    padding: 20px 18px;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--gym-dark);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gym-hightouch-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(7, 124, 234, 0.12);
}

.gym-hightouch-item span {
    font-size: 22px;
    flex-shrink: 0;
}

/* ---------------------------------------------------------------
   WHY CHOOSE US SECTION
--------------------------------------------------------------- */
.gym-why-section{
    padding:30px 0;
    background:#dcf0ff;
}

.gym-why-wrapper{
    display:grid;
    grid-template-columns:500px 1fr;
    gap:60px;
    align-items:center;
}

.gym-why-image{
    position:relative;
}

.gym-why-image img{
    width:100%;
    height:650px;
    object-fit:cover;
    border-radius:25px;
    display:block;
}

.experience-badge{
    position:absolute;
    bottom:25px;
    left:25px;
    background:#077CEA;
    color:#fff;
    padding:20px 25px;
    border-radius:15px;
    font-weight:600;
}

.experience-badge span{
    display:block;
    font-size:36px;
    font-weight:800;
    line-height:1;
}

.gym-section-tag{
    display:inline-block;
    background:#077CEA;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    margin-bottom:15px;
}

.gym-section-title{
    font-size:42px;
    margin-bottom:20px;
}

.gym-why-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:30px;
}

.gym-feature-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.gym-feature-card{
    background:#fff;
    padding:18px;
    border-radius:12px;
    border-left:4px solid #077CEA;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
    font-weight:600;
    transition:.3s;
}

.gym-feature-card:hover{
    transform:translateY(-5px);
}

@media(max-width:991px){

    .gym-why-wrapper{
        grid-template-columns:1fr;
        gap:40px;
    }

    .gym-why-image img{
        height:450px;
    }

    .gym-section-title,.gym-section-title_h1{
        font-size:34px;
    }

}

@media(max-width:767px){

    .gym-why-section{
        padding:60px 0;
    }

    .gym-why-image img{
        height:300px;
    }

    .gym-feature-grid{
        grid-template-columns:1fr;
    }

    .gym-section-title,.gym-section-title_h1{
        font-size:28px;
    }

    .experience-badge{
        padding:15px 20px;
    }

    .experience-badge span{
        font-size:28px;
    }
}
/* ---------------------------------------------------------------
   PROCESS SECTION
--------------------------------------------------------------- */
.gym-process-section {
    padding: 30px 0;
    background: var(--gym-grey);
}

.gym-process-steps {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    align-items: start;
}

.gym-process-step {
    text-align: center;
    padding: 0 8px;
}

.gym-step-num {
    width: 56px;
    height: 56px;
    background: var(--gym-blue);
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 16px rgba(7, 124, 234, 0.35);
}

.gym-step-body h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--gym-dark);
    margin-bottom: 6px;
    margin-top: 10px;
    line-height: 1.4;
}

.gym-step-body p {
    font-size: 12.5px;
    color: var(--gym-text);
    line-height: 1.6;
    margin: 0;
}

.gym-process-connector {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 26px;
}

.gym-process-connector::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gym-blue), var(--gym-blue));
    border-top: 2px dashed var(--gym-blue);
    opacity: 0.4;
    margin-top: 2px;
}

/* ---------------------------------------------------------------
   COMPLIANCE SECTION
--------------------------------------------------------------- */
.gym-compliance-section {
    padding: 30px 0;
    background: #fff;
}

.gym-compliance-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.gym-compliance-content p {
    font-size: 16px;
    text-align: justify;
    color: var(--gym-text);
    line-height: 1.7;
    margin-bottom: 24px;
}

.gym-compliance-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gym-compliance-list li {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    padding: 10px 16px;
    background: var(--gym-grey);
    border-radius: 8px;
    border-left: 3px solid var(--gym-blue);
}

.gym-compliance-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gym-compliance-card {
    background:#fff;
    border-radius: 16px;
    padding: 28px 22px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gym-compliance-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(7, 124, 234, 0.12);
}

.gym-comp-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.gym-compliance-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--gym-dark);
    margin-bottom: 8px;
}

.gym-compliance-card p {
    font-size: 13.5px;
    color: var(--gym-text);
    line-height: 1.6;
    margin: 0;
}

/* ---------------------------------------------------------------
   PRICING SECTION
--------------------------------------------------------------- */
.gym-pricing-section {
    padding: 30px 0;
    background: var(--gym-grey);
}

.gym-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.gym-pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gym-pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(7, 124, 234, 0.14);
}

.gym-pricing-featured {
    background: var(--gym-blue);
    color: #fff;
    transform: scale(1.03);
}

.gym-pricing-featured:hover {
    transform: scale(1.03) translateY(-6px);
}

.gym-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gym-yellow);
    color: #0a0a1a;
    padding: 5px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.gym-pkg-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.gym-pricing-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--gym-dark);
}

.gym-pricing-featured h3 {
    color: #fff;
}

.gym-pkg-ideal {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    opacity: 0.7;
    color: var(--gym-dark);
}

.gym-pricing-featured .gym-pkg-ideal {
    color: rgba(255,255,255,0.8);
}

.gym-pkg-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    text-align: left;
    flex-grow: 1;
}

.gym-pkg-list li {
    padding: 8px 0;
    font-size: 14.5px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
}

.gym-pricing-featured .gym-pkg-list li {
    color: rgba(255,255,255,0.9);
    border-bottom-color: rgba(255,255,255,0.2);
}

.gym-pkg-price {
    font-size: 14px;
    color: #666;
    margin-bottom: 22px;
    line-height: 1.5;
}

.gym-pkg-price strong {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--gym-blue);
}

.gym-pricing-featured .gym-pkg-price {
    color: rgba(255,255,255,0.75);
}

.gym-pricing-featured .gym-pkg-price strong {
    color: var(--gym-yellow);
}

.gym-pkg-btn {
    display: block;
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    background: var(--gym-blue);
    color: #fff;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gym-pkg-btn:hover {
    background: var(--gym-blue-dk);
    color: #fff;
    transform: translateY(-2px);
}

.gym-pricing-featured .gym-pkg-btn {
    background: var(--gym-yellow);
    color: var(--gym-dark);
}

.gym-pricing-featured .gym-pkg-btn:hover {
    background: #ffd700;
}

/* Included section */
.gym-included {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}

.gym-included h3 {
    font-size: 22px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 28px;
    color: var(--gym-dark);
}

.gym-included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.gym-included-item {
    background: var(--gym-grey);
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 14.5px;
    font-weight: 600;
    color: #222;
    border-left: 3px solid var(--gym-blue);
}

/* ---------------------------------------------------------------
   BENEFITS SECTION
--------------------------------------------------------------- */
.gym-benefits-section {
    padding: 30px 0;
    background: #fff;
}

.gym-benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
}

.gym-benefit-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 32px;
    background: #fff;
    transition: background 0.25s ease;
}

.gym-benefit-row:hover {
    background: var(--gym-grey);
}

.gym-benefit-num {
    font-size: 32px;
    font-weight: 900;
    color: var(--gym-blue);
    opacity: 0.2;
    line-height: 1;
    flex-shrink: 0;
    min-width: 48px;
}

.gym-benefit-row h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--gym-dark);
    margin: 0;
}

/* ---------------------------------------------------------------
   FAQ SECTION (uses existing .faq-* classes - no override needed)
--------------------------------------------------------------- */
.gym-faq-section {
    background: var(--gym-grey, #dcf0ff);
}
.services-btn-wrap{
    text-align:center;
    margin-top:20px;
}

.services-view-more-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:16px 35px;
    background:linear-gradient(135deg,#077CEA,#0456A6);
    color:#fff;
    font-size:16px;
    font-weight:600;
    text-decoration:none;
    border-radius:50px;
    transition:all .3s ease;
    box-shadow:0 10px 25px rgba(7,124,234,.25);
}

.services-view-more-btn span{
    transition:all .3s ease;
}

.services-view-more-btn:hover{
    transform:translateY(-4px);
    color:#fff;
    box-shadow:0 18px 35px rgba(7,124,234,.35);
}

.services-view-more-btn:hover span{
    transform:translateX(5px);
}

@media(max-width:767px){
    .services-view-more-btn{
        width:100%;
        justify-content:center;
        padding:15px 20px;
        font-size:15px;
    }
}
/* ---------------------------------------------------------------
   CTA SECTION
--------------------------------------------------------------- */
.gym-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #011434 0%, #023a7a 100%);
    position: relative;
    overflow: hidden;
}

.gym-cta-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(7, 124, 234, 0.15);
    top: -200px;
    right: -100px;
    pointer-events: none;
}

.gym-cta-inner {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 60px;
    align-items: center;
    position: relative;
}

.gym-cta-content .gym-section-tag {
    background: rgba(254, 231, 102, 0.2);
    border-color: rgba(254, 231, 102, 0.4);
    color: var(--gym-yellow);
}

.gym-cta-content .gym-section-title {
    color: #fff;
    font-size: clamp(24px, 3vw, 40px);
}

.gym-cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.gym-cta-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 24px;
}

.gym-cta-features span {
    color: var(--gym-yellow);
    font-size: 14px;
    font-weight: 600;
}

/* CTA Card */
.gym-cta-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0,0,0,0.25);
}

.gym-cta-card-top {
    background: var(--gym-blue);
    padding: 30px 28px;
}

.gym-cta-card-top h2 {
    color: #fff;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
}

.gym-cta-card-top p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.gym-cta-buttons {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gym-cta-btn {
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.gym-cta-primary {
    background: var(--gym-blue);
    color: #fff;
}

.gym-cta-primary:hover {
    background: var(--gym-blue-dk);
    color: #fff;
    transform: translateY(-2px);
}

.gym-cta-secondary {
    background: var(--gym-yellow);
    color: var(--gym-dark);
}

.gym-cta-secondary:hover {
    background: #ffd700;
    color: var(--gym-dark);
    transform: translateY(-2px);
}

.gym-cta-outline {
    border: 2px solid var(--gym-blue);
    color: var(--gym-blue);
    background: transparent;
}

.gym-cta-outline:hover {
    background: var(--gym-blue);
    color: #fff;
}

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

/* Tablet: 768px – 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {

    .gym-banner-bg {
        padding: 180px 0 70px;
    }

    .gym-intro-grid,
    .gym-facilities-inner,
    .gym-compliance-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gym-intro-badge {
        bottom: 20px;
    }

    .gym-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gym-why-grid {
        grid-template-columns: 1fr;
    }

    .gym-why-stats {
        grid-template-columns: repeat(4, 1fr);
        position: static;
    }

    .gym-hightouch-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gym-process-steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .gym-process-connector {
        display: none;
    }

    .gym-pricing-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gym-pricing-featured {
        transform: scale(1);
    }

    .gym-included-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gym-benefits-list {
        grid-template-columns: 1fr;
    }

    .gym-cta-inner {
        grid-template-columns: 1fr;
    }
}

/* Mobile large: 576px – 767px */
@media only screen and (min-width: 576px) and (max-width: 767px) {

    .gym-banner-bg {
        padding: 160px 0 60px;
    }

    .gym-intro-grid,
    .gym-facilities-inner,
    .gym-compliance-inner,
    .gym-why-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .gym-services-grid,
    .gym-pricing-grid {
        grid-template-columns: 1fr;
    }

    .gym-why-stats {
        grid-template-columns: repeat(2, 1fr);
        position: static;
    }

    .gym-hightouch-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gym-process-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .gym-process-connector {
        display: none;
    }

    .gym-process-step {
        text-align: left;
        display: flex;
        gap: 16px;
        align-items: flex-start;
        padding: 0;
    }

    .gym-step-num {
        flex-shrink: 0;
        margin: 0;
    }

    .gym-included-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gym-benefits-list {
        grid-template-columns: 1fr;
    }

    .gym-cta-inner {
        grid-template-columns: 1fr;
    }

    .gym-cta-features {
        grid-template-columns: 1fr;
    }

    .gym-pricing-featured {
        transform: scale(1);
    }

    .gym-compliance-highlights {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile small: max 575px */
@media (max-width: 575px) {

    .gym-banner-bg {
        padding: 140px 0 50px;
    }

    .gym-banner-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .gym-outline-btn {
        text-align: center;
    }

    .gym-banner-trust {
        flex-direction: column;
        gap: 8px;
    }

    .gym-intro-grid,
    .gym-facilities-inner,
    .gym-compliance-inner,
    .gym-why-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .gym-benefits-grid,
    .gym-facility-list {
        grid-template-columns: 1fr;
    }

    .gym-intro-badge {
        position: static;
        display: inline-block;
        margin-top: 16px;
    }

    .gym-services-grid,
    .gym-pricing-grid {
        grid-template-columns: 1fr;
    }

    .gym-why-stats {
        grid-template-columns: 1fr 1fr;
        position: static;
    }

    .gym-hightouch-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gym-process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gym-process-connector {
        display: none;
    }

    .gym-process-step {
        text-align: left;
        display: flex;
        gap: 16px;
        align-items: flex-start;
        padding: 0;
    }

    .gym-step-num {
        flex-shrink: 0;
        width: 44px;
        height: 44px;
        font-size: 15px;
        margin: 0;
    }

    .gym-included-grid {
        grid-template-columns: 1fr;
    }

    .gym-benefits-list {
        grid-template-columns: 1fr;
    }

    .gym-compliance-highlights {
        grid-template-columns: 1fr;
    }

    .gym-cta-inner {
        grid-template-columns: 1fr;
    }

    .gym-cta-features {
        grid-template-columns: 1fr;
    }

    .gym-pricing-featured {
        transform: scale(1);
    }

    .gym-section-title {
        font-size: 24px;
    }

    .gym-benefit-row {
        padding: 18px 20px;
    }

    .gym-included {
        padding: 24px 20px;
    }
}
/* ===========================
   HOME CTA SECTION
=========================== */

.home-cta-section{
    padding:30px 0;
    background:#dcf0ff;
}

.home-cta-wrapper{
    display:grid;
    grid-template-columns:1.5fr 1fr;
    gap:50px;
    align-items:center;
}

.home-cta-tag{
    display:inline-block;
    padding:8px 20px;
    background:#077CEA;
    color:#fff;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.home-cta-content h2{
    font-size:42px;
    line-height:1.3;
    color:#1f2937;
    margin-bottom:20px;
    font-weight:700;
}

.home-cta-content p{
    font-size:17px;
    line-height:1.9;
    color:#666;
    margin-bottom:15px;
}

.home-cta-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:30px;
}

.home-feature-item{
    background:#fff;
    padding:14px 18px;
    border-radius:12px;
    border:1px solid #e5e7eb;
    font-size:15px;
    font-weight:500;
    color:#333;
}

.home-cta-card{
    background:#077CEA;
    padding:40px;
    border-radius:24px;
    box-shadow:0 20px 50px rgba(7,124,234,.20);
}

.home-cta-card-top{
    text-align:center;
    color:#fff;
    margin-bottom:30px;
}

.home-cta-card-top span{
    display:block;
    margin-bottom:10px;
    font-size:14px;
    opacity:.9;
}

.home-cta-card-top h2{
    font-size:32px;
    color:white;
    margin-bottom:15px;
    font-weight:700;
}

.home-cta-card-top p{
    font-size:15px;
    line-height:1.8;
    color:#fff;
}

.home-btn{
    display:block;
    width:100%;
    text-align:center;
    padding:16px;
    border-radius:12px;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
    margin-bottom:15px;
    transition:.3s ease;
}

.home-btn-primary{
    background:#fff;
    color:#077CEA;
}

.home-btn-secondary{
    background:#111827;
    color:#fff;
}

.home-btn-outline{
    border:2px solid rgba(255,255,255,.35);
    color:#fff;
    background:transparent;
}

.home-btn:hover{
    transform:translateY(-4px);
}

/* Tablet */

@media(max-width:991px){

    .home-cta-wrapper{
        grid-template-columns:1fr;
    }

    .home-cta-content h2{
        font-size:34px;
    }

    .home-cta-card{
        max-width:500px;
        margin:auto;
        width:100%;
    }
}

/* Mobile */

@media(max-width:767px){

    .home-cta-section{
        padding:60px 0;
    }

    .home-cta-content h2{
        font-size:28px;
    }

    .home-cta-content p{
        font-size:15px;
    }

    .home-cta-features{
        grid-template-columns:1fr;
    }

    .home-feature-item{
        font-size:14px;
    }

    .home-cta-card{
        padding:25px;
    }

    .home-cta-card-top h2{
        font-size:22px;
    }

    .home-btn{
        padding:14px;
        font-size:15px;
    }
}
/* casestadies */
   .gym-success-section{
    padding:30px 0;
    background:#fff;
}

.gym-success-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.gym-success-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    border-top:4px solid #077CEA;
    transition:.3s ease;
}

.gym-success-card:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(7,124,234,.12);
}

.gym-success-icon{
    width:70px;
    height:70px;
    background:#077CEA;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin-bottom:20px;
}

.gym-success-card h3{
    font-size:24px;
    font-weight:700;
    margin-bottom:25px;
    color:#111827;
}

.gym-success-item{
    margin-bottom:20px;
    padding-bottom:20px;
    border-bottom:1px solid #e5e7eb;
}

.gym-success-item:last-child{
    margin-bottom:0;
    padding-bottom:0;
    border-bottom:none;
}

.gym-success-item h4{
    color:#077CEA;
    font-size:16px;
    font-weight:700;
    margin-bottom:8px;
}

.gym-success-item p{
    color:#666;
    line-height:1.8;
    margin:0;
}

/* Tablet */
@media(max-width:991px){

    .gym-success-grid{
        grid-template-columns:1fr;
    }

    .gym-success-card{
        padding:30px;
    }
}

/* Mobile */
@media(max-width:767px){

    .gym-success-section{
        padding:60px 0;
    }

    .gym-success-card{
        padding:25px;
    }

    .gym-success-card h3{
        font-size:22px;
    }

    .gym-success-icon{
        width:60px;
        height:60px;
        font-size:26px;
    }
}
.gym-cleaning-hero{
    padding:30px 0;
    background:#fff;
}

.gym-cleaning-wrapper{
    display:flex;
    align-items:center;
    gap:60px;
}

.gym-cleaning-image{
    flex:1;
}

.gym-cleaning-image img{
    width:100%;
    border-radius:24px;
    display:block;
}

.gym-cleaning-content{
    flex:1;
}

.section-tag{
    display:inline-block;
    background:#077CEA;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:15px;
}

.gym-cleaning-content h2{
    font-size:42px;
    font-weight:700;
    color:#1f2937;
    margin-bottom:20px;
}

.gym-cleaning-content p{
    color:#666;
    text-align: justify;
    line-height:1.9;
    margin-bottom:25px;
}

.gym-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:30px;
}

.feature-item{
    background:#dcf0ff;
    padding:15px;
    border-radius:12px;
    font-weight:600;
    border-left:4px solid #077CEA;
}

.gym-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn-primary{
    background:#077CEA;
    color:#fff;
    padding:14px 28px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
}

.btn-secondary{
    background:#f1f5f9;
    color:#1f2937;
    padding:14px 28px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
}

@media(max-width:991px){

    .gym-cleaning-wrapper{
        flex-direction:column;
        gap:40px;
    }

    .gym-cleaning-content h2{
        font-size:34px;
    }
}

@media(max-width:767px){

    .gym-cleaning-hero{
        padding:30px 0;
    }

    .gym-cleaning-content h2{
        font-size:28px;
    }

    .gym-features{
        grid-template-columns:1fr;
    }

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

    .btn-primary,
    .btn-secondary{
        text-align:center;
        width:100%;
    }
}