/* ========================================
   MEMBERSHIPS HERO SECTION - FULL VIEWPORT
   ======================================== */
.dun-fitness-memberships-hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: #000;
}

/* ========================================
   BACKGROUND IMAGE & OVERLAYS
   ======================================== */
.dun-fitness-memberships-hero-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.dun-fitness-memberships-hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('media/image/membership-hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.05);
    animation: dunFitnessMembershipsBackgroundReveal 2s ease-out 0.2s forwards;
}

@keyframes dunFitnessMembershipsBackgroundReveal {
    from {
        opacity: 0;
        transform: scale(1.05);
        filter: brightness(0.3);
    }
    to {
        opacity: 1;
        transform: scale(1);
        filter: brightness(1);
    }
}

/* Blue Gradient Overlay - Signature Blue Tone */
.dun-fitness-memberships-hero-blue-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(53, 122, 189, 0.75) 0%,
        rgba(74, 144, 226, 0.6) 20%,
        rgba(26, 26, 26, 0.7) 50%,
        rgba(0, 20, 40, 0.85) 100%
    );
    z-index: 2;
    mix-blend-mode: multiply;
}

/* Dark Vignette Overlay */
.dun-fitness-memberships-hero-dark-vignette-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        ellipse at center,
        transparent 0%,
        rgba(0, 0, 0, 0.4) 60%,
        rgba(0, 0, 0, 0.8) 100%
    );
    z-index: 3;
}

/* ========================================
   HERO CONTENT CONTAINER
   ======================================== */
.dun-fitness-memberships-hero-content-container {
    position: relative;
    z-index: 10;
    max-width: 1100px;
    width: 100%;
    padding: 150px 40px;
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 45px;
    text-align: left;
}

/* ========================================
   MAIN HEADINGS - BOLD AND DIRECT
   ======================================== */
.dun-fitness-memberships-hero-main-headings-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.dun-fitness-memberships-hero-heading-line-one,
.dun-fitness-memberships-hero-heading-line-two,
.dun-fitness-memberships-hero-heading-line-three {
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: 3px;
    text-shadow: 
        0 0 40px rgba(74, 144, 226, 0.5),
        0 6px 20px rgba(0, 0, 0, 0.8);
    margin: 0;
}

.dun-fitness-memberships-hero-heading-line-one {
    font-size: 78px;
    opacity: 0;
    transform: translateY(50px);
    animation: dunFitnessMembershipsHeadingImpact 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.4s forwards;
}

.dun-fitness-memberships-hero-heading-line-two {
    font-size: 70px;
    opacity: 0;
    transform: translateY(50px);
    animation: dunFitnessMembershipsHeadingImpact 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s forwards;
}

.dun-fitness-memberships-hero-heading-line-three {
    font-size: 78px;
    color: #3e8dff;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    animation: dunFitnessMembershipsHeadingImpactGlow 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s forwards;
    text-shadow: 
        0 0 50px rgba(74, 144, 226, 0.8),
        0 0 100px rgba(74, 144, 226, 0.5),
        0 6px 20px rgba(0, 0, 0, 0.8);
}

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

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

.dun-fitness-memberships-heading-word {
    display: inline-block;
    margin: 7px 0;
}

/* Remove generic underline */
.dun-fitness-memberships-heading-animated-underline {
    display: none;
}

.dun-fitness-memberships-underline-segment {
    display: none;
}

/* ========================================
   DESCRIPTION TEXT
   ======================================== */
.dun-fitness-memberships-hero-description-wrapper {
    max-width: 750px;
    opacity: 0;
    transform: translateY(30px);
    animation: dunFitnessMembershipsDescriptionReveal 0.8s ease-out 1.2s forwards;
}

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

.dun-fitness-memberships-hero-description-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 22px;
    font-weight: 350;
    line-height: 1.5;
    font-family: 'Noto Sans';
    letter-spacing: 1.5px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7);
}

/* ========================================
   CALL NOW BUTTON - CLEAN POWERFUL DESIGN
   ======================================== */
.dun-fitness-memberships-hero-cta-wrapper {
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    animation: dunFitnessMembershipsCtaReveal 0.8s ease-out 1.5s forwards;
}

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

.dun-fitness-memberships-call-now-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 22px 55px;
    margin: 0 auto;
    background: linear-gradient(135deg, #3e8dff 0%, #357abd 100%);
    color: #ffffff;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 6px;
    overflow: visible;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 35px rgba(74, 144, 226, 0.5),
        inset 0 -2px 8px rgba(0, 0, 0, 0.2);
}

/* HOVER INTERACTION #1: Bold Lift with Enhanced Shadow */
.dun-fitness-memberships-call-now-button:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 18px 50px rgba(74, 144, 226, 0.7),
        inset 0 -2px 8px rgba(0, 0, 0, 0.2);
}

/* ========================================
   BUTTON ICON WRAPPER - PHONE RING EFFECT
   ======================================== */
.dun-fitness-memberships-button-icon-wrapper {
    position: relative;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.3s ease;
}

.dun-fitness-memberships-phone-icon {
    font-size: 18px;
    transition: transform 0.3s ease;
}

/* HOVER INTERACTION #2: Phone Ring Animation */
.dun-fitness-memberships-call-now-button:hover .dun-fitness-memberships-phone-icon {
    animation: dunFitnessPhoneRing 0.6s ease-in-out;
}

@keyframes dunFitnessPhoneRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: rotate(-15deg);
    }
    20%, 40%, 60%, 80% {
        transform: rotate(15deg);
    }
}

.dun-fitness-memberships-icon-rotating-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 38px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

/* HOVER INTERACTION #3: Expanding Ring */
.dun-fitness-memberships-call-now-button:hover .dun-fitness-memberships-icon-rotating-ring {
    width: 54px;
    height: 54px;
    border-color: rgba(255, 255, 255, 0.4);
}

.dun-fitness-memberships-button-text {
    position: relative;
    letter-spacing: 0px;
    font-size: 20px;
    z-index: 2;
}

/* HOVER INTERACTION #4: Background Darkening on Hover */
.dun-fitness-memberships-call-now-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    border-radius: 6px;
}

.dun-fitness-memberships-call-now-button:hover::before {
    background: rgba(0, 0, 0, 0.1);
}

/* Remove generic glow and shine effects */
.dun-fitness-memberships-button-hover-glow {
    display: none;
}

.dun-fitness-memberships-button-shine-effect {
    display: none;
}

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

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

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

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

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

.dun-fitness-memberships-scroll-text {
    color: #ffffff;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.dun-fitness-memberships-scroll-icon {
    color: #3e8dff;
    font-size: 22px;
    animation: dunFitnessMembershipsScrollBounce 2s ease-in-out infinite;
}

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

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1200px) {
    .dun-fitness-memberships-hero-heading-line-one,
    .dun-fitness-memberships-hero-heading-line-two,
    .dun-fitness-memberships-hero-heading-line-three {
        font-size: 64px;
    }

    .dun-fitness-memberships-tech-line {
        width: 100px !important;
        height: 150px !important;
    }

    .dun-fitness-memberships-tech-line::before {
        font-size: 36px !important;
    }
}

@media (max-width: 768px) {
    .dun-fitness-memberships-hero-section {
        min-height: 600px;
    }

    .dun-fitness-memberships-hero-heading-line-one,
    .dun-fitness-memberships-hero-heading-line-two,
    .dun-fitness-memberships-hero-heading-line-three {
        font-size: 46px;
        letter-spacing: 2px;
        line-height: 1;
    }

    .dun-fitness-memberships-hero-description-text {
        font-size: 18px;
    }

    .dun-fitness-memberships-call-now-button {
        padding: 18px 40px;
        font-size: 17px;
        gap: 15px;
    }

    .dun-fitness-memberships-button-icon-wrapper {
        width: 34px;
        height: 34px;
    }

    .dun-fitness-memberships-phone-icon {
        font-size: 16px;
    }

    /* Hide weight plates and rep counters on mobile */
    .dun-fitness-memberships-tech-lines-container,
    .dun-fitness-memberships-data-points-container {
        display: none;
    }
}

@media (max-width: 480px) {
    .dun-fitness-memberships-hero-content-container {
        padding: 120px 30px;
        gap: 35px;
    }

    .dun-fitness-memberships-hero-heading-line-one,
    .dun-fitness-memberships-hero-heading-line-two,
    .dun-fitness-memberships-hero-heading-line-three {
        font-size: 40px;
        letter-spacing: 1.5px;
    }

    .dun-fitness-memberships-heading-word {
        margin: 0;
    }

    .dun-fitness-memberships-hero-description-text {
        font-size: 16px;
    }

    .dun-fitness-memberships-call-now-button {
        padding: 16px 32px;
        font-size: 15px;
        flex-direction: column-reverse;
        gap: 12px;
    }

    .dun-fitness-memberships-button-icon-wrapper {
        width: 30px;
        height: 30px;
    }

    .dun-fitness-memberships-phone-icon {
        font-size: 14px;
    }

    .dun-fitness-memberships-scroll-indicator-wrapper {
        bottom: 30px;
    }

    .dun-fitness-memberships-scroll-line-animated {
        height: 50px;
    }
}




/* ========================================
   MEMBERSHIP PRICING SECTION
   ======================================== */
.dun-fitness-membership-pricing-section {
    position: relative;
    width: 100%;
    height: max-content;
    min-height: 100vh;
    background: linear-gradient(180deg, #001428 0%, #00253d 100%);
    padding: 120px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dun-fitness-membership-pricing-container {
    max-width: 1400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 80px;
}

.dun-fitness-membership-pricing-heading {
    color: #ffffff;
    font-size: 64px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 4px 20px rgba(74, 144, 226, 0.4);
    margin: 0;
}

/* ========================================
   ROTATING CARDS STAGE - CIRCULAR ROTATION
   ======================================== */
.dun-fitness-rotating-cards-stage {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dun-fitness-membership-card-wrapper {
    position: absolute;
    width: 420px;
    transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

/* Card Positions - Circular Layout */
.dun-fitness-card-position-center {
    z-index: 3;
    transform: translateX(0) translateY(0) scale(1.1);
    opacity: 1;
}

.dun-fitness-card-position-left {
    z-index: 2;
    transform: translateX(-300px) translateY(50px) scale(0.85);
    opacity: 0.6;
}

.dun-fitness-card-position-right {
    z-index: 2;
    transform: translateX(300px) translateY(50px) scale(0.85);
    opacity: 0.6;
}

/* Hover Effect on Non-Center Cards */
.dun-fitness-card-position-left:hover,
.dun-fitness-card-position-right:hover {
    opacity: 0.9;
}

/* ========================================
   APPLE-STYLE CARD DESIGN WITH LIGHT EFFECT
   ======================================== */
.dun-fitness-membership-card-outer {
    width: 100%;
    height: 600px;
    border-radius: 16px;
    padding: 1px;
    background: radial-gradient(circle 400px at 0% 0%, #444444, #0c0d0d);
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* Moving Light Dot */
.dun-fitness-membership-card-moving-dot {
    width: 6px;
    height: 6px;
    position: absolute;
    background-color: #3e8dff;
    box-shadow: 0 0 15px #3e8dff;
    border-radius: 100px;
    z-index: 2;
    right: 10%;
    top: 10%;
    animation: dunFitnessCardDotMove 8s linear infinite;
}

@keyframes dunFitnessCardDotMove {
    0%, 100% {
        top: 10%;
        right: 10%;
    }
    25% {
        top: 10%;
        right: calc(100% - 40px);
    }
    50% {
        top: calc(100% - 35px);
        right: calc(100% - 40px);
    }
    75% {
        top: calc(100% - 35px);
        right: 10%;
    }
}

/* Card Inner Container */
.dun-fitness-membership-card-inner {
    z-index: 1;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    border: solid 1px #202222;
    background: radial-gradient(circle 500px at 0% 0%, #2a2a2a, #0c0d0d);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Apple-Style Light Ray */
.dun-fitness-membership-card-ray {
    width: 280px;
    height: 60px;
    border-radius: 100px;
    position: absolute;
    background-color: #3e8dff;
    opacity: 0.25;
    box-shadow: 0 0 60px #3e8dff;
    filter: blur(12px);
    transform-origin: 10%;
    top: 0%;
    left: 0;
    transform: rotate(40deg);
    z-index: 1;
}

/* Grid Lines for Tech Look */
.dun-fitness-membership-card-grid-line {
    position: absolute;
    background-color: #2c2c2c;
    z-index: 1;
}

.dun-fitness-grid-line-top {
    top: 15%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #555555 30%, #1d1f1f 70%);
}

.dun-fitness-grid-line-bottom {
    bottom: 15%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, #1d1f1f 30%, #555555 70%);
}

.dun-fitness-grid-line-left {
    left: 12%;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, #555555 30%, #222424 70%);
}

.dun-fitness-grid-line-right {
    right: 12%;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, #222424 30%, #555555 70%);
}

/* ========================================
   CARD CONTENT
   ======================================== */
.dun-fitness-membership-card-content {
    position: relative;
    z-index: 2;
    padding: 40px 35px 30px 35px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.dun-fitness-membership-card-title {
    color: #3e8dff;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
    text-shadow: 0 0 20px rgba(74, 144, 226, 0.4);
}

.dun-fitness-membership-card-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.4;
    font-family: 'Noto Sans';
    margin: 0;
}

/* Special Badge for Monthly Card */
.dun-fitness-membership-card-badge {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), #c4c4c4);
    color: #000000;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 4px;
    display: inline-block;
    align-self: flex-start;
    transform: rotate(-2deg);
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

/* Card CTA Button */
.dun-fitness-membership-card-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: #3e8dff;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.dun-fitness-membership-card-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.5);
    background: #357abd;
}

.dun-fitness-membership-card-button-text {
    position: relative;
}

/* ========================================
   CARD IMAGE CONTAINER
   ======================================== */
.dun-fitness-membership-card-image-container {
    position: relative;
    z-index: 2;
    width: 100%;
    flex: 1;
    overflow: hidden;
    border-radius: 0 0 15px 15px;
}

.dun-fitness-membership-card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}

.dun-fitness-membership-card-wrapper:hover .dun-fitness-membership-card-image {
    transform: scale(1.05);
}

/* ========================================
   RESPONSIVE DESIGN FOR PRICING SECTION
   ======================================== */
@media (max-width: 1024px) {
    .dun-fitness-membership-pricing-heading {
        font-size: 52px;
    }

    .dun-fitness-rotating-cards-stage {
        height: 650px;
    }

    .dun-fitness-membership-card-wrapper {
        width: 380px;
    }

    .dun-fitness-membership-card-outer {
        height: 550px;
    }

    .dun-fitness-card-position-left {
        transform: translateX(-250px) translateY(50px) scale(0.85);
    }

    .dun-fitness-card-position-right {
        transform: translateX(250px) translateY(50px) scale(0.85);
    }
}

@media (max-width: 768px) {
    .dun-fitness-membership-pricing-section {
        padding: 80px 20px;
        min-height: auto;
    }

    .dun-fitness-membership-pricing-heading {
        font-size: 38px;
    }

    .dun-fitness-rotating-cards-stage {
        height: auto;
        flex-direction: column;
        gap: 40px;
    }

    .dun-fitness-membership-card-wrapper {
        position: relative;
        width: 100%;
        max-width: 420px;
        transform: none !important;
        opacity: 1 !important;
        z-index: 1 !important;
    }

    .dun-fitness-membership-card-outer {
        height: 580px;
    }

    .dun-fitness-membership-card-title {
        font-size: 28px;
    }

    .dun-fitness-membership-card-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .dun-fitness-membership-pricing-heading {
        font-size: 32px;
    }

    .dun-fitness-membership-card-outer {
        height: 550px;
    }

    .dun-fitness-membership-card-content {
        padding: 30px 25px 25px 25px;
        gap: 15px;
    }

    .dun-fitness-membership-card-title {
        font-size: 24px;
    }

    .dun-fitness-membership-card-description {
        font-size: 13px;
    }

    .dun-fitness-membership-card-badge {
        font-size: 10px;
        padding: 6px 12px;
    }

    .dun-fitness-membership-card-cta-button {
        padding: 12px 28px;
        font-size: 14px;
    }
}


/* ========================================
   WHY CHOOSE DUN FITNESS SECTION
   ======================================== */
.dun-fitness-why-choose-section {
    position: relative;
    width: 100%;
    height: max-content;
    background: #f5f5f5;
    padding: 70px 50px;
    overflow: hidden;
}

.dun-fitness-why-choose-diagonal-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.14;
    pointer-events: none;
}

.dun-fitness-why-choose-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

/* Left Side: Heading + Closing Text */
.dun-fitness-why-choose-left-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 500px;
}

.dun-fitness-why-choose-main-heading {
    color: #3e8dff;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
}

.dun-fitness-closing-statement {
    color: #001428;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    font-family: 'Noto Sans';
    margin: 0;
}

/* Right Side: Features Grid - 2 Columns */
.dun-fitness-why-choose-features-grid {
    flex: 1.2;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
}

.dun-fitness-why-choose-feature-item {
    width: calc(50% - 25px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease;
}

/* Icon Wrapper */
.dun-fitness-feature-icon-wrapper {
    width: 70px;
    height: 70px;
    background: #001428;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 20, 40, 0.2);
}

.dun-fitness-feature-icon {
    color: #3e8dff;
    font-size: 32px;
    transition: all 0.4s ease;
}

/* Feature Title */
.dun-fitness-feature-title {
    color: #001428;
    font-size: 19px;
    font-weight: 500;
    line-height: 1.4;
    font-family: 'Noto Sans';
    margin: 0;
}

/* ========================================
   RESPONSIVE DESIGN FOR WHY CHOOSE SECTION
   ======================================== */
@media (max-width: 1024px) {
    .dun-fitness-why-choose-main-heading {
        font-size: 48px;
    }

    .dun-fitness-why-choose-container {
        gap: 60px;
    }

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

@media (max-width: 768px) {
    .dun-fitness-why-choose-section {
        padding: 80px 30px;
    }

    .dun-fitness-why-choose-container {
        flex-direction: column;
        gap: 50px;
    }

    .dun-fitness-why-choose-left-content {
        max-width: 100%;
    }

    .dun-fitness-why-choose-main-heading {
        font-size: 38px;
    }

    .dun-fitness-why-choose-features-grid {
        gap: 40px;
    }

    .dun-fitness-why-choose-feature-item {
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .dun-fitness-why-choose-diagonal-svg {
        width: 60%;
        opacity: 0.08;
    }
}

@media (max-width: 480px) {
    .dun-fitness-why-choose-section {
        padding: 60px 20px;
    }

    .dun-fitness-why-choose-main-heading {
        font-size: 32px;
        text-align: center;
    }

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

    .dun-fitness-feature-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .dun-fitness-feature-icon {
        font-size: 28px;
    }

    .dun-fitness-feature-title {
        font-size: 17px;
        text-align: center;
    }
}





/* ========================================
   READY TO JOIN CTA SECTION
   ======================================== */
.dun-fitness-ready-to-join-section {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    background: #1a1a1a;
}

/* Background Image */
.dun-fitness-ready-to-join-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('media/image/cta-bg.png');
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
    z-index: 1;
}

/* Blue Overlay */
.dun-fitness-ready-to-join-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 20, 40, 0.95) 0%,
        rgba(0, 20, 40, 0.85) 40%,
        rgba(26, 26, 26, 0.7) 70%,
        transparent 100%
    );
    z-index: 2;
}

.dun-fitness-ready-to-join-container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 100%;
    padding: 0 50px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
}

/* ========================================
   ELECTRIC REVEAL EFFECT ON HEADING
   ======================================== */
.dun-fitness-ready-to-join-heading {
    color: #ffffff;
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.dun-fitness-ready-heading-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    filter: blur(10px);
    position: relative;
}

/* Electric Flash Effect */
.dun-fitness-ready-heading-word::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #3e8dff;
    opacity: 0;
    filter: blur(20px);
}

.dun-fitness-ready-heading-word.dun-fitness-electric-reveal::before {
    animation: dunFitnessSimpleFlash 0.4s ease-out;
}

@keyframes dunFitnessSimpleFlash {
    0% {
        opacity: 0;
    }
    30% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
    }
}

/* Scroll Animation Classes */
.dun-fitness-ready-heading-word.dun-fitness-electric-reveal {
    animation: dunFitnessElectricReveal 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes dunFitnessElectricReveal {
    0% {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(10px);
    }
    60% {
        opacity: 0.8;
        filter: blur(3px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Stagger delays for each word */
.dun-fitness-word-ready.dun-fitness-electric-reveal {
    animation-delay: 0s;
}

.dun-fitness-word-to.dun-fitness-electric-reveal {
    animation-delay: 0.15s;
}

.dun-fitness-word-to.dun-fitness-electric-reveal::before {
    animation-delay: 0.15s;
}

.dun-fitness-word-join.dun-fitness-electric-reveal {
    animation-delay: 0.3s;
}

.dun-fitness-word-join.dun-fitness-electric-reveal::before {
    animation-delay: 0.3s;
}

/* Description Text */
.dun-fitness-ready-to-join-description {
    font-family: 'Noto Sans';
    color: rgba(255, 255, 255, 0.9);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.6;
    max-width: 650px;
    margin: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.dun-fitness-ready-to-join-description.dun-fitness-description-visible {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

/* Call Button */
.dun-fitness-ready-to-join-call-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 45px;
    background: #3e8dff;
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(74, 144, 226, 0.4);
    opacity: 0;
    transform: translateY(20px);
}

.dun-fitness-ready-to-join-call-button.dun-fitness-button-visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
    transition-delay: 0.7s;
}

.dun-fitness-ready-to-join-call-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(74, 144, 226, 0.6);
    background: #357abd;
}

/* Phone Icon Wrapper */
.dun-fitness-ready-button-icon-wrapper {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dun-fitness-ready-phone-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
}

/* Phone Ring Vibration on Hover */
.dun-fitness-ready-to-join-call-button:hover .dun-fitness-ready-phone-icon {
    animation: dunFitnessReadyPhoneRing 0.6s ease-in-out;
}

@keyframes dunFitnessReadyPhoneRing {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: rotate(-15deg);
    }
    20%, 40%, 60%, 80% {
        transform: rotate(15deg);
    }
}

.dun-fitness-ready-call-button-text {
    position: relative;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 1024px) {
    .dun-fitness-ready-to-join-heading {
        font-size: 58px;
    }

    .dun-fitness-ready-to-join-description {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .dun-fitness-ready-to-join-section {
        height: 500px;
    }

    .dun-fitness-ready-to-join-container {
        padding: 0 30px;
    }

    .dun-fitness-ready-to-join-heading {
        font-size: 48px;
    }

    .dun-fitness-ready-to-join-description {
        font-size: 18px;
    }

    .dun-fitness-ready-to-join-call-button {
        padding: 18px 38px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .dun-fitness-ready-to-join-section {
        height: 450px;
    }

    .dun-fitness-ready-to-join-container {
        padding: 0 20px;
        align-items: center;
        max-width: 340px;
    }

    .dun-fitness-ready-to-join-heading {
        font-size: 38px;
        gap: 10px;
    }

    .dun-fitness-ready-to-join-description {
        font-size: 16px;
    }

    .dun-fitness-ready-to-join-call-button {
        padding: 16px 32px;
        font-size: 16px;
    }
}