/* ----------------------------------
   RESET & BASE
---------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --page-bg: #111216;
    --card-radius: 26px;
    --card-max-width: 1300px;
    --accent: #f3d000;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto;
    background: var(--page-bg);
    color: #fff;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
}

/* ----------------------------------
   PAGE CONTAINER
---------------------------------- */
.page {
    padding: 18px;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: var(--card-max-width);
    border-radius: var(--card-radius);
    background: #000;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
    min-height: 72vh;
}

/* ----------------------------------
   NAVBAR
---------------------------------- */
.navbar {
    position: absolute;
    top: 18px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 36px;
    z-index: 6;
    pointer-events: none;
}

.navbar * {
    pointer-events: auto;
}

/* Left Menu */
.nav-left {
    display: flex;
    align-items: center;
    gap: 26px;
}


.nav-left a:hover::after {
    width: 100%;
}

nav a {
    position: relative;
    text-decoration: none;
    color: white;
    padding: 5px 0;
    /* keeps spacing stable */
}

nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: white;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 40px;
    /* underline length */
}


/* Logo */
.logo-box {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    align-items: center;
}

.logo-box img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.logo-box .brand {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
}

/* Menu Icon */
.menu-icon {
    display: none;
    align-items: center;
    gap: 10px;
    margin-left: auto;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}

.icon-box {
    background: #fff;
    color: #000;
    padding: 8px 12px;
    border-radius: 12px;
}

/* ----------------------------------
   HERO
---------------------------------- */
.hero {
    width: 100%;
    /* min-height: 72vh; */
    min-height: 100vh;
    background: url("back2.jpg") center/cover no-repeat;
    position: relative;
}

.hero .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .45);
}

/* Hero Content */
.hero-content {
    position: absolute;
    left: 56px;
    top: 22%;
    max-width: 600px;
    z-index: 4;
}

.hero-content h1 {
    font-size: 70px;
    line-height: .95;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 18px;
    text-shadow: 0 6px 18px rgba(0, 0, 0, .6);
}

.lead {
    max-width: 540px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    margin-bottom: 20px;
}

/* Button */
.explore {
    background: var(--accent);
    color: #111;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: .35s;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.explore:hover {
    background: linear-gradient(90deg, #111, var(--accent));
    color: #fff;
    transform: translateY(-3px);
}

.actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.address {
    margin-top: 32px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}

/* ----------------------------------
   APP BOX
---------------------------------- */
.app-box {
    position: absolute;
    right: 36px;
    bottom: 36px;
    width: 240px;
    background: #fff;
    color: #000;
    padding: 18px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
    z-index: 5;
}

.app-box h4 {
    margin-bottom: 6px;
}

.app-box .small {
    font-size: 13px;
    margin-bottom: 12px;
    color: #333;
}

.app-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.app-buttons img {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    object-fit: cover;
}

/* ----------------------------------
   MOBILE NAV
---------------------------------- */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: #000;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: .3s ease;
    z-index: 9999;
}

.mobile-nav a {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

.close-nav {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

.mobile-nav.show {
    right: 0;
}

/* HEADER MAIN CONTAINER */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* pushes menu to right */
    width: 100%;
    padding: 10px 20px;
    position: relative;
    z-index: 10;
}

/* LOGO + TITLE WRAPPER */
.logo-area {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* MENU BUTTON ALWAYS ON RIGHT */
.menu-btn {
    margin-left: auto !important;
    /* forces to right */
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    color: black;
    width: 38px;
    height: 38px;
    border-radius: 50%;
}

/* ----------------------------------
   RESPONSIVE BREAKPOINTS
---------------------------------- */

/* ---------- TABLET ---------- */
@media (max-width: 800px) {
    .app-box {
        display: none !important;
    }
}


@media (max-width: 1100px) {
    .hero-content h1 {
        font-size: 62px;
    }

    .logo-box img {
        width: 42px;
        height: 42px;
    }
}

/* ---------- MOBILE NAV ---------- */
@media (max-width: 800px) {
    .nav-left {
        display: none;
    }

    .logo-box {
        left: 20px !important;
        transform: none !important;
    }

    .menu-icon {
        display: flex;
        margin-left: auto;
    }

    .hero-content {
        left: 24px;
        top: 26%;
        max-width: 80%;
    }

    .hero-content h1 {
        font-size: 35px;
        line-height: 1.1;
    }


}

/* ---------- SMALL MOBILE ---------- */
@media (max-width: 480px) {
    .app-box {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .hero-content {
        left: 18px;
        top: 20%;
        max-width: 90%;
    }

    .hero-content h1 {
        font-size: 21px;
    }

    .app-box {
        padding: 15px;
        width: 90%;
    }
}

.training-section {
    width: 100%;
    padding: 80px 120px;
    /* background: #1a1a1a; */
    color: white;
}

/* HEADER */
.training-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.training-arrows {
    display: flex;
    gap: 10px;
}

.arrow {
    width: 45px;
    height: 25px;
    display: inline-block;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.arrow.white {
    background: #fff;
}

.arrow.yellow {
    background: #e6d21c;
}

.training-header h2 {
    font-size: 60px;
    font-weight: 900;
}

/* CONTENT GRID */
.training-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.2fr;
    gap: 30px;
}

/* LEFT BOX */
.offer-box {
    background: #2c2c2c;
    padding: 35px;
    border-radius: 25px;
}

.offer-box h3 {
    font-size: 28px;
    font-weight: 800;
}

.offer-box p {
    margin: 15px 0 25px;
    font-size: 16px;
    opacity: 0.8;
}

.offer-btn {
    padding: 10px 20px;
    background: white;
    color: black;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.35s ease-in-out;
}

/* HOVER EFFECT */
.offer-btn:hover {
    background: linear-gradient(90deg, #fff, #e6d21c);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* MIDDLE MAIN IMAGE */
.main-img img {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    object-fit: cover;
}

/* RIGHT TRAINER BOX */
.trainer-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trainer-card {
    background: #fff;
    color: black;
    padding: 20px;
    width: 180px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.trainer-info h3 {
    font-size: 32px;
    margin: 0;
}

.trainer-card .trainer-arrow {
    background: #000;
    color: white;
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease;
}

/* HOVER EFFECT */
.trainer-card .trainer-arrow:hover {
    background: #e6d21c;
    color: #000;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.trainer-box img {
    width: 100%;
    height: 250px;
    border-radius: 25px;
    object-fit: cover;
}

.trainer-text {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.5;
}

.explore-btn {
    width: 150px;
    padding: 12px 16px;
    background: #e6d21c;
    border: none;
    border-radius: 20px;
    color: black;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;

    /* Smooth animation */
    transition: 0.35s ease-in-out;
}

/* HOVER EFFECT (Same as your Third Effect) */
.explore-btn:hover {
    background: linear-gradient(90deg, #111, #e6d21c);
    color: white;
    transform: translateY(-3px);
}


.membership-section {
    padding: 70px 120px;
    /* background: #2b2b2b; */
    color: white;
    position: relative;
}

/* LEFT ARROWS */
.left-arrows {
    position: absolute;
    top: 40px;
    left: 120px;
    display: flex;
    gap: 10px;
}

.arrow {
    width: 50px;
    height: 25px;
    display: inline-block;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.grey {
    background: #bfbfbf;
}

.grey2 {
    background: #8a8a8a;
}

/* HEADING */
.membership-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.heading-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.membership-header h2 {
    font-size: 45px;
    font-weight: 900;
    margin: 0;
    /* text-align: right; */
}


.line {
    width: 200px;
    height: 3px;
    background: #7e7e7e;
    margin: 15px 0 15px auto;
    border-radius: 5px;
}

.header-arrows {
    /* NEW → bring arrows closer */
    margin-top: -5px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.circle-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    font-size: 18px;
    background: white;
    color: black;
    cursor: pointer;
    transition: 0.3s ease;
}

.circle-btn:hover {
    transform: scale(1.1);
    background: #ffea4f;
}

/* PLANS GRID */
.plans-grid {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

/* CARD BASE STYLE */
.plan-card {
    padding: 30px;
    border-radius: 25px;
    background: #3a3a3a;
    transition: 0.35s ease;
    cursor: pointer;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.35);
}

/* PREMIUM WHITE CARD */
.premium {
    background: white;
    color: black;
}

.premium:hover {
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.4);
}

/* PREMIUM PRICE LAYOUT */
.plan-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.plan-top h2 {
    font-size: 32px;
}

.plan-top span {
    font-size: 14px;
    opacity: 0.7;
}

/* YELLOW BUTTON */
.yellow-btn {
    margin-top: 10px;
    padding: 10px 20px;
    border-radius: 20px;
    background: #d8c924;
    border: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

.yellow-btn:hover {
    background: #fff04b;
    transform: scale(1.08);
}

/* FEATURES LIST */
.features {
    margin-top: 25px;
    line-height: 1.8;
    font-size: 15px;
}

/* DARK CARDS */
.dark {
    background: #404040;
}

.price {
    display: inline-block;
    background: #282828;
    padding: 6px 14px;
    border-radius: 15px;
    margin: 10px 0 15px;
}

/* ---------------------------
   RESPONSIVE MEMBERSHIP SECTION
----------------------------*/

/* Tablets */
@media (max-width: 1024px) {

    .membership-section {
        padding: 50px 60px;
    }

    .left-arrows {
        left: 60px;
        top: 30px;
    }

    .membership-header h2 {
        font-size: 38px;
    }

    .line {
        width: 150px;
    }

    .plans-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .plan-card {
        padding: 25px;
    }

    .plan-top h2 {
        font-size: 28px;
    }
}


/* Mobile Large (600px) */
@media (max-width: 768px) {

    .membership-section {
        padding: 40px 30px;
    }

    .left-arrows {
        left: 30px;
        top: 20px;
        transform: scale(0.9);
    }

    .membership-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .heading-block {
        align-items: flex-start;
    }

    .membership-header h2 {
        font-size: 32px;
    }

    .line {
        width: 120px;
        margin-left: 0;
    }

    .header-arrows {
        justify-content: flex-start;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card {
        padding: 22px;
    }

    .plan-top h2 {
        font-size: 24px;
    }

    .price {
        font-size: 14px;
    }
}


/* Small Mobile (480px) */
@media (max-width: 480px) {

    .membership-section {
        padding: 30px 20px;
    }

    .left-arrows {
        left: 20px;
        top: 10px;
        transform: scale(0.8);
    }

    .membership-header h2 {
        font-size: 26px;
    }

    .plan-top h2 {
        font-size: 22px;
    }

    .yellow-btn {
        padding: 8px 16px;
        font-size: 14px;
    }

    .features {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* -----------------------------------
   NEWSLETTER SECTION
----------------------------------- */
.newsletter-section {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin: 0 20px;
}


.newsletter-left h2 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 20px;
}

.newsletter-input {
    display: flex;
    margin-top: 20px;
}

.newsletter-input input {
    width: 330px;
    padding: 15px 20px;
    border-radius: 6px 0 0 6px;
    border: none;
    background: #3a3a3a;
    color: #fff;
    outline: none;
    font-size: 16px;
}

.newsletter-input button {
    background: #e6c721;
    padding: 0 25px;
    border: none;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s;
}

.newsletter-input button:hover {
    background: #f4d738;
    transform: translateY(-2px);
}

.privacy-text {
    margin-top: 15px;
    font-size: 13px;
    color: #8d8d8d;
}

.newsletter-map img {
    width: 500px;
    border-radius: 20px;
    border: 4px solid #fff;
}

/* -----------------------------
   NEWSLETTER RESPONSIVE DESIGN
------------------------------*/

/* Tablets */
@media (max-width: 1024px) {

    .newsletter-section {
        margin-left: 20px;
        margin-right: 20px;
    }

    .newsletter-left h2 {
        font-size: 32px;
    }

    .newsletter-input input {
        width: 260px;
        font-size: 15px;

    }

    .newsletter-map img {
        width: 380px;

    }
}

/* Large Mobile */
@media (max-width: 768px) {

    .newsletter-section {
        flex-direction: column;
        gap: 30px;
    }

    .newsletter-left h2 {
        font-size: 28px;
    }

    .newsletter-input {
        width: 100%;
    }

    .newsletter-input input {
        width: 100%;
        font-size: 15px;
        border-radius: 6px;
        margin-bottom: 10px;
    }

    .newsletter-input button {
        width: 100%;
        padding: 12px 20px;
        border-radius: 6px;
    }

    /* Convert to vertical layout */
    .newsletter-input {
        flex-direction: column;
    }

    .newsletter-map img {
        width: 100%;
        height: auto;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .newsletter-left h2 {
        font-size: 24px;
    }

    .privacy-text {
        font-size: 12px;
    }

    .newsletter-input input {
        font-size: 14px;
        padding: 14px;
    }

    .newsletter-input button {
        font-size: 14px;
        padding: 12px;
    }

    .newsletter-map img {
        border-radius: 15px;
        border-width: 3px;
    }
}


/* -----------------------------------
   FOOTER SECTION
----------------------------------- */
.footer-section {
    background: white;
    border-radius: 45px;
    margin: 40px 20px;
    padding: 40px 50px;
    position: relative;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}


/* LOGO BLOCK */
.footer-logo-box img {
    width: 60px;
}

.footer-logo-box p {
    color: #757575;
    margin-bottom: 10px;
}

.footer-logo-box h2 {
    color: #111;
    font-size: 35px;
    margin-bottom: 15px;
}

/* SOCIAL ICONS */
.social-icons a {
    margin-right: 10px;
    font-size: 18px;
    color: #757575;
    transition: 0.3s;
}

.social-icons a:hover {
    color: black;
    transform: translateY(-2px);
}

/* RIGHT COLUMNS */

.footer-column h3 {
    color: #111;
    font-size: 18px;
    /* make headings visible */
    margin-bottom: 15px;
    font-weight: 700;
}


.footer-column a {
    display: block;
    text-decoration: none;
    color: #555;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-column p {
    color: #757575;
    margin-bottom: 5px;
}

.footer-column a:hover {
    color: black;
    padding-left: 5px;
}

/* PHONE HOVER */
.phone {
    font-weight: 700;
    color: #000;
    transition: 0.3s;
}

.phone:hover {
    color: #e6c721;
}

/* COPYRIGHT */
.copyright {
    text-align: center;
    margin-top: 40px;
    color: #6f6f6f;
    font-size: 14px;
}

/* SCROLL UP BUTTON */
.scroll-up {
    position: absolute;
    right: 30px;
    bottom: 30px;
    background: #111;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.scroll-up:hover {
    background: #000;
    transform: translateY(-4px);
}

.scroll-up i {
    font-size: 18px;
}

.scroll-up a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: white;
}

.success-section {
    background: #d8c628;
    padding: 60px 50px;
    border-radius: 40px;
    margin: 50px 20px;
}

.success-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}


.success-text {
    width: 45%;
    color: #333;

}

.double-arrow i {
    font-size: 40px;
    color: rgba(0, 0, 0, 0.7);
}

.success-title {
    font-size: 50px;
    font-weight: 800;
    margin: 20px 0 15px;

}

.success-desc {
    max-width: 400px;
    color: #333;
    margin-bottom: 30px;
}

.stat-box h3 {
    color: #333;

}

.success-arrows {
    display: flex;
    gap: 15px;
}

.arrow-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #000;
    background: transparent;
    cursor: pointer;
    transition: 0.3s;
}


.arrow-btn:hover {
    background: #000;
    color: #fff;
}

/************ RIGHT SIDE VIDEOS ************/
.success-videos {
    display: flex;
    gap: 20px;
}

.video-card {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
}

.video-card img {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 25px;
}

.video-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fff;
    color: #111;
    font-weight: bold;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.play-btn i {
    font-size: 20px;
}

/************ STATS BOXES ************/
.stats-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
    gap: 20px;
}

.stat-box {
    background: #faeb8f;
    padding: 25px 30px;
    border-radius: 20px;
    flex: 1 1 200px;
}

.stat-box h3 {
    font-size: 32px;
    margin-bottom: 10px;
}

.stat-box p {
    color: #333;
}

/* ---------------------------
   SUCCESS SECTION RESPONSIVE
----------------------------*/

/* Tablets */
@media (max-width: 1024px) {

    .success-section {
        padding: 50px 40px;
        margin: 40px 15px;
    }

    .success-title {
        font-size: 40px;
    }

    .success-text {
        width: 50%;
    }

    .success-desc {
        font-size: 15px;
    }

    .video-card img {
        width: 220px;
        height: 220px;
    }

    .stat-box {
        width: 30%;
    }

    .stat-box h3 {
        font-size: 28px;
    }
}

/* Large Mobile / Small Tablets */
@media (max-width: 768px) {

    .success-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .success-text {
        width: 100%;
    }

    .success-title {
        font-size: 34px;
    }

    .success-desc {
        max-width: 100%;
        font-size: 14px;
    }

    .success-videos {
        gap: 15px;
        flex-wrap: wrap;
    }

    .video-card img {
        width: 200px;
        height: 200px;
    }

    .stats-row {
        flex-wrap: wrap;
    }

    .stat-box {
        width: 48%;
    }

    .stat-box h3 {
        font-size: 26px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .success-section {
        padding: 35px 20px;
        border-radius: 25px;
    }

    .success-title {
        font-size: 28px;
    }

    .double-arrow i {
        font-size: 32px;
    }

    .success-desc {
        font-size: 13px;
    }

    .success-videos {
        justify-content: center;
        gap: 12px;
    }

    .video-card img {
        width: 160px;
        height: 160px;
    }

    .video-label {
        font-size: 12px;
        padding: 4px 10px;
    }

    .play-btn {
        width: 45px;
        height: 45px;
    }

    .stats-row {
        flex-direction: column;
        gap: 15px;
    }

    .stat-box {
        width: 100%;
        padding: 20px;
    }

    .stat-box h3 {
        font-size: 24px;
    }

    .stat-box p {
        font-size: 14px;
    }
}


/* ===============================
   GLOBAL RESPONSIVE PATCHES
   =============================== */

/* Reduce horizontal padding on tablets */
@media (max-width: 1024px) {
    .training-section,
    .membership-section,

    .success-section {
        padding: 60px 50px;
    }

    .training-header h2 {
        font-size: 42px;
    }

    .membership-header h2 {
        font-size: 36px;
    }
}

/* Stack grids on mobile */
@media (max-width: 768px) {

    /* TRAINING SECTION */
    .training-content {
        grid-template-columns: 1fr;
    }

    .main-img img {
        height: 260px;
    }

    .trainer-box {
        width: 100%;
    }

    .offer-box {
        width: 100%;
    }

    /* MEMBERSHIP CARDS */
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* SUCCESS SECTION */
    .success-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    /* 
  .success-videos {
      flex-direction: column;
      gap: 20px;
  } */
    .video-card img {
        height: 240px;
        object-fit: cover;
    }

    /* NEWSLETTER */
    /* .newsletter-section {
      flex-direction: column;
      text-align: center;
  }
  .newsletter-map img {
      width: 100%;
  } */

    /* FOOTER */
    .footer-container {
        grid-template-columns: 1fr 1fr;
        row-gap: 40px;
    }
}

/* Small phones */
@media (max-width: 480px) {

    .training-header h2 {
        font-size: 32px;
    }

    .offer-box h3,
    .trainer-info h3 {
        font-size: 22px;
    }

    .membership-header h2 {
        font-size: 28px;
    }

    .plans-grid {
        gap: 20px;
    }

    .success-title {
        font-size: 26px !important;
    }

    .newsletter-left h2 {
        font-size: 22px;
        line-height: 32px;
    }

    .newsletter-input {
        flex-direction: column;
    }

    .newsletter-input input {
        width: 100%;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media(max-width: 768px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

    p {
        font-size: 14px;
    }
}

@media(max-width: 480px) {
    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 22px;
    }

    p {
        font-size: 12px;
    }
}

/* ================================
   CONTACT SECTION
================================ */
.contact-section {
  background: #0f0f0f;
  padding: 90px 6%;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* LEFT */
.contact-tag {
  color: #d8c628;
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-left h2 {
  font-size: 38px;
  color: #fff;
  font-weight: 800;
  margin: 0 0 14px;
  line-height: 1.2;
}

.contact-left h2 span {
  color: #d8c628;
}

.contact-sub {
  color: #888;
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 400px;
}

/* Buttons */
.contact-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
}

.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: transform 0.2s, opacity 0.2s;
}

.c-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.call-btn {
  background: #d8c628;
  color: #0f0f0f;
}

.wa-btn {
  background: #25d366;
  color: #fff;
}

/* Details */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid #222;
  padding-top: 28px;
}

.c-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #aaa;
  font-size: 14px;
}

.c-detail i {
  color: #d8c628;
  font-size: 16px;
  margin-top: 2px;
  min-width: 16px;
}

/* RIGHT: Map */
.map-box {
  width: 100%;
  height: 480px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #222;
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(20%) contrast(1.05);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .map-box {
    height: 300px;
  }

  .contact-left h2 {
    font-size: 28px;
  }
}

@media (max-width: 520px) {
  .contact-section {
    padding: 60px 5%;
  }

  .c-btn {
    font-size: 15px;
    padding: 14px 20px;
  }
}
