/* =====================================================
   ELITEFIT PREMIUM GYM WEBSITE
   STYLE.CSS
   ===================================================== */


/* ================= ROOT ================= */

:root {
    --black: #090909;
    --dark: #111111;
    --dark-card: #171717;
    --orange: #ff5a1f;
    --orange-light: #ff7a3d;
    --white: #ffffff;
    --light: #f5f5f5;
    --gray: #9b9b9b;
    --border: #292929;
}


/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea,
select {
    font-family: inherit;
}


/* ================= GENERAL ================= */

.container {
    width: 90%;
    max-width: 1180px;
    margin: auto;
}

.section {
    padding: 110px 0;
}

.section-heading {
    width: 90%;
    max-width: 700px;
    margin: 0 auto 65px;
    text-align: center;
}

.section-heading h2 {
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.05;
    margin: 14px 0 18px;
    font-weight: 900;
    text-transform: uppercase;
}

.section-heading h2 span {
    color: var(--orange);
}

.section-heading p {
    color: var(--gray);
    font-size: 17px;
}

.section-label {
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 4px;
}

.light h2 {
    color: var(--white);
}

.light p {
    color: var(--gray);
}


/* ================= NAVBAR ================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 78px;

    padding: 0 5%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(9, 9, 9, 0.92);

    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(255,255,255,0.06);

    z-index: 1000;

    transition: 0.3s;
}

.logo {
    font-size: 27px;
    font-weight: 900;
    letter-spacing: 2px;
}

.logo span {
    color: var(--orange);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu > a {
    color: #ddd;
    font-size: 14px;
    font-weight: 700;

    transition: 0.3s;
}

.nav-menu > a:hover {
    color: var(--orange);
}

.nav-join {
    background: var(--orange);
    color: #fff !important;

    padding: 11px 21px;

    border-radius: 4px;

    transition: 0.3s;
}

.nav-join:hover {
    background: var(--white);
    color: var(--black) !important;

    transform: translateY(-2px);
}

.menu-toggle {
    display: none;

    border: none;
    background: transparent;

    color: white;

    font-size: 28px;

    cursor: pointer;
}


/* ================= HERO ================= */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    background-image: url("images/hero-gym.jpg");

    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.92) 0%,
            rgba(0,0,0,0.70) 45%,
            rgba(0,0,0,0.20) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    width: 90%;
    max-width: 1180px;

    margin: auto;

    padding-top: 80px;
}

.hero-label {
    display: inline-block;

    color: var(--orange);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 4px;

    margin-bottom: 20px;
}

.hero h1 {
    max-width: 850px;

    font-size: clamp(58px, 8vw, 105px);

    line-height: 0.92;

    font-weight: 900;

    text-transform: uppercase;

    margin-bottom: 30px;
}

.hero h1 span {
    color: var(--orange);
}

.hero-content > p {
    max-width: 610px;

    color: #c8c8c8;

    font-size: 18px;

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;

    gap: 14px;

    flex-wrap: wrap;
}

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 15px 25px;

    font-weight: 800;

    transition: 0.3s;
}

.btn-primary {
    background: var(--orange);
    color: white;
}

.btn-primary:hover {
    background: white;
    color: black;

    transform: translateY(-4px);
}

.btn-outline {
    border: 1px solid #777;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: black;

    border-color: white;
}

.hero-stats {
    display: flex;

    gap: 45px;

    margin-top: 65px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat strong {
    font-size: 26px;
    color: white;
}

.hero-stat span {
    color: #888;
    font-size: 13px;
}


/* ================= ABOUT ================= */

.about {
    background: var(--light);
    color: var(--black);
}

.about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.about-image {
    overflow: hidden;

    border-radius: 4px;

    position: relative;
}

.about-image::after {
    content: "";

    position: absolute;

    inset: 15px;

    border: 1px solid rgba(255,255,255,0.35);

    pointer-events: none;
}

.about-image img {
    height: 560px;

    object-fit: cover;

    transition: 0.5s;
}

.about-image:hover img {
    transform: scale(1.04);
}

.about-content h2 {
    font-size: clamp(42px, 5vw, 62px);

    line-height: 1;

    text-transform: uppercase;

    margin: 15px 0 25px;
}

.about-content h2 span {
    color: var(--orange);
}

.about-content > p {
    color: #666;

    margin-bottom: 17px;

    font-size: 16px;
}

.about-features {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 16px;

    margin: 30px 0;
}

.feature {
    display: flex;

    align-items: center;

    gap: 10px;
}

.feature span {
    width: 27px;
    height: 27px;

    display: grid;
    place-items: center;

    background: var(--orange);

    color: white;

    border-radius: 50%;

    font-size: 13px;
    font-weight: bold;
}

.feature p {
    font-weight: 700;
    font-size: 14px;
}

.dark-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    background: var(--black);

    color: white;

    padding: 14px 23px;

    font-weight: 800;

    transition: 0.3s;
}

.dark-btn:hover {
    background: var(--orange);

    transform: translateY(-3px);
}


/* ================= PROGRAMS ================= */

.programs {
    background: #0d0d0d;
}

.programs-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.program-card {
    background: var(--dark-card);

    border: 1px solid var(--border);

    overflow: hidden;

    transition: 0.35s;
}

.program-card:hover {
    transform: translateY(-8px);

    border-color: var(--orange);
}

.program-image {
    height: 250px;

    overflow: hidden;
}

.program-image img {
    height: 100%;

    object-fit: cover;

    transition: 0.5s;
}

.program-card:hover .program-image img {
    transform: scale(1.08);
}

.program-content {
    padding: 25px;
}

.program-number {
    color: var(--orange);

    font-size: 13px;

    font-weight: 900;
}

.program-content h3 {
    font-size: 22px;

    margin: 12px 0;
}

.program-content p {
    color: var(--gray);

    font-size: 14px;

    margin-bottom: 20px;
}

.program-content a {
    color: #e5e5e5;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;
    line-height: 1.4;
    transition: 0.3s;
}

.program-content a {
    color: #d0d0d0 !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    line-height: 1.5 !important;
    opacity: 1 !important;
}

.program-content a:hover {
    color: var(--orange);
}

.program-content a:hover {
    color: var(--orange);
}


/* ================= WHY US ================= */

.why-us {
    background: var(--black);
}

.benefits-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.benefit-card {
    background: #131313;

    border: 1px solid var(--border);

    padding: 35px 25px;

    transition: 0.3s;
}

.benefit-card:hover {
    border-color: var(--orange);

    transform: translateY(-7px);
}

.benefit-icon {
    width: 55px;
    height: 55px;

    display: grid;
    place-items: center;

    background: rgba(255,90,31,0.1);

    color: var(--orange);

    font-size: 23px;

    margin-bottom: 22px;
}

.benefit-card h3 {
    font-size: 19px;

    margin-bottom: 10px;
}

.benefit-card p {
    color: #858585;

    font-size: 14px;
}


/* ================= TRAINERS ================= */

.trainers {
    background: var(--light);

    color: var(--black);
}

.trainers-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.trainer-card {
    background: white;

    overflow: hidden;

    transition: 0.3s;
}

.trainer-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.trainer-image {
    height: 400px;

    overflow: hidden;
}

.trainer-image img {
    height: 100%;

    object-fit: cover;

    transition: 0.5s;
}

.trainer-card:hover .trainer-image img {
    transform: scale(1.05);
}

.trainer-info {
    padding: 22px;
}

.trainer-info span {
    color: var(--orange);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;
}

.trainer-info h3 {
    font-size: 25px;

    margin: 6px 0;
}

.trainer-info p {
    color: #777;

    font-size: 14px;
}


/* ================= TRANSFORMATION ================= */

.transformation {
    background: var(--orange);

    color: black;
}

.transformation-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.transformation .section-label {
    color: black;
}

.transformation-content h2 {
    font-size: clamp(42px, 5vw, 65px);

    line-height: 1;

    text-transform: uppercase;

    margin: 15px 0 25px;
}

.transformation-content h2 span {
    color: white;
}

.transformation-content > p {
    max-width: 550px;

    margin-bottom: 30px;

    font-size: 17px;
}

.transformation-stats {
    display: flex;

    gap: 50px;

    margin-bottom: 35px;
}

.transformation-stats div {
    display: flex;

    flex-direction: column;
}

.transformation-stats strong {
    font-size: 35px;
}

.transformation-stats span {
    font-size: 13px;
}

.transformation .btn-primary {
    background: black;
}

.transformation .btn-primary:hover {
    background: white;
}

.transformation-image {
    height: 520px;

    overflow: hidden;
}

.transformation-image img {
    height: 100%;

    object-fit: cover;
}


/* ================= PRICING ================= */

.pricing {
    background: #f5f5f5;

    color: black;
}

.pricing-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    align-items: stretch;
}

.price-card {
    position: relative;

    background: white;

    border: 1px solid #ddd;

    padding: 40px 30px;

    transition: 0.3s;
}

.price-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.price-card.featured {
    border: 2px solid var(--orange);

    transform: scale(1.03);
}

.price-card.featured:hover {
    transform: scale(1.03) translateY(-8px);
}

.popular {
    position: absolute;

    top: 0;
    right: 0;

    background: var(--orange);

    color: white;

    padding: 7px 13px;

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 1px;
}

.price-name {
    color: var(--orange);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 3px;
}

.price-card h3 {
    font-size: 48px;

    margin: 20px 0 5px;
}

.price-card h3 small {
    font-size: 14px;

    color: #888;

    font-weight: normal;
}

.price-card > p {
    color: #777;

    font-size: 14px;

    margin-bottom: 25px;
}

.price-card ul {
    list-style: none;

    margin-bottom: 30px;
}

.price-card li {
    padding: 10px 0;

    border-bottom: 1px solid #eee;

    color: #555;

    font-size: 14px;
}

.price-btn {
    display: block;

    text-align: center;

    border: 1px solid #222;

    padding: 13px;

    font-weight: 800;

    transition: 0.3s;
}

.price-btn:hover {
    background: var(--black);

    color: white;
}

.featured .price-btn {
    background: var(--orange);

    border-color: var(--orange);

    color: white;
}

.featured .price-btn:hover {
    background: black;

    border-color: black;
}


/* ================= CONTACT ================= */

.contact {
    background: var(--dark);
}

.contact-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.contact-content h2 {
    font-size: clamp(42px, 5vw, 62px);

    line-height: 1;

    text-transform: uppercase;

    margin: 15px 0 25px;
}

.contact-content h2 span {
    color: var(--orange);
}

.contact-content > p {
    color: #8f8f8f;

    max-width: 550px;

    margin-bottom: 30px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;

    gap: 15px;

    margin-bottom: 20px;
}

.contact-item > span {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    background: rgba(255,90,31,0.12);

    color: var(--orange);

    flex-shrink: 0;
}

.contact-item strong {
    display: block;

    font-size: 14px;
}

.contact-item p {
    color: #888;

    font-size: 13px;
}

.whatsapp-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    background: #25d366;

    color: white;

    padding: 14px 22px;

    font-weight: 800;

    transition: 0.3s;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);

    box-shadow: 0 12px 25px rgba(37,211,102,0.2);
}


/* ================= CONTACT FORM ================= */

.contact-form {
    background: #151515;

    border: 1px solid var(--border);

    padding: 40px;
}

.contact-form h3 {
    font-size: 27px;

    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    color: #ddd;

    font-size: 13px;

    font-weight: 700;

    margin-bottom: 7px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;

    border: 1px solid #333;

    background: #0e0e0e;

    color: white;

    padding: 14px;

    outline: none;

    font-size: 14px;

    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--orange);

    box-shadow: 0 0 0 3px rgba(255,90,31,0.08);
}

.form-group textarea {
    min-height: 120px;

    resize: vertical;
}

.form-group select option {
    background: #111;
}

.submit-btn {
    width: 100%;

    border: none;

    background: var(--orange);

    color: white;

    padding: 15px;

    font-size: 15px;

    font-weight: 800;

    cursor: pointer;

    transition: 0.3s;
}

.submit-btn:hover {
    background: white;

    color: black;
}

.form-note {
    text-align: center;

    color: #666;

    font-size: 11px;

    margin-top: 10px;
}


/* ================= FOOTER ================= */

footer {
    background: #050505;

    padding-top: 50px;
}

.footer-container {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.footer-brand p {
    color: #666;

    font-size: 13px;

    margin-top: 6px;
}

.footer-links {
    display: flex;

    gap: 25px;

    flex-wrap: wrap;
}

.footer-links a {
    color: #777;

    font-size: 13px;

    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--orange);
}

.copyright {
    text-align: center;

    border-top: 1px solid #1d1d1d;

    margin-top: 40px;

    padding: 25px;

    color: #555;

    font-size: 12px;
}


/* ================= BACK TO TOP ================= */

#backToTop {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 48px;
    height: 48px;

    border: none;

    background: var(--orange);

    color: white;

    font-size: 20px;

    font-weight: bold;

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transform: translateY(15px);

    transition: 0.3s;

    z-index: 999;
}

#backToTop.show {
    opacity: 1;

    visibility: visible;

    transform: translateY(0);
}

#backToTop:hover {
    background: white;

    color: black;
}


/* ================= ANIMATION ================= */

.reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.active {
    opacity: 1;

    transform: translateY(0);
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1050px) {

    .nav-menu {
        gap: 18px;
    }

    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid,
    .transformation-grid,
    .contact-grid {
        gap: 45px;
    }

}


/* ================= TABLET ================= */

@media (max-width: 800px) {

    .navbar {
        height: 70px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;

        top: 70px;
        left: 0;

        width: 100%;

        background: #0c0c0c;

        padding: 20px;

        flex-direction: column;

        align-items: stretch;

        gap: 4px;

        display: none;

        border-top: 1px solid #222;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu > a {
        padding: 12px;
    }

    .nav-join {
        text-align: center;
    }

    .about-grid,
    .transformation-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-image img {
        height: 450px;
    }

    .transformation-image {
        height: 430px;
    }

    .trainers-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .price-card.featured {
        transform: none;
    }

    .price-card.featured:hover {
        transform: translateY(-8px);
    }

    .footer-container {
        flex-direction: column;

        text-align: center;
    }

}


/* ================= MOBILE ================= */

@media (max-width: 550px) {

    .section {
        padding: 80px 0;
    }

    .hero {
        min-height: 100vh;
    }

    .hero h1 {
        font-size: 49px;
    }

    .hero-content > p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;

        max-width: 320px;
    }

    .btn {
        text-align: center;
    }

    .hero-stats {
        gap: 20px;

        margin-top: 45px;
    }

    .hero-stat strong {
        font-size: 21px;
    }

    .hero-stat span {
        font-size: 11px;
    }

    .about-image img {
        height: 340px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .programs-grid,
    .benefits-grid,
    .trainers-grid {
        grid-template-columns: 1fr;
    }

    .program-image {
        height: 230px;
    }

    .trainer-image {
        height: 380px;
    }

    .transformation-image {
        height: 340px;
    }

    .transformation-stats {
        gap: 30px;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .footer-links {
        justify-content: center;
    }

}

/* ================= PREMIUM POLISH ================= */

.hero {
    isolation: isolate;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(255, 90, 31, 0.12),
            transparent 35%
        );
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    animation: heroFadeUp 1s ease forwards;
}

.hero-label {
    animation: heroFadeUp 0.8s ease 0.1s both;
}

.hero h1 {
    letter-spacing: -3px;
}

.hero-content > p {
    line-height: 1.8;
}

.btn {
    position: relative;
    overflow: hidden;
}

.btn-primary {
    box-shadow: 0 12px 30px rgba(255, 90, 31, 0.22);
}

.btn-primary:hover {
    box-shadow: 0 16px 35px rgba(255, 90, 31, 0.35);
}

.hero-stat {
    position: relative;
    padding-left: 15px;
}

.hero-stat::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 3px;
    height: 32px;
    background: var(--orange);
}

.hero-stat strong {
    font-weight: 900;
}

.hero-stat span {
    margin-top: 3px;
}

@keyframes heroFadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

/* ================= READABLE TYPOGRAPHY ================= */

body {
font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* Normal paragraphs */
p {
    font-size: 16px;
    line-height: 1.75;
    font-weight: 500;
}

/* Navigation */
.nav-menu > a {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

/* Small labels */
.section-label,
.hero-label {
    font-weight: 800;
    letter-spacing: 3px;
}

/* Hero paragraph */
.hero-content > p {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 500;
}

/* Section descriptions */
.section-heading p {
    font-size: 17px;
    line-height: 1.8;
    font-weight: 500;
}

/* Cards */
.program-content p,
.benefit-card p,
.trainer-info p,
.price-card > p {
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
}

/* Lists */
.price-card li {
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
}

/* Contact */
.contact-content > p,
.contact-item p {
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
}

/* Form text */
.form-group label {
    font-size: 14px;
    font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
    font-size: 15px;
}

/* Footer */
.footer-brand p,
.footer-links a {
    font-size: 14px;
    font-weight: 500;
}

/* ================= FINAL FONT FIX ================= */

body {
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    font-weight: 500;
    letter-spacing: 0;
}

/* All normal text */
p,
li,
a,
label,
input,
textarea,
select,
button {
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}

/* Paragraphs */
p {
    font-weight: 500;
    letter-spacing: 0.1px;
    line-height: 1.75;
}

/* Navigation */
.nav-menu > a {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
}

/* Small orange labels */
.section-label,
.hero-label {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2.5px;
}

/* Hero description */
.hero-content > p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
    max-width: 620px;
}

/* Section descriptions */
.section-heading p {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.8;
}

/* About text */
.about-content > p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
}

/* Program cards */
.program-content p {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.75;
}

/* Why section */
.benefit-card p {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.75;
}

/* Trainer descriptions */
.trainer-info p {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.7;
}

/* Pricing */
.price-card > p,
.price-card li {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.7;
}

/* Transformation */
.transformation-content > p {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.8;
}

/* Contact */
.contact-content > p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
}

.contact-item p {
    font-size: 14px;
    font-weight: 500;
}

/* Form */
.form-group label {
    font-size: 14px;
    font-weight: 700;
}

.form-group input,
.form-group textarea,
.form-group select {
    font-size: 15px;
    font-weight: 500;
}

/* Footer */
.footer-brand p,
.footer-links a {
    font-size: 14px;
    font-weight: 500;
}

/* ================= BIG & READABLE TEXT ================= */

/* Normal website text */
p {
    font-size: 17px;
    line-height: 1.8;
    font-weight: 500;
}

/* Hero paragraph */
.hero-content > p {
    font-size: 19px;
    line-height: 1.8;
    max-width: 650px;
}

/* Section descriptions */
.section-heading p {
    font-size: 18px;
    line-height: 1.8;
}

/* About paragraphs */
.about-content > p {
    font-size: 17px;
    line-height: 1.8;
}

/* Program descriptions */
.program-content p {
    font-size: 16px;
    line-height: 1.75;
}

/* Why EliteFit descriptions */
.benefit-card p {
    font-size: 16px;
    line-height: 1.75;
}

/* Trainer descriptions */
.trainer-info p {
    font-size: 16px;
    line-height: 1.7;
}

/* Pricing description */
.price-card > p {
    font-size: 16px;
    line-height: 1.7;
}

/* Pricing features */
.price-card li {
    font-size: 16px;
    line-height: 1.7;
    padding: 11px 0;
}

/* Transformation paragraph */
.transformation-content > p {
    font-size: 18px;
    line-height: 1.8;
}

/* Contact paragraph */
.contact-content > p {
    font-size: 17px;
    line-height: 1.8;
}

/* Contact information */
.contact-item p {
    font-size: 15px;
    line-height: 1.6;
}

/* Form labels */
.form-group label {
    font-size: 15px;
}

/* Form input text */
.form-group input,
.form-group textarea,
.form-group select {
    font-size: 16px;
}

/* Small orange section labels */
.section-label,
.hero-label {
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 800;
}

/* Trainer category */
.trainer-info span {
    font-size: 12px;
    letter-spacing: 1.5px;
}

/* Hero statistics */
.hero-stat strong {
    font-size: 28px;
}

.hero-stat span {
    font-size: 14px;
}

/* Footer */
.footer-brand p,
.footer-links a {
    font-size: 14px;
}
/* ================= FINAL READABILITY FIX ================= */

/* ABOUT FEATURES */
.feature p {
    font-size: 17px;
    font-weight: 600;
    color: #222;
    line-height: 1.5;
}

.feature span {
    width: 30px;
    height: 30px;
    font-size: 14px;
    flex-shrink: 0;
}

/* TRANSFORMATION STATS */
.transformation-stats span {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    line-height: 1.5;
}

.transformation-stats strong {
    font-size: 38px;
    font-weight: 900;
}

/* TRANSFORMATION BUTTON */
.transformation .btn-primary {
    background: #050505;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    padding: 16px 26px;
}

.transformation .btn-primary:hover {
    background: #ffffff;
    color: #050505;
}

/* CONTACT INFORMATION */
.contact-item strong {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
}

.contact-item p {
    font-size: 15px;
    font-weight: 500;
    color: #b5b5b5;
    line-height: 1.6;
}

/* FORM LABELS */
.form-group label {
    font-size: 15px;
    font-weight: 700;
    color: #f0f0f0;
    margin-bottom: 8px;
}

/* FORM INPUT TEXT */
.form-group input,
.form-group textarea,
.form-group select {
    font-size: 16px;
    font-weight: 500;
}

/* FORM NOTE */
.form-note {
    font-size: 14px;
    font-weight: 500;
    color: #999;
    line-height: 1.5;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
    font-size: 16px;
    font-weight: 800;
}

/* PROGRAM NUMBERS */
.program-number {
    font-size: 14px;
}

/* TRAINER CATEGORY */
.trainer-info span {
    color: var(--orange);
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.8px;
    line-height: 1.5;
}

/* FOOTER TEXT */
.footer-brand p {
    font-size: 14px;
    color: #888;
}

.footer-links a {
    font-size: 14px;
    font-weight: 600;
}
/* ================= TYPOGRAPHY POLISH ================= */

/* Small descriptive text */
.about-content > p,
.program-content p,
.benefit-card p,
.contact-content > p,
.contact-item p,
.form-note {
    font-size: 15px;
    line-height: 1.7;
}

/* Feature text */
.feature p {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

/* Member statistics labels */
.transformation-stats span {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

/* Contact labels */
.contact-item strong {
    font-size: 15px;
    font-weight: 700;
}

.contact-item p {
    font-size: 14px;
}

/* Form labels */
.form-group label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

/* Trainer category text */
.trainer-info span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    line-height: 1.4;
}

/* ================= BUTTON POLISH ================= */

.btn,
.dark-btn,
.price-btn,
.whatsapp-btn,
.submit-btn {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

/* Normal links such as Learn More */
.program-content a {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

/* Make buttons cleaner */
.btn {
    min-height: 48px;
}

.dark-btn {
    min-height: 46px;
}

.price-btn {
    min-height: 46px;
}

.whatsapp-btn {
    min-height: 46px;
}

.submit-btn {
    min-height: 48px;
}

/* Consultation note */
.form-note {
    font-size: 13px;
    line-height: 1.5;
}

/* Better readability on mobile */
@media (max-width: 550px) {

    .feature p {
        font-size: 15px;
    }

    .transformation-stats span {
        font-size: 14px;
    }

    .contact-item strong {
        font-size: 15px;
    }

    .contact-item p {
        font-size: 14px;
    }

    .trainer-info span {
        font-size: 11px;
        letter-spacing: 1.2px;
    }

    .btn,
    .dark-btn,
    .price-btn,
    .whatsapp-btn,
    .submit-btn {
        font-size: 14px;
    }
}
/* =====================================================
   ELITEFIT - FINAL FONT & BUTTON POLISH
   ===================================================== */

/* GENERAL TEXT */
body {
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    letter-spacing: 0;
}

/* SMALL DESCRIPTIVE TEXT */
.about-content > p,
.program-content p,
.benefit-card p,
.contact-content > p {
    font-size: 16px;
    line-height: 1.75;
    font-weight: 400;
}

/* FEATURE TEXT */
.feature p {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
}

/* MEMBER SATISFACTION / ACTIVE MEMBERS */
.transformation-stats span {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
}

/* CONTACT INFORMATION */
.contact-item strong {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}

.contact-item p {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
}

/* FORM LABELS */
.form-group label {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 700;
}

/* TRAINER CATEGORY */
.trainer-info span {
    display: block;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 800;
    letter-spacing: 1px;
}

/* PROGRAM LEARN MORE */
.program-content a {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
}

/* ================= BUTTONS ================= */

.btn,
.dark-btn,
.price-btn,
.whatsapp-btn,
.submit-btn {
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 650;
    letter-spacing: 0.2px;
    line-height: 1.4;
}

/* BUTTON HEIGHT */
.btn {
    min-height: 50px;
}

.dark-btn {
    min-height: 48px;
}

.price-btn {
    min-height: 48px;
}

.whatsapp-btn {
    min-height: 48px;
}

.submit-btn {
    min-height: 50px;
}

/* CONSULTATION NOTE */
.form-note {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
}

/* NAVIGATION */
.nav-menu > a {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
}

/* PRICE CARD FEATURES */
.price-card li {
    font-size: 15px;
    line-height: 1.6;
}

/* FOOTER */
.footer-links a {
    font-size: 14px;
}

.footer-brand p {
    font-size: 14px;
}

/* MOBILE */
@media (max-width: 550px) {

    .feature p {
        font-size: 15px;
    }

    .transformation-stats span {
        font-size: 15px;
    }

    .contact-item strong {
        font-size: 15px;
    }

    .contact-item p {
        font-size: 14px;
    }

    .form-group label {
        font-size: 14px;
    }

    .trainer-info span {
        font-size: 12px;
        letter-spacing: 0.8px;
    }

    .btn,
    .dark-btn,
    .price-btn,
    .whatsapp-btn,
    .submit-btn {
        font-size: 15px;
    }

    ..aboform-note {
        font-size: 13px;
    }
}
/* ================= READABLE TEXT ================= */

.about-content > p {
    color: #333 !important;
    font-weight: 500;
}

.program-content p,
.benefit-card p,
.contact-content > p,
.contact-item p,
.price-card > p {
    color: #555 !important;
    font-weight: 500;
}

.trainer-info p {
    color: #555 !important;
    font-weight: 500;
}

.transformation-content > p {
    color: #222 !important;
    font-weight: 500;
}

.form-note {
    color: #777 !important;
    font-size: 13px !important;
    font-weight: 500;
}