/* 
FitGYM By Templatio
templatio.com/html
License : `https://www.templatemonster.com/licenses/website-templates/`
*/
:root {
    --primary: #03A9F4;
    --bs-primary: #03A9F4;
    --bs-primary-rgb: 3, 169, 244;
    --light: #FFF5F3;
    --dark: #103741;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-color: #121212;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 700;
    letter-spacing: .5px;
    transition: .5s;
    border-radius: 0;
    color: #000000;
}

.btn.btn-primary {
    color: #000000;
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn.btn-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #000000;
}

.btn.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn.btn-outline-primary:hover {
    color: #FFFFFF;
    background-color: var(--primary);
    border-color: var(--primary);
}

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

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

.border-primary {
    border-color: var(--primary) !important;
}
.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0;
}

.rounded-pill {
    border-radius: 0 !important;
}


/*** Heading ***/
h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
}

h5,
h6,
.h5,
.h6 {
    font-weight: 600;
}

.font-secondary {
    font-family: 'Poppins', sans-serif;
}


/*** Navbar ***/
.navbar .navbar-nav .nav-link {
    padding: 30px 15px;
    color: var(--dark);
    font-weight: 500;
    outline: none;
}

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

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: calc(100% - 15px);
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-carousel::before,
.header-carousel::after,
.page-header::before,
.page-header::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 10px;
    top: 0;
    left: 0;
    background: url(../img/bg-header-top.png) center center repeat-x;
    z-index: 1;
}

.header-carousel::after,
.page-header::after {
    height: 19px;
    top: auto;
    bottom: 0;
    background: url(../img/bg-header-bottom.png) center center repeat-x;
}

.header-carousel::before,
.page-header::before {
    content: none;
    height: 0;
}
.header-carousel .owl-carousel-item {
    position: relative;
    min-height: 700px;
}

.header-carousel .owl-carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}

/* Navigation header (navbar) color scheme */
.navbar.bg-white { 
    background-color: var(--primary) !important; 
}
.navbar.bg-white .navbar-brand .text-primary,
.navbar.bg-white .navbar-brand i {
    color: #ffffff !important;
}
.navbar.bg-white .navbar-nav .nav-link {
    color: #ffffff;
}
.navbar.bg-white .navbar-nav .nav-link:hover,
.navbar.bg-white .navbar-nav .nav-link.active {
    color: #ffffff;
    opacity: 0.85;
}
.navbar.bg-white .btn.btn-primary {
    background-color: #ffffff;
    border-color: #ffffff;
    color: var(--primary);
}
.navbar.bg-white .btn.btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 0.85);
}
.navbar.bg-white .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.7);
}
.navbar.bg-white .navbar-toggler .navbar-toggler-icon {
    filter: invert(1);
}

.dropdown-menu .dropdown-item {
    color: var(--dark);
}
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item.active {
    background-color: rgba(var(--bs-primary-rgb), 0.12);
    color: var(--dark);
}
.page-header .breadcrumb .breadcrumb-item a {
    color: var(--primary) !important;
}

.learn-link {
    font-weight: 600;
    color: #103741;
    text-decoration: none;
}
.learn-link:hover {
    color: #103741;
    opacity: 1;
}

.contact-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(16, 55, 65, 0.08);
    padding: 24px;
}
.soft-blue {
    background: #E6F7FE;
}
.icon-pill {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}
.accent-blue {
    background-color: var(--primary);
}
.mini-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(16, 55, 65, 0.06);
}
.contact-card.soft-blue {
    background: #103741;
    color: #ffffff;
}
.contact-card.soft-blue h1,
.contact-card.soft-blue h2,
.contact-card.soft-blue h3,
.contact-card.soft-blue h4,
.contact-card.soft-blue h5,
.contact-card.soft-blue h6,
.contact-card.soft-blue p,
.contact-card.soft-blue .info-item,
.contact-card.soft-blue .info-item > div {
    color: #ffffff !important;
}
.contact-card.soft-blue .mini-card {
    color: #103741;
}
.contact-card.soft-blue .mini-card .text-muted {
    color: #6c757d !important;
}
.contact-card.soft-blue .icon-pill,
.contact-card.soft-blue .icon-pill i {
    color: #103741 !important;
}
.map-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(16, 55, 65, 0.08);
    padding: 8px;
}
.contact-card .form-control {
    border-radius: 12px;
}
.error-section .error-code {
    font-size: 120px;
    font-weight: 700;
    color: rgba(var(--bs-primary-rgb), 0.25);
    line-height: 1;
}
/*** Facility ***/
.facility-item .facility-icon {
    position: relative;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-item .facility-icon::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-icon span {
    position: absolute;
    content: "";
    width: 15px;
    height: 30px;
    top: 0;
    left: 0;
    border-radius: 50%;
}

.facility-item .facility-icon span:last-child {
    left: auto;
    right: 0;
}

.facility-item .facility-icon i {
    position: relative;
    z-index: 2;
}

.facility-item .facility-text {
    position: relative;
    min-height: 250px;
    padding: 30px;
    border-radius: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
}

.facility-item .facility-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-text * {
    position: relative;
    z-index: 2;
}

.facility-item:hover .facility-icon::before,
.facility-item:hover .facility-text::before {
    background: transparent;
}

.facility-item * {
    transition: .5s;
}

.facility-item:hover * {
    color: #FFFFFF !important;
}


/*** About ***/
.about-img img {
    transition: .5s;
}

.about-img img:hover {
    background: var(--primary) !important;
}


/*** Classes ***/
.classes-item {
    transition: .5s;
}

.classes-item:hover {
    margin-top: -10px;
}


/*** Team ***/
.team-item .team-text {
    position: absolute;
    width: 250px;
    height: 250px;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #FFFFFF;
    border: 17px solid var(--light);
    border-radius: 250px;
    transition: .5s;
}

.team-item:hover .team-text {
    border-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    background: var(--primary);
    border-radius: 45px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
    color: #FFFFFF;
}

 


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    background: var(--primary);
    border-radius: 45px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    background: var(--dark);
    color: #FFFFFF;
}

.footer {
    background-color: #121212 !important;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.container-xxl.bg-white {
    background-color: #ffffff;
}

.footer h3 {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .2px;
    margin-bottom: 0.75rem !important;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 16px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary) !important;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .container.py-5 {
    padding-bottom: 0 !important;
}

.footer .copyright {
    padding: 25px 0 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: #FFFFFF;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--primary) !important;
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/* Free Trial form focus/hover: use black instead of theme red */
.trial-panel .form-control:hover,
.trial-panel .form-select:hover {
    box-shadow: 0 0 0 0.1rem rgba(0, 0, 0, 0.08);
}
.trial-panel .form-control:focus,
.trial-panel .form-select:focus {
    border-color: #000000 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.2) !important;
}
.trial-panel .form-check-input:checked {
    background-color: #000000;
    border-color: #000000;
}
.trial-panel .form-check-input:focus {
    border-color: #000000 !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.2) !important;
}

/* Ensure floating labels render correctly on selects in the trial panel */
.trial-panel .form-floating > .form-select {
    padding-top: 1.625rem;
    padding-bottom: .625rem;
}
.trial-panel .form-floating > .form-select ~ label {
    opacity: .65;
    transform: scale(.85) translateY(-.5rem) translateX(.15rem);
    z-index: 3;
    pointer-events: none;
    background: transparent;
    padding: 0 .25rem;
}

.program-card {
    position: relative;
    padding: 32px;
    border-radius: 26px;
    box-shadow: 0 8px 24px rgba(16, 55, 65, 0.08);
    transition: .3s;
}
.program-card:hover {
    transform: translateY(-6px);
}
.program-card.soft-green {
    background: #EAF6EE;
}
.program-card.soft-pink {
    background: #FDE8E7;
}
.program-card.soft-purple {
    background: #EAE7FF;
}
.program-card .icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #ffffff;
}
.program-card .accent-green {
    background-color: #28a745;
}
.program-card .accent-pink {
    background-color: #ff6f61;
}
.program-card .accent-purple {
    background-color: #6f6cff;
}
.program-card .learn-link {
    font-weight: 600;
    color: #000000;
    text-decoration: none;
}
.program-card .learn-link:hover {
    color: #000000;
    opacity: 1;
}

.classes-section {
    background: #ffffff;
    border-radius: 24px;
}
.classes-section .text-white {
    color: var(--dark) !important;
}
.classes-section .text-white-50 {
    color: #6c757d !important;
}
.classes-section .underline {
    background-image: linear-gradient(transparent 65%, rgba(var(--bs-primary-rgb), 0.25) 0);
    background-size: 100% 1.25em;
    background-repeat: no-repeat;
}
.class-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(16, 55, 65, 0.08);
    overflow: hidden;
}
.class-card.featured {
    background: #FFF9DB;
    border: 2px solid #FFE58F;
}
.class-image {
    position: relative;
}
.class-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.date-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: #000000;
    border-radius: 10px;
    padding: 6px 10px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}
.classes-section .date-badge {
    color: #000000;
}
.class-body {
    padding: 20px;
}
.class-title {
    color: var(--dark);
}
.location i {
    color: var(--primary);
}
.rating i {
    margin-right: 3px;
}
.classes-section .btn.btn-primary.btn-sm {
    font-weight: 600;
}
.class-actions {
    flex-wrap: nowrap;
    gap: 12px;
}
.class-actions .btn {
    white-space: nowrap;
}
.class-actions .reviews,
.class-actions .rating {
    white-space: nowrap;
    flex-shrink: 0;
}

.blog-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(16, 55, 65, 0.08);
    overflow: hidden;
    transition: .3s;
}
.blog-card:hover {
    transform: translateY(-6px);
}
.blog-image {
    position: relative;
}
.blog-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.blog-body {
    padding: 20px;
}
.blog-title {
    color: var(--dark);
}
.blog-meta {
    color: #6c757d;
    font-size: 14px;
}
.read-link {
    font-weight: 600;
    color: #000000;
    text-decoration: none;
}
.read-link:hover {
    color: #000000;
    opacity: 1;
}

.article-hero img {
    object-fit: cover;
}
.article-card {
    background: #F7F7F7;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(16, 55, 65, 0.06);
    padding: 24px;
    color: #000000;
}
.article-meta {
    color: #6c757d;
    font-size: 14px;
}
.article-card .article-meta {
    color: #000000;
}
.article-content p {
    line-height: 1.8;
}
.article-nav .btn {
    white-space: nowrap;
}
.article-nav .btn-outline-primary {
    color: #000000;
    border-color: #000000;
    background-color: transparent;
}
.article-nav .btn-outline-primary:hover,
.article-nav .btn-outline-primary:focus {
    color: #000000;
    border-color: #000000;
    background-color: transparent;
}
.section-label {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(var(--bs-primary-rgb), 0.15);
    color: var(--primary);
    font-weight: 600;
}
.coaches-header .section-label {
    color: var(--dark);
    background: rgba(var(--bs-primary-rgb), 0.25);
}
.recent-post {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.recent-post:last-child {
    border-bottom: none;
}
.recent-thumb {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}
.underline-primary {
    background-image: linear-gradient(transparent 70%, rgba(3, 169, 244, 0.25) 0);
    background-size: 100% 1.2em;
    background-repeat: no-repeat;
}
.teacher-card .name {
    font-weight: 700;
}
.teacher-card .role {
    color: #6c757d;
}
.teacher-blob {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #EAE7FF;
}
.teacher-blob.soft-purple {
    background: #EAE7FF;
}
.teacher-img {
    width: 84%;
    height: 84%;
    object-fit: cover;
    object-position: 50% 0%;
    border-radius: 50%;
}
.teacher-card .teacher-img {
    display: block;
}
@media (max-width: 576px) {
    .teacher-blob {
        width: 230px;
        height: 230px;
    }
    .teacher-img {
        width: 82%;
        height: 82%;
        object-position: 50% 0%;
    }
}
.decor-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #FFE58F;
    border-radius: 50%;
}
.decor-dot.dot-a { top: 18px; left: 18px; }
.decor-dot.dot-b { right: 24px; top: 50%; transform: translateY(-50%); }
.decor-dot.dot-c { bottom: 20px; left: 28px; }
:root {
    --primary: #B8FF00;
    --bs-primary: #B8FF00;
    --bs-primary-rgb: 184, 255, 0;
    --dark: #0D0D0D;
}
.fg-navbar {
    background-color: #0D0D0D;
}
.fg-navbar.sticky-top { top: 0 !important; }
.fg-navbar.fg-transparent { background-color: transparent; }
.fg-navbar.fg-solid { background-color: #0D0D0D; }
.fg-navbar .navbar-brand .fg-brand {
    color: var(--primary);
    font-weight: 800;
}
.fg-logo { height: 56px; width: auto; display: block; }
.fg-navbar .navbar-nav .nav-link {
    color: #ffffff;
}
.fg-navbar .navbar-nav .nav-link:hover,
.fg-navbar .navbar-nav .nav-link.active {
    color: var(--primary);
    opacity: 1;
}

@media (max-width: 991.98px) {
    .fg-navbar .navbar-collapse {
        background: #0D0D0D;
        padding: 15px;
        border-radius: 12px;
        margin-top: 0;
        border-top: none;
    }
}

@media (max-width: 991.98px) {
    .fg-navbar.menu-open {
        background-color: #0D0D0D !important;
        transition: background-color 0.3s ease;
    }
}

.fg-hero {
    position: relative;
    min-height: 680px;
    margin-top: -96px;
}
.fg-hero-item {
    position: relative;
    min-height: 680px;
}
.fg-hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    z-index: 0;
}
.fg-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.65), rgba(0,0,0,0.25));
    z-index: 1;
}
.fg-hero .container { position: relative; z-index: 2; }
.fg-hero .row.h-100 { align-items: flex-start; padding-top: 160px; }

@media (max-width: 768px) {
    .fg-hero .row.h-100 {
        padding-top: 120px;
    }
}
.fg-hero-title {
    color: #ffffff;
    font-size: 64px;
    font-weight: 800;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.4px;
}
@media (max-width: 768px) {
    .fg-hero {
        min-height: 560px;
    }
    .fg-hero-title {
        font-size: 42px;
    }
    .fg-hero .row.h-100 { padding-top: 120px; }
.contact-hero {
    object-position: 50% 22%;
}
    .fg-hero .row.h-100 { padding-top: 120px; }
}
.fg-hero-social {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.fg-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    transition: .3s ease;
}
.fg-social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}
.fg-page-hero {
    position: relative;
    min-height: 420px;
    margin-top: -96px;
}
.fg-page-hero .container { position: relative; z-index: 2; }
.fg-page-hero .row.h-100 { padding-top: 120px; align-items: flex-end; }
.fg-page-title {
    color: #ffffff;
    font-size: 56px;
    font-weight: 800;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.4px;
}
.fg-page-subtitle {
    color: rgba(255,255,255,0.85);
    margin-bottom: 8px;
}
.about-hero {
    object-position: top;
}
.about-hero-section .col-12 {
    transform: translateY(14px);
    padding-top: 8px;
}
@media (max-width: 768px) {
    .about-hero-section .col-12 {
        transform: translateY(8px);
    }
}
.programs-hero {
    object-position: 50% 44%;
}
.contact-hero {
    object-position: 50% 12%;
}
@media (max-width: 768px) {
    .contact-hero {
        object-position: 50% 18%;
    }
}
.fg-section-title {
    font-weight: 800;
    letter-spacing: .3px;
}
.fg-splash-title {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
}
.fg-splash-callout {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: none;
    overflow: hidden;
}
.fg-splash-callout h3 {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
}
.fg-splash-decor {
    position: absolute;
    left: -20px;
    top: 18px;
    width: 70%;
    height: 70%;
    background: rgba(var(--bs-primary-rgb), 0.2);
    border-radius: 22px;
    transform: skewX(-16deg);
    z-index: 0;
}
.fg-splash-callout > * { position: relative; z-index: 1; }
.fg-accent-stripes {
    display: inline-flex;
    gap: 8px;
    margin-bottom: 12px;
}
.fg-accent-stripes span {
    width: 22px;
    height: 8px;
    background: var(--primary);
    border-radius: 6px;
    display: inline-block;
}
.fg-splash-media { border-radius: 22px; overflow: hidden; }
.fg-splash-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
    display: block;
}
@media (max-width: 768px) {
    .fg-splash-img { height: 260px; }
}
.fg-methodology .method-icon {
    color: #103741;
}
.fg-square-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    background: #f8f9fa;
    padding: 12px;
    display: block;
}
.fg-about-text {
    max-width: 860px;
    margin: 0 auto;
    color: #6c757d;
    font-size: 1.05rem;
    line-height: 1.75;
}
.schedule-table-wrapper {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(16,16,16,0.08);
    overflow: hidden;
}
.schedule-table {
    width: 100%;
    border-collapse: collapse;
}
.schedule-table thead th {
    background: #f8f9fa;
    padding: 14px 16px;
    font-weight: 700;
    color: #103741;
}
.schedule-table tbody td {
    padding: 14px 16px;
    border-top: 1px solid rgba(16,55,65,0.08);
}
.schedule-table tbody tr:nth-child(even) td {
    background: #FCFDF9;
}
.coach-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(16,16,16,0.08);
    padding: 16px;
}
.coach-photo {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: top;
    border-radius: 12px;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.gallery-item { border-radius: 16px; overflow: hidden; }
.gallery-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: transform .3s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.04); }
@media (max-width: 992px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
    .gallery-grid { grid-template-columns: 1fr; }
}
.fg-location {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(16,16,16,0.08);
    overflow: hidden;
    height: 100%;
}
.fg-map {
    width: 100%;
    height: 100%;
    min-height: 320px;
    border: 0;
    display: block;
}
.location-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(16,16,16,0.08);
}
.hours li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(16,55,65,0.08);
}
.hours li:last-child { border-bottom: 0; }
.faq-item {
    background: #ffffff;
    border-radius: 14px;
    margin-bottom: 12px;
    box-shadow: 0 8px 24px rgba(16,16,16,0.06);
    padding: 0 16px;
}
.faq-item summary {
    cursor: pointer;
    padding: 16px 0;
    font-weight: 600;
    color: #103741;
    list-style: none;
}
.faq-item[open] summary {
    border-bottom: 1px solid rgba(16,55,65,0.08);
}
.faq-item .faq-body {
    padding: 12px 0 16px 0;
    color: #6c757d;
}
.fg-cta {
    background: #E9FFB8;
    border: 2px solid var(--primary);
    border-radius: 18px;
}
.fg-cta { min-height: 260px; }
.fg-cta-media { flex: 0 0 340px; }
.fg-cta-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}
.fg-cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.fg-cta-features li {
    background: #ffffff;
    border: 1px solid rgba(16,55,65,0.12);
    border-radius: 999px;
    padding: 6px 12px;
    font-weight: 600;
    color: #103741;
}
.fg-hero-panel {
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.2);
    color: #ffffff;
    border-radius: 14px;
    padding: 20px;
    backdrop-filter: blur(2px);
}
.fg-panel-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: .4px;
    margin-bottom: 10px;
}
.fg-panel-list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px 0;
}
.fg-panel-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    color: #e9ecef;
}
.fg-panel-list i { color: var(--primary); }
.fg-stats {
    display: flex;
    gap: 12px;
}
.fg-stat {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 10px;
    padding: 10px 12px;
    text-align: center;
    min-width: 100px;
}
.fg-stat .value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    line-height: 1;
    color: #ffffff;
}
.fg-stat .label {
    font-size: 12px;
    color: #d1d5db;
}
@media (min-width: 992px) {
    .fg-hero-panel { margin-top: 40px; }
}
.feature-card {
    padding: 28px;
    border-radius: 22px;
    box-shadow: 0 8px 24px rgba(16,16,16,0.08);
    background: #F2FFD1;
    transition: .3s;
}
.feature-card:hover {
    transform: translateY(-6px);
}
.icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #000000;
    background: var(--primary);
}
.accent-green {
    background: var(--primary);
}
.showcase-card {
    padding: 18px;
    border-radius: 18px;
    background: #f8f9fa;
    box-shadow: 0 8px 24px rgba(16,16,16,0.08);
}
.media-wrap {
    border-radius: 18px;
    overflow: hidden;
}
.media-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.facility-card {
    background: #ffffff;
}
.facility-media {
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 12px;
}
.facility-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.pricing-card {
    background: #f8f9fa;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(16,16,16,0.08);
}
.pricing-card.featured {
    background: #E9FFB8;
    border: 2px solid var(--primary);
}
.pricing-card h5 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 700;
    letter-spacing: .5px;
}
.price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #0D0D0D;
}
#pricing .fg-section-title {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    letter-spacing: .3px;
}
.testimonial-card {
    background: #f8f9fa;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(16,16,16,0.08);
}
.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}
.btn.btn-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #000000;
}
