

/* ========================================
   HERO SECTION CONTAINER
   ======================================== */
.dun-fitness-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #1a1a1a url('/media/image/hero-bg-poster.jpg') center center / cover no-repeat;

}

/* ========================================
   VIDEO BACKGROUND STYLING - LIGHTER
   ======================================== */
.dun-fitness-hero-background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0;
    transition: opacity 1s ease-out;
}

.dun-fitness-hero-background-video.dun-fitness-video-ready {
    opacity: 1;
}

/* ========================================
   VIDEO OVERLAY - LIGHTER VIGNETTE
   ======================================== */
.dun-fitness-hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.4) 60%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* ========================================
   CANVAS BACKGROUND FOR UNIQUE VISUALS
   ======================================== */
.dun-fitness-hero-canvas-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    opacity: 0.5;
}

.dun-fitness-water-particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
    opacity: 0.7;
}

/* ========================================
   HERO CONTENT CONTAINER
   ======================================== */
.dun-fitness-hero-content-container {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 0 20px;
    margin-top: -50px;
}

/* ========================================
   HERO MAIN HEADING STYLING
   ======================================== */
.dun-fitness-hero-main-heading-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.dun-fitness-hero-main-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.dun-fitness-hero-heading-line {
    display: block;
    color: #ffffff;
    font-size: 110px;
    font-weight: 700;
    letter-spacing: 8px;
    text-transform: uppercase;
    line-height: 1;
    text-shadow: 
        0 0 20px rgba(74, 144, 226, 0.3),
        0 0 40px rgba(74, 144, 226, 0.2),
        0 4px 8px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(50px);
    animation: dunFitnessHeadingSlideUp 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.dun-fitness-hero-heading-line-first {
    animation-delay: 0.8s;
}

.dun-fitness-hero-heading-line-second {
    animation-delay: 1s;
}

.dun-fitness-hero-heading-line-third {
    animation-delay: 1.2s;
    color: #3e8dff;
    text-shadow: 
        0 0 30px rgba(74, 144, 226, 0.6),
        0 0 60px rgba(74, 144, 226, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.5);
}

@keyframes dunFitnessHeadingSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   DYNAMIC ACCENT BEHIND HEADING
   ======================================== */
.dun-fitness-hero-heading-dynamic-accent {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
}

.dun-fitness-hero-heading-dynamic-accent::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(74, 144, 226, 0.15) 0%,
        transparent 70%
    );
    transform: translate(-50%, -50%);
    animation: dunFitnessPulseGlow 3s ease-in-out infinite;
}

@keyframes dunFitnessPulseGlow {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

/* ========================================
   HERO SUBHEADING STYLING
   ======================================== */
.dun-fitness-hero-subheading-container {
    position: relative;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    animation: dunFitnessSubheadingFadeIn 1s ease-out 1.4s forwards;
}

@keyframes dunFitnessSubheadingFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dun-fitness-hero-subheading-text {
    color: #ffffff;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ========================================
   SUBHEADING UNDERLINE DECORATOR
   ======================================== */
.dun-fitness-hero-subheading-underline-decorator {
    width: 0;
    height: 2px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, #3e8dff, transparent);
    animation: dunFitnessUnderlineExpand 1s ease-out 1.6s forwards;
}

@keyframes dunFitnessUnderlineExpand {
    from {
        width: 0;
    }
    to {
        width: 300px;
    }
}

/* ========================================
   HERO CTA BUTTON STYLING
   ======================================== */
.dun-fitness-hero-cta-button-wrapper {
    opacity: 0;
    transform: translateY(30px);
    animation: dunFitnessCtaFadeIn 1s ease-out 1.8s forwards;
}

@keyframes dunFitnessCtaFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dun-fitness-hero-trial-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 50px;
    background: linear-gradient(135deg, #3e8dff, #357abd);
    color: #ffffff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    box-shadow: 0 6px 25px rgba(74, 144, 226, 0.4);
}

.dun-fitness-hero-trial-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(74, 144, 226, 0.6);
}

.dun-fitness-hero-trial-button-text {
    position: relative;
    z-index: 2;
}

/* ========================================
   CTA BUTTON ICON STYLING
   ======================================== */
.dun-fitness-hero-trial-button-icon-wrapper {
    position: relative;
    z-index: 2;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dun-fitness-hero-trial-button:hover .dun-fitness-hero-trial-button-icon-wrapper {
    transform: translateX(8px) rotate(45deg);
}

.dun-fitness-hero-trial-button-icon {
    font-size: 16px;
}

/* ========================================
   CTA BUTTON BACKGROUND EFFECT
   ======================================== */
.dun-fitness-hero-trial-button-background-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.3) 0%,
        transparent 70%
    );
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.dun-fitness-hero-trial-button:hover .dun-fitness-hero-trial-button-background-effect {
    width: 400px;
    height: 400px;
}

/* ========================================
   SCROLL INDICATOR STYLING
   ======================================== */
.dun-fitness-hero-scroll-indicator-container {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
    opacity: 0;
    cursor: pointer;
    transition: transform 0.3s ease;
    animation: dunFitnessScrollIndicatorFadeIn 1s ease-out 2.2s forwards;
}

.dun-fitness-hero-scroll-indicator-container:hover {
    transform: translateX(-50%) translateY(-5px);
}

@keyframes dunFitnessScrollIndicatorFadeIn {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.dun-fitness-hero-scroll-indicator-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(
        180deg,
        transparent 0%,
        #3e8dff 50%,
        transparent 100%
    );
    animation: dunFitnessScrollLineMove 2s ease-in-out infinite;
}

@keyframes dunFitnessScrollLineMove {
    0%, 100% {
        transform: scaleY(1);
        opacity: 0.5;
    }
    50% {
        transform: scaleY(1.3);
        opacity: 1;
    }
}

.dun-fitness-hero-scroll-indicator-text {
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.dun-fitness-hero-scroll-indicator-icon {
    color: #3e8dff;
    font-size: 20px;
    animation: dunFitnessScrollIconBounce 2s ease-in-out infinite;
}

@keyframes dunFitnessScrollIconBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .dun-fitness-hero-heading-line {
        font-size: 90px;
    }
}

@media (max-width: 768px) {
    .dun-fitness-hero-heading-line {
        font-size: 60px;
        letter-spacing: 4px;
    }

    .dun-fitness-hero-subheading-text {
        font-size: 20px;
    }

    .dun-fitness-hero-trial-button {
        padding: 16px 35px;
        font-size: 18px;
    }
}




/* ========================================
   TRANSITION SECTION
   ======================================== */
.dun-fitness-transition-section {
    position: relative;
    width: 100%;
    height: max-content;
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 120px 20px;
}

.dun-fitness-transition-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('media/image/hero-transition.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.dun-fitness-transition-background-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 20, 40, 0.75);
    z-index: 2;
}

.dun-fitness-transition-background-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.08) 15%,
        rgba(255, 255, 255, 0.03) 30%,
        transparent 50%
    );
    z-index: 3;
    pointer-events: none;
}

.dun-fitness-transition-content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
}

.dun-fitness-transition-frosted-glass-container {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 60px 80px;
    border: 2px solid rgba(74, 144, 226, 0.3);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 0 60px rgba(74, 144, 226, 0.1);
    transform: translateY(50px);
    opacity: 0;
    animation: dunFitnessTransitionSlideUp 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
}

@keyframes dunFitnessTransitionSlideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.dun-fitness-transition-main-heading {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.3;
    text-shadow: 0 4px 20px rgba(74, 144, 226, 0.5);
    margin: 0;
}

/* ========================================
   STRENGTH TRAINING SECTION
   ======================================== */
.dun-fitness-strength-training-section {
    position: relative;
    width: 100%;
    height: max-content;
    background: linear-gradient(180deg, #001428 0%, #00253d 100%);
    padding: 100px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

/* Images Grid */
.dun-fitness-strength-training-images-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    max-width: 1400px;
    width: 100%;
}

.dun-fitness-strength-training-image-wrapper {
    position: relative;
    width: 260px;
    height: 300px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(50px);
    padding: 20px;
    transition: all 1s ease;
}

.dun-fitness-strength-training-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 2px solid #3e8dff;
    transition: filter 0.5s ease;
}

.dun-fitness-strength-training-image-wrapper:hover .dun-fitness-strength-training-image {
    filter: brightness(1.08);
}

/* SVG Frame Overlay */
.dun-fitness-techy-frame-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    opacity: 0.9;
}

/* Animate SVG elements on hover */
.dun-fitness-strength-training-image-wrapper:hover .dun-fitness-techy-frame-svg {
    opacity: 1;
}

.dun-fitness-techy-frame-svg g {
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.dun-fitness-strength-training-image-wrapper:hover .dun-fitness-svg-corner-tl {
    transform: translate(-3px, -3px);
}

.dun-fitness-strength-training-image-wrapper:hover .dun-fitness-svg-corner-tr {
    transform: translate(3px, -3px);
}

.dun-fitness-strength-training-image-wrapper:hover .dun-fitness-svg-corner-bl {
    transform: translate(-3px, 3px);
}

.dun-fitness-strength-training-image-wrapper:hover .dun-fitness-svg-corner-br {
    transform: translate(3px, 3px);
}

/* Glow effect */
.dun-fitness-techy-frame-svg circle,
.dun-fitness-techy-frame-svg line,
.dun-fitness-techy-frame-svg path {
    filter: drop-shadow(0 0 2px rgba(74, 144, 226, 0.6));
    transition: filter 0.4s ease;
}

.dun-fitness-strength-training-image-wrapper:hover .dun-fitness-techy-frame-svg circle,
.dun-fitness-strength-training-image-wrapper:hover .dun-fitness-techy-frame-svg line,
.dun-fitness-strength-training-image-wrapper:hover .dun-fitness-techy-frame-svg path {
    filter: drop-shadow(0 0 6px rgba(74, 144, 226, 1));
}

@media (max-width: 1200px) {
    .dun-fitness-strength-training-image-wrapper {
        width: 320px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .dun-fitness-strength-training-image-wrapper {
        width: 280px;
        height: 360px;
    }
}



/* Content Container */
.dun-fitness-strength-training-content-container {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

/* ========================================
   MINIMAL CLEAN STAT CARDS
   ======================================== */
.dun-fitness-strength-stats-minimal-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
    max-width: 1100px;
    width: 100%;
}

.dun-fitness-minimal-stat-card {
    border-bottom: 4px solid rgba(255, 255, 255, 1);
    border-radius: 16px;
    padding: 20px;
    max-width: 325px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: all 0.4s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px);
}

.dun-fitness-minimal-stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(74, 144, 226, 0.4);
    transform: translateY(-8px);
}

.dun-fitness-minimal-stat-icon-circle {
    width: 60px;
    height: 60px;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.dun-fitness-minimal-stat-card:hover .dun-fitness-minimal-stat-icon-circle {
    background: #3e8dff;
    transform: scale(1.1);
}

.dun-fitness-minimal-stat-icon-circle i {
    color: #ffffff;
    font-size: 24px;
}

.dun-fitness-minimal-stat-label {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.dun-fitness-minimal-stat-value {
    color: #ffffff;
    font-size: 56px;
    font-weight: 700;
    text-align: left;
    letter-spacing: -2px;
    line-height: 1;
}

@media (max-width: 768px) {
    .dun-fitness-minimal-stat-card {
        width: 100%;
        max-width: 320px;
        padding: 32px 40px;
    }

    .dun-fitness-minimal-stat-value {
        font-size: 48px;
    }
}



/* ========================================
   SIMPLE CORNER BRACKET FRAMES
   ======================================== */
.dun-fitness-strength-training-image-wrapper {
    position: relative;
    width: 380px;
    height: 480px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(50px);
}

.dun-fitness-strength-training-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease, filter 0.5s ease;
}

.dun-fitness-strength-training-image-wrapper:hover .dun-fitness-strength-training-image {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Simple Corner Brackets */
.dun-fitness-simple-frame-corners {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.dun-fitness-frame-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid #3e8dff;
    transition: all 0.4s ease;
}

.dun-fitness-corner-top-left {
    top: 15px;
    left: 15px;
    border-right: none;
    border-bottom: none;
}

.dun-fitness-corner-top-right {
    top: 15px;
    right: 15px;
    border-left: none;
    border-bottom: none;
}

.dun-fitness-corner-bottom-left {
    bottom: 15px;
    left: 15px;
    border-right: none;
    border-top: none;
}

.dun-fitness-corner-bottom-right {
    bottom: 15px;
    right: 15px;
    border-left: none;
    border-top: none;
}

.dun-fitness-strength-training-image-wrapper:hover .dun-fitness-frame-corner {
    width: 60px;
    height: 60px;
    border-width: 4px;
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.6);
}

.dun-fitness-strength-training-image-wrapper:hover .dun-fitness-corner-top-left {
    top: 10px;
    left: 10px;
}

.dun-fitness-strength-training-image-wrapper:hover .dun-fitness-corner-top-right {
    top: 10px;
    right: 10px;
}

.dun-fitness-strength-training-image-wrapper:hover .dun-fitness-corner-bottom-left {
    bottom: 10px;
    left: 10px;
}

.dun-fitness-strength-training-image-wrapper:hover .dun-fitness-corner-bottom-right {
    bottom: 10px;
    right: 10px;
}

@media (max-width: 1200px) {
    .dun-fitness-strength-training-image-wrapper {
        width: 320px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .dun-fitness-strength-training-image-wrapper {
        width: 280px;
        height: 360px;
    }
}



.dun-fitness-strength-training-main-heading {
    color: #ffffff;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(74, 144, 226, 0.4);
    opacity: 0;
    transform: translateY(30px);
}

.dun-fitness-strength-training-description-text {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    line-height: 1.8;
    font-family: 'Noto Sans', sans-serif;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(30px);
}

/* Join Button */
.dun-fitness-strength-training-cta-wrapper {
    opacity: 0;
    transform: translateY(30px);
}

.dun-fitness-strength-training-join-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 45px;
    background: linear-gradient(135deg, #3e8dff, #357abd);
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    box-shadow: 0 6px 25px rgba(74, 144, 226, 0.4);
}

.dun-fitness-strength-training-join-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(74, 144, 226, 0.6);
}

.dun-fitness-strength-training-button-text {
    position: relative;
    z-index: 2;
}

.dun-fitness-strength-training-button-icon-container {
    position: relative;
    z-index: 2;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dun-fitness-strength-training-join-button:hover .dun-fitness-strength-training-button-icon-container {
    transform: translateX(8px) rotate(45deg);
}

.dun-fitness-strength-training-button-icon {
    font-size: 16px;
    font-weight: 400;
}

.dun-fitness-strength-training-button-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.3) 0%,
        transparent 70%
    );
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.dun-fitness-strength-training-join-button:hover .dun-fitness-strength-training-button-glow-effect {
    width: 400px;
    height: 400px;
}

/* ========================================
   RESPONSIVE DESIGN FOR NEW SECTIONS
   ======================================== */
@media (max-width: 1200px) {
    .dun-fitness-strength-training-images-grid {
        gap: 30px;
    }

    .dun-fitness-strength-training-image-wrapper {
        width: 320px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .dun-fitness-transition-frosted-glass-container {
        padding: 40px 30px;
    }

    .dun-fitness-transition-main-heading {
        font-size: 32px;
    }

    .dun-fitness-strength-training-images-grid {
        gap: 20px;
    }

    .dun-fitness-strength-training-image-wrapper {
        width: 280px;
        height: 360px;
    }

    .dun-fitness-strength-training-main-heading {
        font-size: 36px;
    }

    .dun-fitness-strength-training-description-text {
        font-size: 18px;
    }
}






/* ========================================
   MODERN FITNESS OPTIONS SECTION
   ======================================== */
.dun-fitness-modern-options-section {
    position: relative;
    width: 100%;
    height: max-content;
    background: linear-gradient(135deg, #031021 0%, #001a33 100%);
    padding: 50px 30px;
    overflow: hidden;
}

.dun-fitness-modern-options-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.dun-fitness-modern-options-left {
    flex: 1;
    top: 150px;
}

.dun-fitness-modern-options-heading {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.dun-fitness-modern-options-right {
    flex: 1.2;
}

/* Expandable Card */
.dun-fitness-options-expandable-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(74, 144, 226, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: translateY(40px);
}

.dun-fitness-options-expandable-card:hover {
    border-color: rgba(74, 144, 226, 0.5);
    box-shadow: 0 10px 40px rgba(74, 144, 226, 0.2);
}

.dun-fitness-expandable-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.dun-fitness-expandable-header:hover {
    background: rgba(255, 255, 255, 0.03);
}

.dun-fitness-expandable-icon-circle {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3e8dff, #357abd);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.dun-fitness-options-expandable-card:hover .dun-fitness-expandable-icon-circle {
    transform: translateX(5px);
}

.dun-fitness-expandable-icon-circle i {
    color: #ffffff;
    font-size: 22px;
}

.dun-fitness-expandable-preview-text {
    flex: 1;
    font-family: 'Noto Sans', sans-serif;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.dun-fitness-expandable-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.dun-fitness-expandable-arrow i {
    color: #3e8dff;
    font-size: 20px;
}

.dun-fitness-expanded .dun-fitness-expandable-arrow {
    transform: rotate(180deg);
}

/* Expandable Content */
.dun-fitness-expandable-content {
    font-family: 'Noto Sans', sans-serif;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), padding 0.5s ease;
    padding: 0 30px;
}

.dun-fitness-expanded .dun-fitness-expandable-content {
    max-height: 800px;
    padding: 10px 30px 30px 30px;
}

.dun-fitness-expandable-full-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 20px;
}

.dun-fitness-expandable-full-text:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {

    .dun-fitness-modern-options-left {
        position: relative;
        top: 0;
    }

    .dun-fitness-modern-options-heading {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .dun-fitness-modern-options-container {
        flex-direction: column;
        gap: 50px;
    }
    .dun-fitness-modern-options-heading {
        font-size: 24px;
    }

}






/* ========================================
   COMPLETE FITNESS EXPERIENCE SECTION - FULL BACKGROUND
   ======================================== */
.dun-fitness-complete-experience-section {
    position: relative;
    width: 100%;
    height: max-content;
    min-height: 100vh;
    padding: 120px 50px;
    overflow: hidden;
    background-color: #031021;
}

/* Full Background Image */
.dun-fitness-complete-experience-background-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 62.5%;
    height: 100%;
    background-image: url('media/image/muscle.webp');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
}

.dun-fitness-complete-experience-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

.dun-fitness-complete-experience-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.dun-fitness-experience-text-block {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.dun-fitness-experience-intro-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 500px;
}

.dun-fitness-experience-cta-wrapper {
    display: flex;
}

.dun-fitness-experience-trial-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 18px 45px;
    background: linear-gradient(135deg, #3e8dff, #357abd);
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 6px 25px rgba(74, 144, 226, 0.4);
}

.dun-fitness-experience-trial-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(74, 144, 226, 0.6);
}

.dun-fitness-experience-button-text {
    position: relative;
    z-index: 2;
}

.dun-fitness-experience-button-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.dun-fitness-experience-trial-button:hover .dun-fitness-experience-button-glow {
    width: 300px;
    height: 300px;
}

/* Complete Heading Block */
.dun-fitness-complete-heading-block {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.dun-fitness-complete-experience-heading {
    color: #ffffff;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 30px;
}

.dun-fitness-complete-experience-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 20px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 800px;
}

.dun-fitness-complete-join-wrapper {
    display: flex;
}

.dun-fitness-complete-join-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: transparent;
    border: 2px solid #3e8dff;
    color: #3e8dff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.dun-fitness-complete-join-button:hover {
    background: #3e8dff;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

.dun-fitness-complete-join-button-text {
    position: relative;
    z-index: 2;
}

.dun-fitness-complete-join-button-icon {
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}

.dun-fitness-complete-join-button:hover .dun-fitness-complete-join-button-icon {
    transform: translateX(5px);
}

.dun-fitness-complete-join-button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.dun-fitness-complete-join-button:hover .dun-fitness-complete-join-button-shine {
    left: 100%;
}

@media (max-width: 1024px) {
    .dun-fitness-complete-experience-heading {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .dun-fitness-complete-experience-heading {
        font-size: 34px;
    }

    .dun-fitness-experience-intro-text {
        font-size: 18px;
    }
}



/* ========================================
   REVAMPED FACILITIES GRID SECTION - DARK
   ======================================== */
.dun-fitness-facilities-grid-section {
    position: relative;
    width: 100%;
    height: max-content;
    background: #001428;
    padding: 120px 50px;
    overflow: hidden;
}

/* ========================================
   DARK GRADIENT BACKGROUND
   ======================================== */
.dun-fitness-facilities-dark-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        #001428 0%,
        #00253d 50%,
        #001428 100%
    );
    z-index: 1;
}

/* Radial gradient overlay */
.dun-fitness-facilities-dark-background::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(
        circle,
        rgba(74, 144, 226, 0.08) 0%,
        transparent 70%
    );
    transform: translate(-50%, -50%);
}

/* ========================================
   CIRCUIT LINES DECORATION
   ======================================== */
.dun-fitness-circuit-lines-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 0.4;
}

.dun-fitness-circuit-line {
    position: absolute;
    width: 60%;
    height: 200px;
}

.dun-fitness-circuit-1 {
    top: 15%;
    left: 0;
    animation: dunFitnessCircuitFlow1 10s ease-in-out infinite;
}

.dun-fitness-circuit-2 {
    bottom: 20%;
    right: 0;
    animation: dunFitnessCircuitFlow2 12s ease-in-out infinite reverse;
}

@keyframes dunFitnessCircuitFlow1 {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(0);
    }
    50% {
        opacity: 0.6;
        transform: translateX(20px);
    }
}

@keyframes dunFitnessCircuitFlow2 {
    0%, 100% {
        opacity: 0.2;
        transform: translateX(0);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-20px);
    }
}

/* ========================================
   MAIN CONTAINER
   ======================================== */
.dun-fitness-facilities-grid-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
}

/* ========================================
   HEADER WITH PAINT DRIP
   ======================================== */
.dun-fitness-facilities-grid-header {
    position: relative;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.dun-fitness-facilities-grid-header.dun-fitness-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Paint Drip Container */
.dun-fitness-paint-drip-container {
    position: absolute;
    top: -150px;
    left: 0;
    width: 100%;
    height: 150px;
    overflow: visible;
    z-index: 1;
    pointer-events: none;
}

.dun-fitness-paint-drip {
    position: absolute;
    height: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 37, 61, 1) 0%,
        rgba(74, 144, 226, 0.3) 100%
    );
    border-radius: 0 0 8px 8px;
    opacity: 0;
}

/* Activate paint drips on scroll */
.dun-fitness-paint-drip.dun-fitness-drip-active {
    opacity: 1;
}

/* Individual drip animations */
.dun-fitness-drip-active.dun-fitness-drip-1 {
    animation: dunFitnessPaintDrip1 2.8s ease-in-out 0.2s forwards;
}

.dun-fitness-drip-active.dun-fitness-drip-2 {
    animation: dunFitnessPaintDrip2 3.2s ease-in-out 0.5s forwards;
}

.dun-fitness-drip-active.dun-fitness-drip-3 {
    animation: dunFitnessPaintDrip3 2.5s ease-in-out 0.8s forwards;
}

.dun-fitness-drip-active.dun-fitness-drip-4 {
    animation: dunFitnessPaintDrip4 3.5s ease-in-out 1.1s forwards;
}

.dun-fitness-drip-active.dun-fitness-drip-5 {
    animation: dunFitnessPaintDrip5 2.9s ease-in-out 0.3s forwards;
}

.dun-fitness-drip-active.dun-fitness-drip-6 {
    animation: dunFitnessPaintDrip6 3.3s ease-in-out 0.7s forwards;
}

.dun-fitness-drip-active.dun-fitness-drip-7 {
    animation: dunFitnessPaintDrip7 2.6s ease-in-out 1.3s forwards;
}

.dun-fitness-drip-active.dun-fitness-drip-8 {
    animation: dunFitnessPaintDrip8 3.1s ease-in-out 0.4s forwards;
}

.dun-fitness-drip-active.dun-fitness-drip-9 {
    animation: dunFitnessPaintDrip9 3.4s ease-in-out 0.9s forwards;
}

.dun-fitness-drip-active.dun-fitness-drip-10 {
    animation: dunFitnessPaintDrip10 2.7s ease-in-out 1.2s forwards;
}

.dun-fitness-drip-active.dun-fitness-drip-11 {
    animation: dunFitnessPaintDrip11 3.0s ease-in-out 0.6s forwards;
}

.dun-fitness-drip-active.dun-fitness-drip-12 {
    animation: dunFitnessPaintDrip12 2.8s ease-in-out 1.0s forwards;
}

@keyframes dunFitnessPaintDrip1 {
    0% { height: 0; opacity: 0; top: 0; }
    15% { opacity: 1; }
    60% { height: 95px; top: 0; }
    75% { height: 100px; top: 0; }
    85% { height: 95px; top: 8px; }
    100% { height: 95px; opacity: 1; top: 8px; }
}

@keyframes dunFitnessPaintDrip2 {
    0% { height: 0; opacity: 0; top: 0; }
    15% { opacity: 1; }
    60% { height: 75px; top: 0; }
    75% { height: 80px; top: 0; }
    85% { height: 75px; top: 5px; }
    100% { height: 75px; opacity: 1; top: 5px; }
}

@keyframes dunFitnessPaintDrip3 {
    0% { height: 0; opacity: 0; top: 0; }
    15% { opacity: 1; }
    60% { height: 110px; top: 0; }
    75% { height: 115px; top: 0; }
    85% { height: 110px; top: 10px; }
    100% { height: 110px; opacity: 1; top: 10px; }
}

@keyframes dunFitnessPaintDrip4 {
    0% { height: 0; opacity: 0; top: 0; }
    15% { opacity: 1; }
    60% { height: 65px; top: 0; }
    75% { height: 70px; top: 0; }
    85% { height: 65px; top: 4px; }
    100% { height: 65px; opacity: 1; top: 4px; }
}

@keyframes dunFitnessPaintDrip5 {
    0% { height: 0; opacity: 0; top: 0; }
    15% { opacity: 1; }
    60% { height: 88px; top: 0; }
    75% { height: 93px; top: 0; }
    85% { height: 88px; top: 7px; }
    100% { height: 88px; opacity: 1; top: 7px; }
}

@keyframes dunFitnessPaintDrip6 {
    0% { height: 0; opacity: 0; top: 0; }
    15% { opacity: 1; }
    60% { height: 82px; top: 0; }
    75% { height: 87px; top: 0; }
    85% { height: 82px; top: 6px; }
    100% { height: 82px; opacity: 1; top: 6px; }
}

@keyframes dunFitnessPaintDrip7 {
    0% { height: 0; opacity: 0; top: 0; }
    15% { opacity: 1; }
    60% { height: 120px; top: 0; }
    75% { height: 125px; top: 0; }
    85% { height: 120px; top: 12px; }
    100% { height: 120px; opacity: 1; top: 12px; }
}

@keyframes dunFitnessPaintDrip8 {
    0% { height: 0; opacity: 0; top: 0; }
    15% { opacity: 1; }
    60% { height: 78px; top: 0; }
    75% { height: 83px; top: 0; }
    85% { height: 78px; top: 6px; }
    100% { height: 78px; opacity: 1; top: 6px; }
}

@keyframes dunFitnessPaintDrip9 {
    0% { height: 0; opacity: 0; top: 0; }
    15% { opacity: 1; }
    60% { height: 70px; top: 0; }
    75% { height: 75px; top: 0; }
    85% { height: 70px; top: 5px; }
    100% { height: 70px; opacity: 1; top: 5px; }
}

@keyframes dunFitnessPaintDrip10 {
    0% { height: 0; opacity: 0; top: 0; }
    15% { opacity: 1; }
    60% { height: 105px; top: 0; }
    75% { height: 110px; top: 0; }
    85% { height: 105px; top: 9px; }
    100% { height: 105px; opacity: 1; top: 9px; }
}

@keyframes dunFitnessPaintDrip11 {
    0% { height: 0; opacity: 0; top: 0; }
    15% { opacity: 1; }
    60% { height: 72px; top: 0; }
    75% { height: 77px; top: 0; }
    85% { height: 72px; top: 5px; }
    100% { height: 72px; opacity: 1; top: 5px; }
}

@keyframes dunFitnessPaintDrip12 {
    0% { height: 0; opacity: 0; top: 0; }
    15% { opacity: 1; }
    60% { height: 92px; top: 0; }
    75% { height: 97px; top: 0; }
    85% { height: 92px; top: 7px; }
    100% { height: 92px; opacity: 1; top: 7px; }
}

/* Blob animations */
.dun-fitness-drip-active.dun-fitness-drip-1::after { animation: dunFitnessDripBlob 2.8s ease-in-out 0.2s forwards; }
.dun-fitness-drip-active.dun-fitness-drip-2::after { animation: dunFitnessDripBlob 3.2s ease-in-out 0.5s forwards; }
.dun-fitness-drip-active.dun-fitness-drip-3::after { animation: dunFitnessDripBlob 2.5s ease-in-out 0.8s forwards; }
.dun-fitness-drip-active.dun-fitness-drip-4::after { animation: dunFitnessDripBlob 3.5s ease-in-out 1.1s forwards; }
.dun-fitness-drip-active.dun-fitness-drip-5::after { animation: dunFitnessDripBlob 2.9s ease-in-out 0.3s forwards; }
.dun-fitness-drip-active.dun-fitness-drip-6::after { animation: dunFitnessDripBlob 3.3s ease-in-out 0.7s forwards; }
.dun-fitness-drip-active.dun-fitness-drip-7::after { animation: dunFitnessDripBlob 2.6s ease-in-out 1.3s forwards; }
.dun-fitness-drip-active.dun-fitness-drip-8::after { animation: dunFitnessDripBlob 3.1s ease-in-out 0.4s forwards; }
.dun-fitness-drip-active.dun-fitness-drip-9::after { animation: dunFitnessDripBlob 3.4s ease-in-out 0.9s forwards; }
.dun-fitness-drip-active.dun-fitness-drip-10::after { animation: dunFitnessDripBlob 2.7s ease-in-out 1.2s forwards; }
.dun-fitness-drip-active.dun-fitness-drip-11::after { animation: dunFitnessDripBlob 3.0s ease-in-out 0.6s forwards; }
.dun-fitness-drip-active.dun-fitness-drip-12::after { animation: dunFitnessDripBlob 2.8s ease-in-out 1.0s forwards; }

@keyframes dunFitnessDripBlob {
    0% { transform: translateX(-50%) scale(0); opacity: 0; }
    60% { transform: translateX(-50%) scale(1); opacity: 1; }
    80% { transform: translateX(-50%) scale(1.3); opacity: 0.9; }
    100% { transform: translateX(-50%) scale(1); opacity: 1; }
}

/* ========================================
   MAIN HEADING
   ======================================== */
.dun-fitness-facilities-main-heading {
    color: #ffffff;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dun-fitness-facilities-heading-word {
    display: block;
    text-shadow: 0 4px 20px rgba(74, 144, 226, 0.3);
    transition: all 0.4s ease;
}

/* HOVER INTERACTION 1: Heading Word Glow */
.dun-fitness-facilities-heading-word:hover {
    text-shadow: 0 0 40px rgba(74, 144, 226, 0.8);
    transform: translateX(5px);
}

.dun-fitness-facilities-heading-highlight {
    color: #3e8dff;
    text-shadow: 0 0 30px rgba(74, 144, 226, 0.6);
}

/* ========================================
   ENERGY WAVE UNDER HEADING
   ======================================== */
.dun-fitness-facilities-energy-wave {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 8px;
    height: 60px;
    margin-top: 40px;
}

.dun-fitness-wave-bar {
    width: 6px;
    background: linear-gradient(180deg, #3e8dff, #357abd);
    border-radius: 3px;
    animation: dunFitnessWaveBarPulse 2s ease-in-out infinite;
}

.dun-fitness-wave-1 {
    height: 30px;
    animation-delay: 0s;
}

.dun-fitness-wave-2 {
    height: 50px;
    animation-delay: 0.2s;
}

.dun-fitness-wave-3 {
    height: 60px;
    animation-delay: 0.4s;
}

.dun-fitness-wave-4 {
    height: 45px;
    animation-delay: 0.6s;
}

.dun-fitness-wave-5 {
    height: 35px;
    animation-delay: 0.8s;
}

@keyframes dunFitnessWaveBarPulse {
    0%, 100% {
        transform: scaleY(1);
        opacity: 0.6;
    }
    50% {
        transform: scaleY(1.3);
        opacity: 1;
    }
}

/* ========================================
   FACILITIES GRID
   ======================================== */
.dun-fitness-facilities-grid-wrapper {
    max-width: 1150px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
    margin: 0 auto;
    margin-bottom: 80px;
}

/* Individual Facility Item */
.dun-fitness-facility-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 280px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
}

.dun-fitness-facility-grid-item.dun-fitness-visible {
    opacity: 1;
    transform: translateY(0);
}

/* HOVER INTERACTION 2: Item Float Up */
.dun-fitness-facility-grid-item:hover {
    transform: translateY(-15px);
}

/* Facility Item Container */
.dun-fitness-facility-item-container {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Rotating Ring Decoration */
.dun-fitness-facility-rotating-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220px;
    height: 220px;
    border: 2px dashed rgba(74, 144, 226, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: dunFitnessRingRotate 20s linear infinite;
    transition: all 0.4s ease;
}

/* HOVER INTERACTION 3: Ring Speed Up */
.dun-fitness-facility-grid-item:hover .dun-fitness-facility-rotating-ring {
    border-color: rgba(74, 144, 226, 0.6);
    animation: dunFitnessRingRotate 5s linear infinite;
    box-shadow: 0 0 30px rgba(74, 144, 226, 0.4);
}

@keyframes dunFitnessRingRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Circle Image */
.dun-fitness-facility-image-circle {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #3e8dff;
    box-shadow: 0 8px 30px rgba(74, 144, 226, 0.4);
    transition: all 0.4s ease;
    z-index: 2;
}

/* HOVER INTERACTION 4: Circle Scale and Glow */
.dun-fitness-facility-grid-item:hover .dun-fitness-facility-image-circle {
    transform: scale(1.1);
    border-color: #357abd;
    box-shadow: 0 12px 50px rgba(74, 144, 226, 0.7);
}

.dun-fitness-facility-circle-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.dun-fitness-facility-grid-item:hover .dun-fitness-facility-circle-image {
    transform: scale(1.15);
}

/* Circle Glow */
.dun-fitness-circle-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(74, 144, 226, 0.4), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.dun-fitness-facility-grid-item:hover .dun-fitness-circle-glow {
    width: 120%;
    height: 120%;
}

/* Description */
.dun-fitness-facility-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.dun-fitness-facility-grid-item:hover .dun-fitness-facility-description {
    color: #ffffff;
}

/* ========================================
   BOTTOM TEXT
   ======================================== */
.dun-fitness-facilities-bottom-text {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.dun-fitness-facilities-bottom-text.dun-fitness-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Accent Lines */
.dun-fitness-bottom-accent-line {
    position: absolute;
    top: -25%;
    width: 2px;
    height: 150px;
    background: linear-gradient(180deg, transparent, #3e8dff, transparent);
    animation: dunFitnessAccentGlow 3s ease-in-out infinite;
}

.dun-fitness-accent-left {
    left: -100px;
}

.dun-fitness-accent-right {
    right: -100px;
}

@keyframes dunFitnessAccentGlow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

.dun-fitness-facilities-closing-statement {
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
    font-family: 'Noto Sans', sans-serif;
    text-align: left;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}

/* HOVER INTERACTION 6: Highlight Word Glow */
.dun-fitness-highlight-word {
    color: #3e8dff;
    font-weight: 500;
    padding: 2px 6px;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: default;
}

.dun-fitness-highlight-word:hover {
    background: rgba(74, 144, 226, 0.2);
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.4);
    transform: scale(1.05);
}

/* ========================================
   SCROLL ANIMATION UTILITIES
   ======================================== */
.dun-fitness-facilities-header-scroll-animate,
.dun-fitness-facility-scroll-animate,
.dun-fitness-facilities-text-scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.dun-fitness-facilities-header-scroll-animate.dun-fitness-visible,
.dun-fitness-facility-scroll-animate.dun-fitness-visible,
.dun-fitness-facilities-text-scroll-animate.dun-fitness-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays */
.dun-fitness-facility-grid-item:nth-child(1) {
    transition-delay: 0.1s;
}

.dun-fitness-facility-grid-item:nth-child(2) {
    transition-delay: 0.2s;
}

.dun-fitness-facility-grid-item:nth-child(3) {
    transition-delay: 0.3s;
}

.dun-fitness-facility-grid-item:nth-child(4) {
    transition-delay: 0.4s;
}

.dun-fitness-facility-grid-item:nth-child(5) {
    transition-delay: 0.5s;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .dun-fitness-facilities-main-heading {
        font-size: 48px;
    }

    .dun-fitness-bottom-accent-line {
        display: none;
    }
}

@media (max-width: 768px) {
    .dun-fitness-facilities-grid-section {
        padding: 80px 20px;
    }

    .dun-fitness-facilities-main-heading {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .dun-fitness-paint-drip-container {
        display: none;
    }

    .dun-fitness-facility-grid-item {
        width: 100%;
        max-width: 280px;
    }

    .dun-fitness-facilities-closing-statement {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .dun-fitness-facilities-main-heading {
        font-size: 28px;
    }

    .dun-fitness-facilities-closing-statement {
        font-size: 16px;
    }

    .dun-fitness-circuit-lines-decoration {
        display: none;
    }

    .dun-fitness-facilities-grid-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}



/* ========================================
   FITNESS OPTIONS SHOWCASE - ONE SECTION
   ======================================== */
.dun-fitness-options-showcase-section {
    position: relative;
    width: 100%;
    height: max-content;
    background: linear-gradient(180deg, #001428 0%, #00253d 100%);
    padding: 120px 50px 80px 50px;
}

.dun-fitness-options-showcase-container {
    max-width: 1400px;
    margin: 0 auto 80px auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Left Content */
.dun-fitness-options-content-left {
    flex: 1;
}

.dun-fitness-options-top-image-container {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(74, 144, 226, 0.3);
}

.dun-fitness-options-team-image {
    width: 100%;
    height: auto;
    display: block;
}

.dun-fitness-options-showcase-heading {
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 25px;
}

.dun-fitness-options-showcase-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 20px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 35px;
}

.dun-fitness-options-trial-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 16px 40px;
    background: linear-gradient(135deg, #3e8dff, #357abd);
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 6px 25px rgba(74, 144, 226, 0.4);
}

.dun-fitness-options-trial-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(74, 144, 226, 0.6);
}

.dun-fitness-options-trial-button-text {
    position: relative;
    z-index: 2;
}

.dun-fitness-options-trial-button-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.dun-fitness-options-trial-button:hover .dun-fitness-options-trial-button-glow {
    width: 300px;
    height: 300px;
}

/* Right Showcase */
.dun-fitness-options-showcase-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Main Showcase Display */
.dun-fitness-options-main-showcase {
    position: relative;
    width: 100%;
    height: 380px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(74, 144, 226, 0.2);
}

.dun-fitness-showcase-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Thumbnail Grid */
.dun-fitness-options-thumbnail-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.dun-fitness-thumbnail-item {
    width: 110px;
    height: 110px;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.dun-fitness-thumbnail-item:hover {
    border-color: rgba(74, 144, 226, 0.6);
    transform: translateY(-5px);
}

.dun-fitness-thumbnail-item.dun-fitness-thumbnail-active {
    border-color: #3e8dff;
    box-shadow: 0 0 20px rgba(74, 144, 226, 0.6);
}

.dun-fitness-thumbnail-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.dun-fitness-thumbnail-item:hover .dun-fitness-thumbnail-image {
    transform: scale(1.1);
}

/* Flying Image Animation */
.dun-fitness-flying-image {
    position: absolute;
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 12px;
    z-index: 9999;
    pointer-events: none;
    box-shadow: 0 10px 40px rgba(74, 144, 226, 0.5);
}

/* Book Workout Inline */
.dun-fitness-book-workout-inline {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dun-fitness-book-workout-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.dun-fitness-book-workout-heading {
    flex: 1;
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
}

.dun-fitness-book-workout-box {
    flex: 1.2;
    background: rgba(0, 37, 61, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 35px;
    border: 2px solid rgba(74, 144, 226, 0.3);
    transition: all 0.4s ease;
}

.dun-fitness-book-workout-text {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Noto Sans';
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}

.dun-fitness-book-expandable-header {
    display: flex;

    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
}

.dun-fitness-book-expand-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 144, 226, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.dun-fitness-book-expand-icon i {
    color: #3e8dff;
    font-size: 18px;
    transition: transform 0.4s ease;
}

.dun-fitness-book-expandable:hover .dun-fitness-book-expand-icon {
    background: rgba(74, 144, 226, 0.3);
}

.dun-fitness-book-expanded .dun-fitness-book-expand-icon i {
    transform: rotate(180deg);
}

/* Expandable Content */
.dun-fitness-book-expandable-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), padding 0.5s ease;
    padding: 0;
}

.dun-fitness-book-expanded .dun-fitness-book-expandable-content {
    max-height: 300px;
    padding-top: 25px;
}

.dun-fitness-book-expanded-text {
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Noto Sans';
    font-size: 15px;
    margin: 0;
    margin-left: 20px;
    font-weight: 300;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .dun-fitness-options-showcase-container {
        flex-direction: column;
        align-items: center;
    }

    .dun-fitness-options-content-left {
        display: flex;
        flex-direction: column;
    }

    .dun-fitness-options-showcase-cta {
        text-align: center;
    }

    .dun-fitness-book-workout-content {
        flex-direction: column;
        gap: 30px;
    }

    .dun-fitness-options-showcase-heading,
    .dun-fitness-book-workout-heading {
        font-size: 36px;
    }
}

/* ========================================
   LOCATION SECTION
   ======================================== */
.dun-fitness-location-section {
    position: relative;
    width: 100%;
    height: max-content;
    background-image: url('media/image/contact-background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 50px;
    overflow: hidden;
}

.dun-fitness-location-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 20, 40, 0.92) 0%,
        rgba(26, 26, 26, 0.88) 50%,
        rgba(0, 20, 40, 0.92) 100%
    );
    z-index: 1;
}

.dun-fitness-location-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

/* Left Content */
.dun-fitness-location-content-left {
    flex: 1;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.dun-fitness-location-content-left.dun-fitness-scroll-visible {
    opacity: 1;
    transform: translateX(0);
}

.dun-fitness-location-main-heading {
    color: #ffffff;
    font-size: 52px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 30px;
}

.dun-fitness-location-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 20px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 40px;
}

.dun-fitness-location-call-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #3e8dff, #357abd);
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 6px 25px rgba(74, 144, 226, 0.4);
}

.dun-fitness-location-call-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 35px rgba(74, 144, 226, 0.6);
}

.dun-fitness-call-icon {
    font-size: 20px;
    position: relative;
    z-index: 2;
}

.dun-fitness-call-text {
    position: relative;
    z-index: 2;
}

.dun-fitness-call-button-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.dun-fitness-location-call-button:hover .dun-fitness-call-button-glow {
    width: 300px;
    height: 300px;
}

/* Right Map */
.dun-fitness-location-map-right {
    flex: 1;
    opacity: 0;
    transform: translateX(50px);
    width: 100%;
    transition: all 0.8s ease;
}

.dun-fitness-location-map-right.dun-fitness-scroll-visible {
    opacity: 1;
    transform: translateX(0);
}

.dun-fitness-map-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid rgba(74, 144, 226, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.dun-fitness-google-map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Map Address Overlay */
.dun-fitness-map-address-overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    max-width: 320px;
}

.dun-fitness-map-address-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.dun-fitness-map-pin-icon {
    color: #3e8dff;
    font-size: 20px;
}

.dun-fitness-map-address-title {
    color: #001428;
    font-size: 18px;
    font-weight: 600;
}

.dun-fitness-map-address-details {
    color: #666;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 12px;
}

.dun-fitness-map-directions-link,
.dun-fitness-map-larger-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #3e8dff;
    font-size: 16px;
    font-weight: 400;
    font-weight: 500;
    text-decoration: none;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.dun-fitness-map-directions-link:hover,
.dun-fitness-map-larger-link:hover {
    color: #357abd;
}

/* Responsive */
@media (max-width: 1024px) {
    .dun-fitness-location-container {
        flex-direction: column;
    }

    .dun-fitness-location-main-heading {
        font-size: 42px;
    }

    .dun-fitness-map-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .dun-fitness-location-main-heading {
        font-size: 34px;
    }

    .dun-fitness-map-address-overlay {
        position: relative;
        top: 0;
        left: 0;
        margin-top: 15px;
        max-width: 100%;
    }
}



























/* ========================================
   SCROLL ANIMATION STATES
   ======================================== */
.dun-fitness-transition-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.dun-fitness-transition-section.dun-fitness-section-visible {
    opacity: 1;
    transform: translateY(0);
}

.dun-fitness-strength-training-main-heading,
.dun-fitness-strength-training-description-text,
.dun-fitness-strength-training-cta-wrapper {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.dun-fitness-strength-training-main-heading.dun-fitness-content-visible {
    opacity: 1;
    transform: translateY(0);
}

.dun-fitness-strength-training-description-text.dun-fitness-content-visible {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.dun-fitness-strength-training-cta-wrapper.dun-fitness-content-visible {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}


/* ========================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ======================================== */

/* Tablets and Small Desktops */
@media (max-width: 1024px) {
    /* Hero */
    .dun-fitness-hero-heading-line {
        font-size: 80px;
        letter-spacing: 6px;
    }

    .dun-fitness-hero-subheading-text {
        font-size: 24px;
    }

}

/* Mobile Landscape and Small Tablets */
@media (max-width: 768px) {
    /* Hero */
    .dun-fitness-hero-section {
        min-height: 100vh;
        height: auto;
    }

    .dun-fitness-hero-heading-line {
        font-size: 48px;
        letter-spacing: 3px;
    }

    .dun-fitness-hero-subheading-text {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .dun-fitness-hero-trial-button {
        padding: 16px 35px;
        font-size: 16px;
    }

    /* Transition Section */
    .dun-fitness-transition-section {
        padding: 80px 20px;
    }

    .dun-fitness-transition-main-heading {
        font-size: 28px;
        letter-spacing: 2px;
    }

    /* Strength Training */
    .dun-fitness-strength-training-section {
        padding: 20px 20px;
    }

    .dun-fitness-strength-training-main-heading {
        font-size: 32px;
    }

    .dun-fitness-strength-training-description-text {
        font-size: 16px;
    }

    .dun-fitness-strength-training-image-wrapper {
        width: 100%;
        max-width: 300px;
        height: 380px;
    }

    /* Stats */
    .dun-fitness-minimal-stat-card {
        width: 100%;
        max-width: 280px;
    }

    .dun-fitness-minimal-stat-value {
        font-size: 42px;
    }

    /* Modern Options */
    .dun-fitness-modern-options-section {
        padding: 80px 20px;
    }

    .dun-fitness-modern-options-heading {
        font-size: 32px;
    }

    /* Complete Experience */
    .dun-fitness-paint-drip-container {
        display: none;
    }
    
    .dun-fitness-complete-experience-section {
        padding: 80px 20px;
        min-height: auto;
    }

    .dun-fitness-complete-experience-background-image {
        width: 100%;
        opacity: 0.3;
    }

    .dun-fitness-complete-experience-heading {
        font-size: 32px;
    }

    .dun-fitness-experience-intro-text,
    .dun-fitness-complete-experience-description {
        font-size: 16px;
        margin: 20px auto;
    }

    /* Facilities */
    .dun-fitness-facilities-grid-section {
        padding: 80px 20px;
    }

    .dun-fitness-facilities-main-heading {
        font-size: 28px;
    }

    .dun-fitness-facility-grid-item {
        width: 100%;
        max-width: 250px;
    }

    .dun-fitness-facility-image-circle {
        width: 180px;
        height: 180px;
    }

    /* Options Showcase */
    .dun-fitness-options-showcase-section {
        padding: 80px 20px 60px 20px;
    }

    .dun-fitness-options-showcase-heading {
        font-size: 28px;
    }

    .dun-fitness-options-showcase-description {
        font-size: 15px;
    }

    .dun-fitness-options-main-showcase {
        height: 300px;
    }

    .dun-fitness-thumbnail-item {
        width: 80px;
        height: 80px;
    }

    .dun-fitness-book-workout-heading {
        font-size: 28px;
    }

    .dun-fitness-book-workout-text {
        font-size: 15px;
    }

    /* Location */
    .dun-fitness-location-section {
        padding: 80px 20px;
    }

    .dun-fitness-location-main-heading {
        font-size: 28px;
    }

    .dun-fitness-location-description {
        font-size: 16px;
    }

    .dun-fitness-map-container {
        height: 350px;
    }

    .dun-fitness-experience-cta-wrapper, .dun-fitness-complete-join-wrapper {
        justify-content: center;
    }

    /* Footer */
    .dun-fitness-footer-section {
        padding: 60px 20px 0 20px;
    }
}

/* Mobile Portrait - 480px and below */
@media (max-width: 480px) {

    .dun-fitness-main-logo-image {
        margin-left: 15px;
        height: 45px;
    }

    /* Hero */
    .dun-fitness-hero-heading-line {
        font-size: 52px;
        letter-spacing: 2px;
    }

    .dun-fitness-hero-subheading-text {
        font-size: 16px;
        letter-spacing: 1.5px;
    }

    .dun-fitness-hero-trial-button {
        padding: 14px 28px;
        font-size: 16px;
        font-weight: 400;
    }

    .dun-fitness-hero-content-container {
        padding: 0 15px;
    }

    /* Transition */
    .dun-fitness-transition-section {
        padding: 0;
    }

    .dun-fitness-transition-frosted-glass-container {
        padding: 30px 20px;
    }

    .dun-fitness-transition-main-heading {
        font-size: 22px;
        letter-spacing: 1px;
    }

    .dun-fitness-strength-training-content-container {
        text-align: left;
    }

    /* Strength Training */
    .dun-fitness-strength-training-section {
        padding: 20px 15px;
    }

    .dun-fitness-strength-training-main-heading {
        font-size: 24px;
    }

    .dun-fitness-strength-training-description-text {
        font-size: 16px;
        font-weight: 400;
        max-width: 260px;
    }

    .dun-fitness-strength-training-image-wrapper {
        max-width: 280px;
        height: 350px;
    }

    /* Stats */
    .dun-fitness-minimal-stat-card {
        padding: 18px;
        max-width: 260px;
    }

    .dun-fitness-minimal-stat-value {
        font-size: 36px;
    }

    .dun-fitness-minimal-stat-label {
        font-size: 16px;
        font-weight: 400;
    }

    /* Modern Options */
    .dun-fitness-modern-options-section {
        padding: 60px 15px;
    }

    .dun-fitness-modern-options-heading {
        font-size: 24px;
    }

    .dun-fitness-expandable-header {
        padding: 20px;
    }

    .dun-fitness-expandable-preview-text {
        font-size: 15px;
    }

    /* Complete Experience */
    .dun-fitness-complete-experience-section {
        padding: 60px 15px;
    }

    .dun-fitness-complete-experience-heading {
        font-size: 24px;
    }

    .dun-fitness-experience-intro-text,
    .dun-fitness-complete-experience-description {
        font-size: 16px;
        font-weight: 400;
    }

    .dun-fitness-experience-trial-button,
    .dun-fitness-complete-join-button {
        padding: 14px 28px;
        font-size: 16px;
        font-weight: 400;
    }

    /* Facilities */
    .dun-fitness-facilities-grid-section {
        padding: 60px 15px;
    }

    .dun-fitness-facilities-main-heading {
        font-size: 22px;
    }

    .dun-fitness-facility-grid-item {
        max-width: 220px;
    }

    .dun-fitness-facility-image-circle {
        width: 125px;
        height: 125px;
        border-width: 3px;
    }

    .dun-fitness-facility-rotating-ring {
        display: none;
    }

    .dun-fitness-facility-description {
        font-size: 16px;
        font-weight: 400;
    }

    .dun-fitness-facilities-closing-statement {
        font-size: 16px;
    }

    /* Options Showcase */
    .dun-fitness-options-showcase-section {
        padding: 60px 15px 50px 15px;
    }

    .dun-fitness-options-showcase-heading {
        font-size: 22px;
    }

    .dun-fitness-options-showcase-description {
        font-size: 16px;
        font-weight: 400;
    }

    .dun-fitness-options-main-showcase {
        height: 250px;
    }

    .dun-fitness-thumbnail-item {
        width: 70px;
        height: 70px;
    }

    .dun-fitness-options-thumbnail-grid {
        gap: 8px;
    }

    .dun-fitness-book-workout-heading {
        font-size: 22px;
    }

    .dun-fitness-book-workout-box {
        padding: 25px;
    }

    .dun-fitness-book-workout-text,
    .dun-fitness-book-expanded-text {
        font-size: 16px;
        font-weight: 400;
    }

    /* Location */
    .dun-fitness-location-section {
        padding: 60px 15px;
    }

    .dun-fitness-location-main-heading {
        font-size: 22px;
    }

    .dun-fitness-location-description {
        font-size: 16px;
        font-weight: 400;
    }

    .dun-fitness-location-call-button {
        padding: 14px 28px;
        font-size: 16px;
        font-weight: 400;
    }

    .dun-fitness-map-container {
        height: 300px;
    }

    .dun-fitness-map-address-overlay {
        padding: 15px;
    }


    .dun-fitness-facility-item-container {
        position: relative;
        width: 125px;
        height: 125px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Extra Small Mobile - 320px */
@media (max-width: 400px) {
    .dun-fitness-strength-training-main-heading {
        max-width: 260px;
    }
    
    .dun-fitness-hero-heading-line {
        font-size: 52px;
    }

    .dun-fitness-transition-main-heading,
    .dun-fitness-facilities-main-heading,
    .dun-fitness-options-showcase-heading,
    .dun-fitness-book-workout-heading,
    .dun-fitness-location-main-heading {
        font-size: 20px;
    }

    .dun-fitness-strength-training-main-heading,
    .dun-fitness-complete-experience-heading,
    .dun-fitness-modern-options-heading {
        font-size: 22px;
    }

    .dun-fitness-minimal-stat-value {
        font-size: 32px;
    }

    .dun-fitness-thumbnail-item {
        width: 60px;
        height: 60px;
    }

    .dun-fitness-options-main-showcase {
        height: 220px;
    }
}