* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #000;
    color: #222;
}

/* =========================
TOP NAVIGATION
========================= */

.top-nav {
    background: black;
    height: 80px;
    border-bottom: 4px solid #39FF14;
}

.top-nav ul {
    list-style: none;
    display: flex;
    height: 100%;
}

.top-nav li {
    flex: 1;
    border-right: 1px solid rgba(255,255,255,0.15);
}

.top-nav li:last-child {
    border-right: none;
}

.top-nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;

    color: white;
    text-decoration: none;

    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;

    transition: background 0.3s;
}

.top-nav a:hover {
    background: #1a1a1a;
    color: #39FF14;
}

/* =========================
MAIN LAYOUT
========================= */

.main-container {
    display: flex;
    min-height: 600px;
    flex-direction: row;
}

/* =========================
LEFT SIDEBAR
========================= */

.sidebar {
    width: 270px;
    background: darkgray;
    flex-shrink: 0;
    padding: 20px;
}

.sidebar h2 {
    color: black;
    text-align: center;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 20px;
    margin-bottom: 25px;
}

.testimonial {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.testimonial p {
    font-family: "Lato", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    font-style: italic;
    color: #333;
    margin-bottom: 12px;
}

.testimonial span {
    font-family: "Lato", sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #162b45;
}

/* =========================
RIGHT CONTENT
========================= */

.content {
    flex: 1;
}

/* =========================
HERO BANNER
========================= */

.hero {

    position: relative;
    min-height: calc(100vh - 80px);

    background-image:
        linear-gradient(
            rgba(0,0,0,0.35),
            rgba(0,0,0,0.35)
        ),
        url("images/Background3.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
}

.hero-content {
    color: white;
    padding: 30px;
}

.hero-small {
    font-size: 18px;
    letter-spacing: 5px;
    margin-bottom: 15px;
}

.hero h1 {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 48px;
    letter-spacing: 3px;
    margin-bottom: 10px;
    color: #39FF14;
    -webkit-text-stroke: 2px black;
    transform: translateY(160px);
}

.hero h1.hero-description {
    position: absolute;

    right: 30px;
    bottom: 20px;

    margin: 0;
    padding: 0;

    transform: none;

    font-family: "Roboto Condensed", sans-serif;
    font-size: 25px;
    letter-spacing: 2px;

    color: #39FF14;
    -webkit-text-stroke: 1px black;

    text-align: right;
}
/* =========================
FEATURES
========================= */

.features {
    display: flex;
    background: darkgray;
}

.feature {
    flex: 1;
    text-align: center;
    padding: 35px 25px;
    border-right: 1px solid #ddd;
}

.feature:last-child {
    border-right: none;
}

.feature i {
    font-size: 38px;
    color: #0b3158;
    margin-bottom: 15px;
}

.feature h3 {
    color: #162b45;
    font-family: Georgia, serif;
    margin-bottom: 10px;
}

.feature p {
    color: #555;
    line-height: 1.5;
}

/* =========================
MOBILE
========================= */

@media (max-width: 800px) {

    .top-nav {
        height: auto;
    }

    .top-nav ul {
        flex-wrap: wrap;
    }

    .top-nav li {
        flex: 1 1 50%;
    }

    .top-nav a {
        padding: 18px 10px;
        font-size: 14px;
    }

    .main-container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    .hero {
        min-height: 400px;
    }

    .hero h1 {
        font-size: 20px;
        color: #39FF14;
        font-family: "Roboto Condensed", sans-serif;
    }

    .features {
        flex-direction: column;
    }

    .feature {
        border-right: none;
        border-bottom: 1px solid #ddd;
    }
}

/* =========================
CONTACT POPUP
HOME PAGE + OTHER PAGES
========================= */

.main-contact-popup,
.contact-popup {
    display: none;

    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.6);

    align-items: center;
    justify-content: center;

    z-index: 9999;
}


/* POPUP BOX */

.main-contact-box,
.contact-box {
    width: 440px;
    min-height: 430px;

    background: white;

    border: 3px solid #39FF14;

    padding: 35px 40px;

    position: relative;

    text-align: center;

    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
}


/* CONTACT US TITLE */

.main-contact-box h2,
.contact-box h2 {
    margin-bottom: 25px;

    color: #162b45;

    font-size: 32px;
    font-weight: 800;
}


/* GENERAL TEXT */

.main-contact-box p,
.contact-box p {
    margin-bottom: 18px;

    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;

    color: #333;
}


/* PHONE NUMBER */

.main-contact-phone,
.contact-phone {
    margin-bottom: 20px;

    font-size: 19px;
    font-weight: 700;
}

.main-contact-phone a,
.contact-phone a {
    color: #1e4f7a;

    font-size: 22px;
    font-weight: 700;
}


/* EMAIL */

.main-contact-email,
.contact-email {
    font-size: 17px;
    font-weight: 600;
}

.main-contact-email a,
.contact-email a {
    color: #1e4f7a;
    font-weight: 600;
}


/* ADDRESS AND HOURS HEADINGS */

.main-contact-section h3,
.contact-section h3 {
    margin: 22px 0 12px;

    padding-bottom: 6px;

    color: #162b45;

    font-size: 21px;
    font-weight: 800;

    text-align: left;

    border-bottom: 2px solid #39FF14;
}


/* ADDRESS AND HOURS TEXT */

.main-contact-section p,
.contact-section p {
    margin-bottom: 18px;

    color: #333;

    font-size: 20px;
    font-weight: 600;

    line-height: 1.6;
}


/* CLOSE BUTTON */

.main-close-contact,
.close-contact {
    position: absolute;

    top: 10px;
    right: 15px;

    border: none;
    background: none;

    font-size: 30px;
    font-weight: bold;

    cursor: pointer;

    color: #222;
}

.main-close-contact:hover,
.close-contact:hover {
    color: #39FF14;
}

/* =========================================
MISSION PAGE - BLACK VIDEO BACKGROUND
========================================= */

body {
    background: #000;
}


/* =========================================
SIDE TRAINING VIDEOS
========================================= */

.side-video {
    position: fixed;
    top: 80px;

    /* CHANGED: 22vw → 24vw */
    width: 19vw;

    height: calc(100vh - 80px);
    overflow: hidden;
    z-index: 0;
}

.side-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Dark overlay over the videos */
.side-video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    pointer-events: none;
}


/* Left video */
.left-video {
    left: 0;
}


/* Right video */
.right-video {
    right: 0;
}


/* =========================================
MAIN MISSION CONTENT
========================================= */

.main-content {
    position: relative;
    z-index: 2;

    /* CHANGED: 56vw → 52vw */
    width: 52vw;

    min-height: calc(100vh - 80px);
    margin: 0 auto;
    background: #000;
}


/* =========================================
MISSION STATEMENT PAGE
========================================= */

.mission-page {
    min-height: calc(100vh - 80px);

    background-color: #000;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    padding: 60px 30px;
}


/* =========================================
MISSION STATEMENT BOX
========================================= */

.mission-content {
    /* CHANGED: 1100px → 935px */
    max-width: 935px;

    margin: 0 auto;

    background: #fdfdfd;

    padding: 70px 80px;

    border-radius: 8px;

    border-top: 6px solid #39FF14;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
}

.mission-content h1 {
    text-align: center;
    font-family: Georgia, serif;
    font-size: 60px;
    font-weight: bold;
    color: #162b45;
    letter-spacing: 2px;
    margin-bottom: 45px;
}

.mission-content p {
    text-align: center;
    font-family: "Lato", sans-serif;
    font-size: 24px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 35px;
}

.mission-content .mission-ending {
    text-align: center;
    font-family: Georgia, serif;
    font-size: 40px;
    font-weight: bold;
    color: #162b45;
    margin-top: 55px;
    margin-bottom: 25px;
}

.mission-content .mission-signature {
    text-align: center;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 36px;
    font-weight: bold;
    color: #162b45;
    margin-bottom: 0;
}

/* =========================
   BEFORE & AFTER PAGE
========================= */

.before-after-page {
    height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
}

.transformation-row {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 2px solid #39FF14;
}

.before-image,
.after-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.before-image img,
.after-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.results-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
}

.results-text h2 {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 36px;
    margin-bottom: 15px;
}

.results-text p {
    font-family: "Lato", sans-serif;
    font-size: 20px;
    line-height: 1.5;
}

/* =========================
   PRICING POPUP
========================= */

#pricingPopup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    justify-content: center;
    align-items: center;
}

#pricingPopup .pricing-popup-content {
    position: relative;
    width: 500px;
    max-width: 90%;
    background: white;
    padding: 35px 45px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    color: #222;
}

/* CLOSE BUTTON */

#pricingPopup .pricing-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #222;
}

/* MAIN TITLE */

#pricingPopup h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 30px 0;
    color: #1e4f7a !important;
}

/* SECTION HEADINGS */

#pricingPopup h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 22px 0 10px 0;
    color: #162b45;
    border-bottom: 2px solid #39FF14;
    padding-bottom: 5px;
}

/* PRICING TEXT */

#pricingPopup p {
    margin: 8px 0;
    font-size: 17px;
    line-height: 1.4;
}

/* 8 SESSION MINIMUM */

#pricingPopup .session-minimum {
    text-align: center;
}

/* MOBILE */

@media (max-width: 600px) {

    #pricingPopup .pricing-popup-content {
        width: 90%;
        padding: 30px 25px;
    }

    #pricingPopup h2 {
        font-size: 32px;
    }

    #pricingPopup h3 {
        font-size: 18px;
    }

    #pricingPopup p {
        font-size: 15px;
    }
}

/* =========================
   HOME PRICING POPUP
========================= */

.home-pricing-popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    justify-content: center;
    align-items: center;
}

.home-pricing-box {
    position: relative;
    width: 500px;
    max-width: 90%;
    background: white;
    padding: 35px 45px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    color: #222;
}

/* CLOSE BUTTON */

.home-pricing-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #222;
}

/* MAIN TITLE */

#homePricingPopup h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 30px 0;
    color: #1e4f7a !important;
}

/* SECTION HEADINGS */

.home-pricing-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 22px 0 10px 0;
    color: #162b45;
    border-bottom: 2px solid #39FF14;
    padding-bottom: 5px;
}

/* PRICING TEXT */

.home-pricing-content p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 8px 0;
    font-size: 17px;
    line-height: 1.4;
}

/* KEEP THE 8 SESSION MINIMUM NORMAL */

.home-pricing-content p strong {
    display: block;
    width: 100%;
    text-align: center;
}

/* REMOVE THE FLEX LAYOUT FROM THE
   8-SESSION MINIMUM LINE */

.home-pricing-content p {
    justify-content: center;
}

.session-minimum {
    font-size: 17px;
    color: red;
    font-weight: bold;

}

/* MOBILE */

@media (max-width: 600px) {

    .home-pricing-box {
        width: 90%;
        padding: 30px 25px;
    }

    .home-pricing-content h2 {
        font-size: 32px;
    }

    .home-pricing-content h3 {
        font-size: 18px;
    }

    .home-pricing-content p {
        font-size: 15px;
    }
}