/* ==========================================
   IMPORTS & ROOT VARIABLES
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Oswald:wght@200..700&display=swap');

:root {
    --primary-color: #580d0c;
    --accent-color: white;
    --bg-dark: #000000;
    --card-bg: #111111;
    --text-muted: #777;
    --border-color: #222;
}

.navbar-brand img {
    transition: all 0.3s ease;
}


/* ==========================================
   GLOBAL STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    background-color: var(--bg-dark);
    color: #ffffff;
    overflow-x: hidden;
    font-style: italic;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Oswald", sans-serif;
    line-height: 1.2;
}

.navbar-nav {
    background: rgba(255, 255, 255, 0.238);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    /* Safari support */
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.597);
}


button {
    font-family: sans-serif;
    font-style: italic;
    cursor: pointer;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.maroon-text {
    color: var(--primary-color);
    text-shadow: 0px 0px 3px white;
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
    transition: all 0.35s ease;
    padding: 1.5rem 2.5rem;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    padding: 0.75rem 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 5px solid var(--primary-color);
}

.nav-link {
    color: #fff !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin: 0 10px;
    transition: color 0.3s ease;
    font-size: 18px;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
    text-shadow: 0px 0px 1px white;
}



/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    /* height: 100vh; */
    /* min-height: 600px; */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 160px 0;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-bg.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 50px 20px 0 50px;
    width: 100%;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero p {
    color: #ccc;
    margin: 2rem 0;
    max-width: 500px;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Hero Bottom Elements */
.hero-bottom {
    position: absolute;
    bottom: 40px;
    width: 100%;
    padding: 0 70px;
    z-index: 2;
}

.members-stack {
    display: flex;
    align-items: center;
}

.members-stack img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #000;
    margin-left: -12px;
    transition: transform 0.3s ease;
}

.members-stack img:first-child {
    margin-left: 0;
}

.members-stack img:hover {
    transform: scale(1.1);
    z-index: 10;
}

.testimonial-box {
    max-width: 300px;
    font-size: 0.9rem;
}

.dots {
    display: flex;
    gap: 6px;
}

.dots .dot {
    width: 24px;
    height: 24px;
    background: #555;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dots .dot.active {
    background: #fff;
    width: 24px;
    height: 24px;
}

.video-card {
    width: 250px;
    height: 150px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-play-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translate(-50%, -50%) scale(1.1);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn-custom {
    padding: 1rem 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 0;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

.btn-primary-custom {
    background: var(--primary-color);
    color: #fff;
    border: none;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.btn-primary-custom:hover {
    background: #780f0e;
}

.btn-primary {
    background: #fff;
    color: #000;
    padding: 14px 22px;
    font-weight: 700;
    border-radius: 30px;
    border: none;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-color);
    color: white;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.section-label {
    background: #fff;
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    display: none;
}

.section-label i {
    transform: rotate(235deg);
}

.info-card {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 20px;
    height: 100%;
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.icon-box:hover {
    background: var(--primary-color);
    color: white;
}

.img-rounded {
    border-radius: 20px;
    width: 100%;
    object-fit: cover;
}

/* ==========================================
   SCHEDULE SECTION
   ========================================== */
.schedule-wrapper {
    background: linear-gradient(145deg, #0d0d0f, #18181b);
    border-radius: 20px;
    overflow: hidden;
}



.schedule-box {
    border: 1px solid var(--primary-color);
    padding: 2.5rem;
    margin-top: 3rem;
    transition: all 0.3s ease;
    position: relative;
}

.schedule-box:hover {
    background: rgba(88, 13, 12, 0.1);
}

.schedule-time h5 {
    font-weight: 700;
}

.schedule-time p {
    color: var(--primary-color);
    font-weight: 700;
}

/* ==========================================
   BENEFITS SECTION
   ========================================== */

.section-padding {
    padding: 100px 0;
}

section {
    overflow-x: hidden;
}

.benefits-section {
    overflow: hidden;
}

.benefits-header {
    text-align: center;
    margin-bottom: 80px;
}

.benefits-header .eyebrow {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.benefits-header h2 {
    font-size: clamp(28px, 5vw, 36px);
    font-weight: 700;
    letter-spacing: 2px;
}

.benefits-header h2 span {
    color: var(--accent-color);
    margin-left: 8px;
}

.benefits-content {
    margin-top: 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 100px;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-image {
    position: absolute;
    left: 143px;
    z-index: -1;

}

.benefits-image img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 20px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-item .icon {
    font-size: 22px;
    color: var(--accent-color);
    min-width: 32px;
    margin-top: 4px;
}

.benefit-item h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.benefit-item p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
#about {
    background: radial-gradient(circle at top, #111, #000);
}

.services-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    padding: 0 40px;
}

.services-left {
    position: sticky;
    top: 150px;
    height: fit-content;
}

.services-left .section-eyebrow {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #ccc;
    text-transform: uppercase;
}

.services-left h2 {
    font-size: clamp(32px, 6vw, 46px);
    font-weight: 800;
    line-height: 1.1;
    margin: 20px 0;
}

.services-left .accent {
    color: var(--accent-color);
}

.services-left p {
    max-width: 420px;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 35px;
}

.services-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.services-right {
    display: flex;
    flex-direction: column;
}

.service-item {
    position: relative;
    padding: 40px 0;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-item::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-item:hover::after,
.service-item.active::after {
    transform: scaleX(1);
}

.service-text {
    z-index: 3;
}

.service-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.service-text p {
    color: #aaa;
    max-width: 420px;
}

.service-number {
    font-size: clamp(60px, 12vw, 110px);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.12);
    line-height: 1;
}

.hover-cards {
    position: absolute;
    right: 120px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 12px;
    z-index: -1;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease;
}

.hover-cards img {
    width: 70px;
    height: 90px;
    object-fit: cover;
    border-radius: 12px;
    transform: rotate(-6deg);
}

.hover-cards img:nth-child(2) {
    transform: rotate(4deg) translateY(-10px);
}

.hover-cards img:nth-child(3) {
    transform: rotate(-2deg) translateY(10px);
}

.service-item.has-cards:hover .hover-cards {
    opacity: 1;
}

/* ==========================================
   APPOINTMENT SECTION
   ========================================== */
.appointment-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

.fee-structure {
    position: relative;
    background: url('assets/images/DSC00277.JPG') center/cover no-repeat;
    color: #fff;
    padding: 100px 80px;
}

.fee-structure .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.837);
}

.tag {
    font-size: 14px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
}

.fee-structure h2 {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 800;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.fee-structure p {
    position: relative;
    z-index: 1;
    font-style: italic;
}

.icon-grid {
    display: flex;
    gap: 30px;
    margin-top: 80px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}

.icon-card {
    width: 120px;
    height: 120px;
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-card i {
    font-size: 40px;
}

.icon-card:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.appointment-form {
    position: relative;
    background: url('assets/images/gym-bg.jpg') center/cover no-repeat;
}

.appointment-form .overlay {
    position: absolute;
    inset: 0;
    background: var(--primary-color);
    opacity: 0.95;
}

.form-content {
    position: relative;
    z-index: 2;
    padding: 100px 80px;
    color: #fff;
}

.form-content h2 {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 800;
    margin-bottom: 50px;
}

.form-content h2 span {
    color: #000;
}

form input,
form select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    padding: 15px 0;
    margin-bottom: 30px;
    color: #fff;
    font-size: 16px;
    outline: none;
}

form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

form input:focus,
form select:focus {
    border-bottom-color: #000;
}

form select {
    color: #fff;
}

form option {
    color: #000;
}

form button {
    background: #111;
    border: none;
    padding: 14px 50px;
    border-radius: 50px;
    color: #fff;
    letter-spacing: 2px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
}

form button:hover {
    background: #000;
    transform: translateY(-2px);
}

/* ==========================================
   FEATURED SERVICES
   ========================================== */
.featured-services {
    background: #000;
    text-align: center;
}

.section-tag {
    color: #888;
    letter-spacing: 3px;
    font-size: 13px;
    display: block;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title {
    color: #fff;
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    height: 520px;
    overflow: hidden;
    cursor: pointer;
    border-radius: 10px;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.service-card:hover img {
    transform: scale(1.08);
}

.service-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.1));
}

.card-content {
    position: absolute;
    bottom: 40px;
    left: 30px;
    text-align: left;
    z-index: 2;
}

.card-content .category {
    color: #aaa;
    font-size: 12px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.card-content h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

/* ==========================================
   TRAINERS SECTION
   ========================================== */
.trainers-section {
    position: relative;
    background: #000000;
    text-align: center;
    overflow: hidden;
}

.dark-bg-text {
    position: absolute;
    top: 30%;
    left: 33%;
    transform: translate(-50%, -50%);
    font-size: clamp(60px, 15vw, 160px);
    font-weight: 900;
    letter-spacing: 10px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(229, 229, 229, 0.23);
    z-index: 1;
    pointer-events: none;
    white-space: nowrap;
}

.trainers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
}

.trainer-card {
    text-align: center;
}

.trainer-img {
    position: relative;
    background: #e6e6e6;
    padding: 10px;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

.trainer-img img {
    border-radius: 15px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.trainer-card:hover .trainer-img img {
    transform: scale(1.05);
}

.plus-btn {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: #fff;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: none;
}

.plus-btn:hover {
    transform: rotate(90deg) scale(1.1);
}

.trainer-card h4 {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 700;
}

.trainer-card p {
    font-size: 13px;
    color: #777;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
    background: #0b0b0b;
    color: #bbb;
}

.footer-container {
    max-width: 1300px;
    margin: auto;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
}

.logo {
    color: #fff;
    font-size: 28px;
    font-weight: 800;
}

.logo span {
    color: var(--primary-color);
}

.brand p {
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    display: grid;
    place-items: center;
    color: #fff;
    transition: 0.3s ease;
    border-radius: 4px;
    background: var(--primary-color);
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}


.footer-bottom {
    border-top: 1px solid #1c1c1c;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Large Tablets & Small Desktops (992px - 1199px) */
@media (max-width: 1199px) {
    .services-container {
        gap: 60px;
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 0;
        width: 100%;
        padding-right: calc(var(--bs-gutter-x) * .5);
        padding-left: calc(var(--bs-gutter-x) * .5);
        margin-right: auto;
        margin-left: auto;
    }

    .hover-cards {
        right: 80px;
    }

    .hover-cards img {
        width: 70px;
        height: 100px;
    }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {

    /* Navbar */
    .navbar {
        padding: 1rem 1.5rem;
        background: #00000070;
        backdrop-filter: blur(5px);
    }

    .navbar.scrolled {
        padding: 0.5rem 1.5rem;
    }

    .nav-link {
        margin: 5px 0;
    }

    /* Hero */
    .hero {
        padding: 185px 0 120px 0;
    }

    .hero-bottom {
        position: static;
        padding: 2rem;
        margin-top: 2rem;
    }

    .video-card {
        width: 200px;
        height: 120px;
    }



    .schedule-box {
        padding: 2rem;
    }

    /* Benefits */
    .benefits-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .benefits-image {
        display: none;
    }

    /* Services */
    .services-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .services-left {
        position: static;
    }

    .hover-cards {
        display: none;
    }

    /* Appointment */
    .appointment-section {
        grid-template-columns: 1fr;
    }

    .fee-structure,
    .form-content {
        padding: 60px 40px;
    }

    .icon-grid {
        justify-content: center;
    }

    /* Featured Services */
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .service-card {
        height: 420px;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile Landscape & Small Tablets (576px - 767px) */
@media (max-width: 767px) {

    /* Hero */
    .hero-content {
        padding: 30px 19px 0 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .navbar-nav {
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: blur(3px);
        padding: 44px 0;
        border-radius: 0;
        border: none;
    }

    .hero p {
        max-width: 100%;
    }

    .hero-bottom {
        padding: 1.5rem;
        display: none;
    }

    .members-stack img {
        width: 35px;
        height: 35px;
    }
    
    .benefits-content{
        padding-right:45px !important;
    }

    .testimonial-box {
        max-width: 100%;
    }

    /* Buttons */
    .btn-custom {
        padding: 0.875rem 2rem;
    }

    .services-actions {
        flex-direction: column;
    }

    .services-actions .btn-primary,
    .services-actions .btn-outline {
        width: 100%;
        justify-content: center;
    }

    /* Info Cards */
    .info-card {
        padding: 2rem;
    }


    .schedule-box {
        padding: 1.5rem;
        margin-top: 2
    }

    .section-padding {
        padding: 70px 0 !important;
    }

    .bg-text {
        display: none;
    }

    .breadcrumb-dark {
        padding: 250px 0 150px 10px !important;
    }

    /* Creating the bottom border animation */
    .nav-link::before {
        content: '';
        /* Empty content for the pseudo-element */
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0%;
        height: 2px;
        /* Adjust thickness of the border */
        background-color: var(--primary-color);
        transition: width .5s ease;
        /* Adjust duration for smooth animation */
    }

    .nav-link:hover::before,
    .nav-link.active::before {
        width: 100%;
        /* This will expand the border from left to right */
    }

    .class-badge {
        left: 30% !important;
    }

}

.breadcrumb-dark {
    padding: 200px 0 170px 0;
    color: #fff;
}

.breadcrumb-dark h1 {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb-item a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item.active {
    color: #fff;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: var(--primary-color);
    padding: 0 8px;
}

/* SECTION */
.story-section {
    position: relative;
    overflow: hidden;
    background: var(--accent-color);
}

/* BACKGROUND TEXT */
.bg-text {
    position: absolute;
    top: -138px;
    left: -25px;
    font-size: 140px;
    font-weight: 800;
    letter-spacing: 8px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 0, 0, 0.23);
    z-index: 0;
    pointer-events: none;
}



/* TEXT */
.story-section p {
    color: #777;
    font-size: 15px;
    line-height: 1.8;
    max-width: 520px;
    position: relative;
    z-index: 2;
}

/* IMAGE */
.story-image {
    width: 100%;
    height: 100%;
}

.story-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 2px;
}

/* RESPONSIVE */
@media (max-width: 991px) {


    .bg-text {
        font-size: 90px;
        top: -20px;
    }


    .story-image img {
        height: auto;
        margin-top: 40px;
    }
}

@media (max-width: 575px) {
    .bg-text {
        font-size: 70px;
    }

}


/* blogs page */
/* SECTION */
.blog-section {
    background: white;
}

/* CARD */
.blog-card {
    background: transparent;
    color: #fff;
}

/* IMAGE */
.blog-img {
    position: relative;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover img {
    transform: scale(1.08);
}

/* DATE BOX */
.date-box {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #fff;
    color: #000;
    width: 50px;
    height: 50px;
    text-align: center;
    font-weight: 700;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.date-box span {
    font-size: 16px;
    line-height: 1;
}

.date-box small {
    font-size: 10px;
    letter-spacing: 1px;
}

/* CONTENT */
.blog-content {
    padding-top: 25px;
}

.blog-content h4 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: var(--primary-color);
}

.blog-content a {
    font-size: 15px;
    font-weight: 800;
    color: black;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
}

.blog-content a:hover {
    color: #580d0c;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .blog-img img {
        height: 200px;
    }
}


/* blog-detail */
/* ================= BLOG DETAIL ================= */
.blog-detail-section {
    background: #fff;
}

/* FEATURE IMAGE */
.blog-featured-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 40px;
}

/* META */
.blog-meta {
    display: flex;
    gap: 25px;
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.blog-meta span {
    font-weight: 500;
}

/* TITLE */
.blog-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.3;
}

/* CONTENT */
.blog-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 25px;
}

.blog-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin: 40px 0 15px;
    color: #111;
}

.blog-content blockquote {
    padding: 30px;
    background: #f8f8f8;
    border-left: 4px solid var(--primary-color);
    font-style: italic;
    color: #333;
    margin: 40px 0;
}

/* TAGS */
.blog-tags {
    margin-top: 50px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-tags a {
    padding: 8px 18px;
    border: 1px solid #ddd;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
    color: #000;
    transition: 0.3s;
}

.blog-tags a:hover {
    background: #000;
    color: #fff;
}

/* SIDEBAR */
.blog-sidebar {
    padding-left: 30px;
}

.sidebar-box {
    margin-bottom: 40px;
}

.sidebar-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.sidebar-post {
    display: flex;
    gap: 20px;
    margin: 10px;
}


.sidebar-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

/* SIDEBAR POST CONTENT */
.sidebar-post-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.sidebar-post-content a {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    line-height: 1.4;
}

.sidebar-post-content a:hover {
    color: var(--primary-color);
}

.sidebar-post-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .blog-featured-img img {
        height: 320px;
    }

    .blog-title {
        font-size: 34px;
    }

    .blog-sidebar {
        padding-left: 0;
        margin-top: 60px;
    }
}

@media (max-width: 575px) {
    .blog-title {
        font-size: 28px;
    }
}

/* gallery-page */
/* ================= GALLERY SECTION ================= */
.gallery-section {
    background: white;
}

/* Masonry Layout */
.masonry-gallery {
    column-count: 3;
    column-gap: 25px;
}

/* Gallery Item */
.gallery-item {
    position: relative;
    margin-bottom: 25px;
    break-inside: avoid;
    overflow: hidden;
    /* border-radius: 6px; */
}

/* Image */
.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

/* Hover Zoom */
.gallery-item:hover img {
    transform: scale(1.08);
}

/* Overlay */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.15));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Text */
.gallery-overlay h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
    .masonry-gallery {
        column-count: 2;
    }
}

@media (max-width: 768px) {
    .masonry-gallery {
        column-count: 1;
    }
}

/* ================= CONTACT SECTION ================= */
.contact-section {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

/* Background text */
.contact-bg-text {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 160px;
    font-weight: 900;
    letter-spacing: 10px;
    color: transparent;
    -webkit-text-stroke: 1px #e5e5e5;
    z-index: 0;
    pointer-events: none;
}

/* Left Content */
.contact-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    color: black;
}

.contact-desc {
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 420px;
    position: relative;
    z-index: 2;
}


/* ================= FORM ================= */
.contact-form {
    background: transparent;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid #cfcfcf;
    background: white;
    font-size: 13px;
    letter-spacing: 1px;
    outline: none;
    transition: 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #555;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #000;
}


form input {
    color: black !important;

}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .contact-bg-text {
        font-size: 100px;
    }

    .contact-title {
        font-size: 38px;
    }
}

@media (max-width: 575px) {
    .contact-bg-text {
        display: none;
    }

    .contact-title {
        font-size: 32px;
    }
}

/* ===== VACANCY PAGE ===== */
.vacancy-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.25)), url('assets/images/DSC00284.JPG') center/cover no-repeat;
    color: #fff;
    text-align: center;
}

.vacancy-hero h1 {
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.vacancy-hero p {
    font-size: 18px;
    color: #ccc;
    max-width: 750px;
    margin: auto;
}

.vacancy-section {
    background: #fff;
}

.job-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    transition: 0.3s ease;
    margin-bottom: 30px;
}

.job-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.job-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.job-type {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    margin-bottom: 15px;
}

.job-desc {
    font-size: 15px;
    color: #444;
    margin-bottom: 20px;
    line-height: 1.7;
}

.btn-apply {
    background: var(--primary-color);
    color: #fff;
    padding: 10px 24px;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    transition: 0.3s ease;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}

.btn-apply:hover {
    background: #430a09;
}

@media (max-width: 991px) {
    .vacancy-hero h1 {
        font-size: 38px;
    }
}

@media (max-width: 575px) {

    .vacancy-hero p {
        font-size: 16px;
    }
}


/* custom today */

.gym-carousel-wrapper {
    display: flex;
    justify-content: center;
}

.gym-carousel-container {
    width: 90%;
    max-width: 1200px;
    position: relative;
}

.gym-carousel-track {
    display: flex;
    gap: 32px;
    padding: 30px 60px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.gym-carousel-track::-webkit-scrollbar {
    display: none;
}

.gym-card {
    min-width: 280px;
    height: 230px;
    background: linear-gradient(160deg,
            rgba(255, 255, 255, 0.12),
            rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    scroll-snap-align: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.gym-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            transparent,
            rgba(177, 18, 23, 0.25),
            transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.gym-card:hover::before {
    opacity: 1;
}

.gym-card:hover {
    transform: translateY(-14px) scale(1.05);
    box-shadow: 0 25px 60px rgba(177, 18, 23, 0.35);
    border-color: rgba(177, 18, 23, 0.6);
}

.gym-card i {
    font-size: 20px;
    margin-bottom: 12px;
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: 100%;
}

.gym-card p {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: white;
    padding: 3px;
}

/* Buttons */
.gym-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #b11217, var(--primary-color));
    border: none;
    padding: 12px 18px;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 1px;
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    z-index: 5;
}

.gym-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(177, 18, 23, 0.6);
}

.gym-prev {
    left: 0;
    margin-left: -35px;
}

.gym-next {
    right: 0;
    margin-right: -35px;
}

/* Mobile */
@media (max-width: 768px) {
    .gym-carousel-track {
        padding: 20px;
    }

    .gym-btn {
        display: none;
    }
}


.class-badge {
    padding: 10px 20px;
    display: inline-block;
    color: black;
    background: white;
    /* border-radius: 50px; */
    position: absolute;
    top: -25px;
    left: 40%;
    clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
}



/* Wrapper */
.class-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

/* Slider */
.class-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px;
    scrollbar-width: none;
}

.class-slider::-webkit-scrollbar {
    display: none;
}

/* Card */
.class-item {
    min-width: 150px;
    height: 130px;
    background: #fff;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.3s ease;
    color: var(--primary-color);
}

/* Icon wrapper */
.icon-wrap {
    width: 52px;
    height: 52px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Font awesome icons */
.icon-wrap i {
    color: #fff;
    font-size: 20px;
}

/* PNG icon */
.icon-wrap img {
    width: 50px;
    height: 50px;
    filter: invert(1);
    /* black → white */
}

/* Text */
.class-item span {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

/* Hover */
.class-item:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-6px);
    box-shadow: 0px 0px 5px 1px rgba(255, 0, 0, 0.793);
}

.class-item:hover .icon-wrap {
    background: #fff;
}

.class-item:hover i {
    color: var(--primary-color);
}

.class-item:hover img {
    filter: invert(0);
    /* white → black */
}

/* Buttons */
.slider-btn {
    background: var(--primary-color);
    border: none;
    color: #fff;
    width: 70px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.slider-btn:hover {
    transform: scale(1.1);
    color: var(--primary-color);
    background-color: white;
}

.slider-btn i {
    font-size: 14px;
}

/* Mobile */
@media (max-width: 768px) {
    .slider-btn {
        display: none;
    }
}