/*
Theme Name: HealthySwitch V2
Author: Sahil
Version: 1.0
*/
/* Reset and base styles */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: rgba(255, 255, 255, 1);
    font-family: "Open Sans", Poppins, sans-serif;
    line-height: 1.6;
    color: rgba(0, 0, 0, 1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", Roboto, sans-serif;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    flex: 1;
}

.hero-form-wrapper {
    flex: 0 0 420px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    border-radius: 10px;
    padding: 28px 24px;
}

.hero-form-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-form-row {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}

.hero-form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hero-form-group.full-width {
    margin-bottom: 14px;
}

.hero-form-group label {
    color: #fff;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.hero-form-group .required {
    color: #e74c3c;
}

.hero-form-group input,
.hero-form-group textarea {
    background: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 12px;
    font-size: 0.9rem;
    outline: none;
    width: 100%;
}

.hero-form-group textarea {
    resize: vertical;
}

.hero-form-captcha {
    margin-bottom: 16px;
}

.hero-form-submit {
    background: transparent;
    color: #fff;
    border: 2px solid #e74c3c;
    padding: 10px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition:
        background 0.2s,
        color 0.2s;
}

.hero-form-submit:hover {
    background: #e74c3c;
    color: #fff;
}

@media (max-width: 768px) {
    .hero-wrapper {
        flex-direction: column;
    }

    .hero-form-wrapper {
        flex: unset;
        width: 100%;
    }

    .hero-form-row {
        flex-direction: column;
        gap: 0;
    }
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-form-wrapper {
    flex: 0 0 420px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    border-radius: 10px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 991px) {
    .hero-wrapper {
        flex-direction: column;
        padding: 40px 20px;
    }

    .hero-form-wrapper {
        flex: unset;
        width: 100%;
    }

    .hero-form-row {
        flex-direction: column;
        gap: 0;
    }

}

/* Accessibility utilities */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.banner-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.banner-facebook {
    color: inherit;
    font-size: 1.1rem;
    text-decoration: none;
}

.banner-phone {
    color: inherit;
    text-decoration: none;
    font-size: 0.9rem;
}

.banner-facebook:hover,
.banner-phone:hover {
    opacity: 0.8;
}

.banner-facebook {
    color: inherit;
    font-size: 1.4rem;
    text-decoration: none;
}

.banner-phone {
    color: inherit;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* Focus styles for accessibility */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid rgba(244, 121, 108, 1);
    outline-offset: 2px;
}

.block-sec {
    display: block;
}

/* header css */
/* Top banner */
.top-banner {
    background-color: rgba(0, 0, 0, 1);
    color: rgba(255, 255, 255, 1);
    padding: 11px 39px;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trial-announcement {
    font:
        400 14px Hanuman,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    text-align: center;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 13px;
}

.book-session-btn {
    background-color: rgba(244, 121, 108, 1);
    color: rgba(255, 255, 255, 1);
    border: none;
    padding: 10px 20px;
    font:
        400 14px Hanuman,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.book-session-btn:hover {
    background-color: rgba(220, 100, 90, 1);
}

.free-trial-btn {
    background: transparent;
    color: rgba(255, 255, 255, 1);
    border: 1px solid rgba(255, 255, 255, 1);
    padding: 10px 30px;
    font:
        400 14px Hanuman,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.free-trial-btn:hover {
    background-color: rgba(255, 255, 255, 1);
    color: rgba(0, 0, 0, 1);
}

/* Main Navigation */
.main-navigation {
    width: 100%;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 10px 20px;
}

.logo {
    width: auto;
    height: auto;
    max-width: 180px;
    /* adjust this value to your preferred logo size */
    max-height: 60px;
    /* keeps it from getting too tall in the navbar */
    object-fit: contain;
    display: block;
}

.logo-section {
    display: flex;
    align-items: center;
}

.navigation-menu .nav-link {
    color: rgba(0, 0, 0, 1);
    font:
        400 20px Hanuman,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    transition: color 0.3s ease;
    padding: 8px 10px;
}

.navigation-menu .nav-link:hover,
.navigation-menu .nav-link[aria-current="page"] {
    color: rgba(244, 121, 108, 1);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0;
}

.dropdown-item {
    font:
        400 14px Hanuman,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    padding: 8px 20px;
    color: rgba(0, 0, 0, 1);
    transition: all 0.3s ease;
    border-bottom: 1px solid #d7d7d7;
}

.dropdown-item:hover {
    background-color: rgba(244, 121, 108, 1);
    color: #fff;
}

.nav-item {
    padding: 0 6px;
    font-family: "Open Sans", Poppins, sans-serif;
    font-weight: 400;
}

nav {
    .nav-item {
        padding: 0 10px;



        &:hover {
            font-weight: 700;
            color: rgba(244, 121, 108, 1);
        }
    }
}

.nav-link {
    color: black;
    font-size: 13px;
    white-space: nowrap;
}

@media (min-width: 1200px) {
    .nav-item {
        padding: 0 10px;
    }

    .nav-link {
        font-size: 14px;
    }
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .top-banner {
        padding: 10px 15px;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .navigation-menu .nav-link {
        padding: 10px 5px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navigation-menu .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .dropdown-menu {
        box-shadow: none;
        padding-left: 15px;
    }

    /* HAMBURGER FIX ONLY */
    .main-navigation .container-fluid {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .logo-section {
        flex: 1;
    }

    .navbar-toggler {
        flex-shrink: 0;
        margin-left: auto;
        order: unset;
    }

    #mainNavMenu {
        width: 100%;
        flex-basis: 100%;
        background-color: #fff;
        padding: 10px 15px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    }
}

@media (max-width: 480px) {
    .header-actions {
        flex-direction: column;
        width: 100%;
    }

    .book-session-btn,
    .free-trial-btn {
        width: 65%;
        text-align: center;
    }
}

/* close header css */
/* Hero section */
.hero-section {
    position: relative;
    padding: 110px 105px 241px;
    color: rgba(255, 255, 255, 1);

    /* Background image */
    background-image: url("https://healthyswitch.com.au/wp-content/uploads/2019/12/PT-3.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Color overlay using ::before pseudo-element */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    /* shorthand for top/right/bottom/left: 0 */
    background-color: rgba(0, 0, 0, 0.42);
    /* #000000 at 42% opacity */
    z-index: 0;
}

/* Ensure content sits above the overlay */
.hero-section>* {
    position: relative;
    z-index: 1;
}

.hero-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    width: 50%;
}

.hero-title {
    font:
        800 54px Playfair Display,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    max-width: 100%;
    margin-bottom: 17px;
}

.hero-description {
    font:
        500 20px Playfair Display,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    margin-bottom: 41px;
}

.primary-cta-btn {
    background-color: rgba(255, 255, 255, 1);
    color: rgba(0, 0, 0, 1);
    border: none;
    padding: 14px;
    font:
        400 14px Hanuman,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 35%;
}

.primary-cta-btn:hover {
    background-color: rgba(244, 121, 108, 1);
    color: rgba(255, 255, 255, 1);
}

/* Section headers */
.section-header {
    text-align: center;
    margin-bottom: 59px;
}

.section-title {
    font:
        700 36px Playfair Display,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    letter-spacing: 1.08px;
    margin-bottom: 14px;
}

.title-underline {
    background-color: rgba(244, 121, 108, 1);
    width: 132px;
    height: 2px;
    margin: 0 auto 17px;
}

.section-subtitle {
    font:
        300 16px Hanuman,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    letter-spacing: 0.48px;
    color: rgba(243, 79, 58, 1);
}

/* Services section */
.services-section {
    margin-top: 61px;
    padding: 0 20px;
}

.service-card {
    text-align: center;
    padding: 9px 0;
}

.service-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 12px;
}

.service-icon-fa {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(244, 121, 108, 1);
}

.service-title {
    font:
        700 24px Playfair Display,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 16px;
}

.service-title-link {
    color: inherit;
    text-decoration: none;
}

.service-title-link:hover {
    color: rgba(244, 121, 108, 1);
}

.service-description {
    font:
        300 14px Roboto Mono,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    color: rgba(103, 103, 103, 1);
    margin-bottom: 16px;
    line-height: 1.4;
}

.service-link {
    font:
        400 14px Hanuman,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    color: rgba(243, 79, 58, 1);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: rgba(200, 60, 40, 1);
}

/* CTA section */
.cta-section {
    position: relative;
    padding: 114px 80px;
    margin-top: 89px;
    text-align: right;
}

.cta-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font:
        700 92px Hanuman,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    letter-spacing: 2.76px;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 25px;
}

.cta-description {
    font:
        400 20px Poppins,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    letter-spacing: 0.6px;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 41px;
}

.cta-button {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.28);
    color: rgba(0, 0, 0, 1);
    border: none;
    padding: 15px;
    font:
        400 24px Poppins,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    letter-spacing: 0.72px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: rgba(244, 121, 108, 1);
    color: rgba(255, 255, 255, 1);
}

/* About section */
.about-section {
    background-color: rgba(0, 0, 0, 1);
    color: rgba(255, 255, 255, 1);
    padding: 59px 65px;
    margin-top: 47px;
}

.about-content {
    padding-right: 20px;
}

.about-label {
    font:
        32px Playball,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    color: rgba(243, 79, 58, 1);
    letter-spacing: 0.96px;
    margin-bottom: 7px;
    margin-left: 10px;
}

.about-title {
    font:
        64px Playfair Display,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    letter-spacing: 1.92px;
    margin-bottom: 42px;
}

.about-description {
    font:
        300 16px Poppins,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    letter-spacing: 0.48px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.about-cta-btn {
    background-color: rgba(255, 255, 255, 1);
    color: rgba(208, 39, 82, 1);
    border: none;
    padding: 15px 38px;
    font:
        400 20px Poppins,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    letter-spacing: 0.6px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.about-cta-btn:hover {
    background-color: rgba(244, 121, 108, 1);
    color: rgba(255, 255, 255, 1);
}

.about-image {
    margin-left: 20px;
}

.about-img {
    width: 100%;
    aspect-ratio: 0.9;
    object-fit: contain;
    border: 2px solid white;
}

/* Stats section */
.stats-section {
    background-color: rgba(244, 121, 108, 1);
    padding: 38px 18px;
    margin-top: 52px;
}

.stats-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    text-align: center;
}

.stat-item {
    min-height: 81px;
    border: 1px solid rgba(255, 255, 255, 1);
    padding: 10px;
    flex: 1;
    min-width: 200px;
}

.stat-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    text-transform: capitalize;
    font:
        500 16px Vazirmatn,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
}

.stat-number {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font:
        700 36px Playfair Display,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    line-height: 48px;
    color: rgba(0, 0, 0, 1);
}

.stat-label {
    font:
        400 20px Playfair Display,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    line-height: 21px;
    color: rgba(255, 255, 255, 1);
}

.stat-description {
    margin-top: 4px;
    color: rgba(255, 255, 255, 1);
    font:
        400 16px Roboto Mono,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
}

.stat-divider {
    width: 3px;
    height: 82px;
    border: 3px solid rgba(255, 255, 255, 1);
    flex-shrink: 0;
}

/* Trainers section */
.trainers-section {
    margin-top: 90px;
    padding: 0 20px;
}

.trainers-grid {
    display: flex;
    gap: 20px;
    max-width: 1085px;
    margin: 0 auto;
}

.trainer-card {
    position: relative;
    min-height: 509px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 36px 80px;
    color: rgba(0, 0, 0, 1);
    text-align: center;
    cursor: pointer;
    border-color: rgba(244, 121, 108, 1);
}

.trainer-card img {
    border: 3px solid transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.trainer-card:hover img {
    border-color: rgba(244, 121, 108, 1);
    /* change to your brand colour */
    box-shadow: 0 0 15px rgba(244, 121, 108, 0.8);
    transform: translateY(-4px);
}

.trainer-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.trainer-quote-overlay {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 0.78rem;
    font-style: italic;
    padding: 12px 16px;
    text-align: center;
    line-height: 1.5;
    width: 100%;
}

.trainer-info {
    position: relative;
    background-color: rgba(255, 255, 255, 1);
    padding: 15px 50px;
    width: 100%;
    margin-top: auto;
}

.trainer-name {
    font:
        500 16px Roboto Mono,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    letter-spacing: 0.2px;
    line-height: 1;
    margin: 0;
}

.trainer-credentials {
    font-size: 0.78rem;
    color: #555;
    margin: 6px 0 0;
    line-height: 1.3;
    font-style: italic;
    white-space: nowrap;
}

@media (max-width: 575.98px) {
    .trainer-credentials {
        white-space: normal;
    }
}

.trainer-card-link {
    display: flex;
    flex: 1;
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trainer-card-link:hover,
.trainer-card-link:focus {
    text-decoration: none;
    color: inherit;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

/* Training styles section */
.training-styles-section {
    margin-top: 121px;
    padding: 0 20px;
}

.training-styles-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto;
    gap: 20px;
    max-width: 1209px;
    margin: 0 auto 33px;
    align-items: start;
}

.training-style-large {
    grid-row: span 2;
}

.training-style-image {
    width: 100%;
    aspect-ratio: 1.32;
    object-fit: contain;
}

.training-style-card {
    color: rgba(0, 0, 0, 1);
    text-align: center;
    position: relative;
    height: 100%;
}

.training-style-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.training-style-content {
    background-color: rgba(255, 255, 255, 0.85);
    padding: 8px 34px;
    bottom: 0px;
    position: absolute;
    width: 100%;
}

.training-style-title {
    font:
        300 18px Hanuman,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
}

.training-styles-row {
    display: flex;
    gap: 12px;
    max-width: 1207px;
    margin: 0 auto 39px;
    flex-wrap: wrap;
    justify-content: center;
}

.training-styles-row .training-style-card {
    width: auto;
    flex: 1;
    min-width: 175px;
    aspect-ratio: 0.643;
    padding-top: 237px;
}

.trial-cta-btn {
    background-color: rgba(244, 121, 108, 1);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.28);
    color: rgba(255, 255, 255, 1);
    border: none;
    padding: 15px;
    font:
        400 24px Poppins,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    letter-spacing: 0.72px;
    cursor: pointer;
    margin: 0 auto;
    display: block;
    width: 360px;
    max-width: 100%;
    transition: background-color 0.3s ease;
}

.trial-cta-btn:hover {
    background-color: rgba(220, 100, 90, 1);
}

/* Testimonials section */
/* .testimonials-section {
    margin-top: 61px;
    padding: 0 20px;
}

.testimonials-image {
    width: 100%;
    max-width: 1078px;
    aspect-ratio: 2.43;
    object-fit: contain;
    margin: 73px auto 0;
    display: block;
} */

.testimonials-section {
    margin-top: 61px;
    padding: 60px 20px 80px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: rgba(244, 121, 108, 1);
    border-radius: 2px;
    margin: 12px auto 16px;
}

.section-subtitle {
    color: #666;
    font-size: 1.3rem;
    font-family: "Open Sans", Poppins, sans-serif;
    max-width: 480px;
    margin: 0 auto;
}

.testimonial-carousel-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

/* Clips overflow so only cpp cards are visible */
.testimonial-viewport {
    overflow: hidden;
    padding: 16px 0 32px;
}

/* The sliding track – width is set by JS */
.testimonial-track {
    display: flex;
    gap: 24px;
    will-change: transform;
}

/* Each card – width set via CSS var by JS */
.testimonial-card {
    flex: 0 0 var(--card-width, 300px);
    background: #fff;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    border: 1.5px solid transparent;
    transition:
        box-shadow 0.4s,
        transform 0.4s,
        border-color 0.4s,
        background 0.4s;
}

.testimonial-card.is-active {
    border-color: #2ecc71;
    background: #f0fdf6;
    box-shadow: 0 8px 36px rgba(46, 204, 113, 0.2);
    transform: translateY(-5px) scale(1.025);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid #2ecc71;
}

.testimonial-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: "Open Sans", Poppins, sans-serif;
    margin-bottom: 2px;
}

.testimonial-role {
    font-size: 0.8rem;
    color: #888;
    font-family: "Open Sans", Poppins, sans-serif;
}

.testimonial-stars {
    margin-top: 4px;
    color: #f5a623;
    font-size: 0.8rem;
    display: flex;
    gap: 2px;
}

.testimonial-text {
    font-size: 0.92rem;
    line-height: 1.65;
    color: #444;
    font-family: "Open Sans", Poppins, sans-serif;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 4px;
}

.testimonial-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #333;
    transition:
        background 0.2s,
        border-color 0.2s,
        color 0.2s;
    flex-shrink: 0;
}

.testimonial-btn:hover {
    background: #2ecc71;
    border-color: #2ecc71;
    color: #fff;
}

.dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    border: none;
    padding: 0;
    transition:
        background 0.25s,
        transform 0.25s;
}

.dot.active {
    background: #2ecc71;
    transform: scale(1.4);
}

/* Blog section */
.blog-section {
    margin-top: 90px;
    padding: 0 20px;
}

.blog-grid {
    display: flex;
    gap: 20px;
    max-width: 1085px;
    margin: 0 auto 13px;
}

.featured-post {
    width: 34%;
    display: flex;
    flex-direction: column;
}

.main-post {
    width: 66%;
    margin-left: 20px;
}

.blog-post-content {
    border-bottom: 1px solid rgba(216, 216, 216, 1);
    padding-bottom: 25px;
    margin-bottom: 18px;
}

.blog-image {
    width: 100%;
    object-fit: contain;
    margin-bottom: 24px;
}

.blog-title {
    font:
        700 18px/25px Playfair Display,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    color: rgba(0, 0, 0, 1);
    margin-bottom: 18px;
}

.main-post .blog-title {
    font:
        800 28px/1.2 Playfair Display,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    margin-top: 13px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font:
        600 13px Inter,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    color: rgba(109, 117, 127, 1);
    text-transform: uppercase;
    letter-spacing: 0.52px;
}

.blog-author,
.blog-date,
.blog-reading-time {
    display: flex;
    align-items: center;
    gap: 5px;
}

.author-avatar,
.date-icon,
.time-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.blog-category {
    margin: 01px auto 12px;
}

.category-tag {
    border: 1px solid rgba(184, 193, 205, 1);
    border-radius: 3px;
    padding: 7px 26px;
    font:
        600 13px Inter,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    color: rgba(109, 117, 127, 1);
    text-transform: uppercase;
    letter-spacing: 0.78px;
    line-height: 1;
}

.blog-excerpt {
    display: flex;
    gap: 100px;
    max-width: 1063px;
    margin: 0 auto;
    align-items: flex-start;
}

.blog-description {
    font:
        400 15px/28px Poppins,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    color: rgba(84, 94, 105, 1);
    margin-top: 22px;
}

/* Footer */
.main-footer {
    background-color: rgba(0, 0, 0, 1);
    color: rgba(255, 255, 255, 1);
    padding: 95px 74px 0;
    margin-top: 20px;
}

.footer-content {
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 28px;
}

.footer-section {
    flex: 1;
}

.footer-title {
    font:
        800 20px/1.2 Playfair Display,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    margin-bottom: 15px;
}

.footer-underline {
    width: 32px;
    height: 5px;
    background-color: rgba(244, 121, 108, 1);
    margin-bottom: 26px;
}

.footer-description {
    font:
        400 16px/28px Inter,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    line-height: 1.75;
}

.footer-nav {
    margin-top: 29px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    font:
        500 15px/2 Inter,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: rgba(244, 121, 108, 1);
}

.contact-info {
    font-style: normal;
    margin-top: 23px;
}

.contact-item {
    margin-bottom: 7px;
    font:
        500 16px/26px Inter,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
}

.contact-item:last-child {
    font-weight: 400;
    line-height: 2;
}

.contact-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
    margin-top: 6px;
    flex-shrink: 0;
}

.contact-item span,
.contact-item a {
    color: rgba(250, 250, 250, 1);
    text-decoration: none;
    width: 248px;
}

.contact-item a:hover {
    color: rgba(244, 121, 108, 1);
}

/* Footer Training Locations */
.footer-locations {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-locations-header {
    background: rgba(255, 255, 255, 0.04);
    padding: 20px 74px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-locations-title {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    white-space: nowrap;
    color: rgba(244, 121, 108, 1);
}

.footer-locations-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-location-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(200, 200, 200, 1);
    text-decoration: none;
    font-size: 0.82rem;
    padding: 5px 14px;
    border-radius: 20px;
    transition: background 0.25s, color 0.25s;
}

.footer-location-pill:hover {
    background: rgba(244, 121, 108, 0.15);
    border-color: rgba(244, 121, 108, 0.5);
    color: rgba(244, 121, 108, 1);
}

.footer-location-pill i {
    color: rgba(244, 121, 108, 1);
    font-size: 0.75rem;
}

.footer-maps-row {
    display: flex;
    gap: 12px;
    padding: 0 12px 12px;
}

.footer-map-item {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.footer-map-label {
    background: rgba(244, 121, 108, 1);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    text-align: center;
    padding: 7px 12px;
    letter-spacing: 0.3px;
}

/* Footer bottom */
.footer-bottom {
    border-top: 1px solid rgba(223, 223, 223, 1);
    padding: 25px 14px 25px 0;
}

.footer-legal a {
    color: rgba(84, 94, 105, 1);
    text-decoration: none;
    font:
        400 16px/2 Inter,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    transition: color 0.3s ease;
}

.social-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #fff;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition:
        background-color 0.2s,
        color 0.2s;
}

.social-circle:hover {
    background: rgba(244, 121, 108, 1);
    color: #fff;
}

.footer-legal a:hover {
    color: rgba(244, 121, 108, 1);
}

.copyright-text {
    color: rgba(84, 94, 105, 1);
    font:
        400 16px/2 Inter,
        -apple-system,
        Roboto,
        Helvetica,
        sans-serif;
    text-align: right;
}

.scroll-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    background-color: rgba(244, 121, 108, 1);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.scroll-to-top:hover {
    background-color: rgba(220, 100, 90, 1);
    transform: translateY(-3px);
}

.scroll-gradient {
    height: 10px;
    margin-top: 16px;
    width: 100%;
    background: linear-gradient(to bottom,
            rgba(244, 121, 108, 1),
            rgba(200, 100, 90, 1));
}

/* Responsive design */
@media (max-width: 991px) {
    .top-banner {
        padding: 0 20px;
    }

    .banner-content {
        flex-direction: column;
        text-align: center;
    }

    .nav-container {
        flex-direction: column;
        gap: 0;
    }

    .logo-section {
        width: 100%;
    }

    .nav-links {
        width: 100%;
        margin-left: 0;
    }

    .navigation-menu {
        margin-top: 40px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-section {
        padding: 100px 20px;
    }

    .hero-title {
        font-size: 40px;
        width: 100%;
    }

    .hero-description {
        width: 100%;
    }

    .primary-cta-btn {
        padding-left: 20px;
        margin: 40px 0 10px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .service-card {
        margin-top: 40px;
    }

    .cta-section {
        padding: 100px 20px;
        margin-top: 40px;
    }

    .cta-title {
        font-size: 40px;
        margin-right: 3px;
    }

    .cta-description {
        width: 100%;
    }

    .cta-button {
        margin: 40px 0 10px;
        padding: 0 20px;
    }

    .about-section {
        margin-top: 40px;
        padding: 0 20px;
    }

    .about-container {
        flex-direction: column;
        gap: 0;
    }

    .about-content {
        width: 100%;
        padding-right: 0;
        margin-top: 40px;
    }

    .about-title {
        margin-left: 3px;
        font-size: 40px;
    }

    .about-description {
        margin-top: 40px;
    }

    .about-cta-btn {
        padding: 0 20px;
    }

    .about-image {
        width: 100%;
        margin-left: 0;
        margin-top: 40px;
    }

    .about-img {
        width: 100%;
    }

    .stats-container {
        flex-direction: column;
        gap: 20px;
    }

    .stat-item {
        min-width: 100%;
    }

    .stat-divider {
        width: 100%;
        height: 3px;
    }

    .trainers-section {
        margin-top: 40px;
    }

    .trainers-grid {
        flex-direction: column;
        gap: 0;
    }

    .trainer-card {
        margin-top: 40px;
        padding: 100px 20px 0;
    }

    .training-styles-section {
        margin-top: 40px;
    }

    .training-styles-grid {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .training-style-large {
        grid-row: span 1;
    }

    .training-style-image {
        margin-top: 11px;
    }

    .training-style-card {
        width: 100%;
    }

    .training-style-content {
        padding: 0 20px;
    }

    .training-styles-row {
        flex-direction: column;
        gap: 20px;
    }

    .training-styles-row .training-style-card {
        width: 100%;
        padding-top: 100px;
    }

    .trial-cta-btn {
        padding: 10px 20px;
        width: 100%;
        margin-top: 35px;
    }

    .testimonials-section {
        margin-top: 40px;
    }

    .testimonials-image {
        margin-top: 40px;
    }

    .blog-section {
        margin-top: 40px;
    }

    .blog-grid {
        flex-direction: column;
        gap: 0;
    }

    .featured-post {
        width: 100%;
        margin-top: 40px;
    }

    .main-post {
        width: 100%;
        margin-left: 0;
        margin-top: 40px;
    }

    .blog-category {
        padding: 0 20px;
    }

    .blog-title {
        width: 100%;
    }

    .blog-excerpt {
        flex-direction: column;
        gap: 20px;
    }

    .blog-description {
        width: 100%;
    }

    .main-footer {
        margin-top: 40px;
        padding: 0 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-bottom {
        padding-left: 20px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-copyright {
        flex-direction: column;
        gap: 20px;
    }

    .scroll-to-top {
        white-space: initial;
    }
}

/* Additional responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .navigation-menu {
        flex-direction: column;
        gap: 10px;
    }

    .header-actions {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .book-session-btn,
    .free-trial-btn {
        width: 65%;
        padding: 15px;
    }

    .stats-container {
        padding: 20px 10px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-section {
        text-align: center;
    }

    .contact-item {
        justify-content: center;
        text-align: center;
    }

    .contact-item span,
    .contact-item a {
        width: auto;
    }

    .hero-content {
        width: 100%;
    }

    /* testimonaal */
}

.testimonial-card {
    background-color: #f9f9f9;
    border: 1px solid #ececec;
    border-radius: 8px;
    padding: 25px;
    height: 100%;
}

.testimonial-card--active {
    background-color: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: scale(1.03);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-name {
    font-family: "Open Sans", Poppins, sans-serif;
    font-style: italic;
    font-size: 17px;
    margin: 0;
    color: #000;
}

.testimonial-role {
    font-family: "Open Sans", Poppins, sans-serif;
    font-size: 13px;
    color: #666;
    display: block;
}

.testimonial-stars {
    color: #f4a435;
    font-size: 14px;
    margin-top: 4px;
}

.testimonial-text {
    font-family: "Open Sans", Poppins, sans-serif;
    font-size: 14px;
    color: #333;
    text-align: center;
    line-height: 1.9;
    margin: 0;
}

/* Indicators */
.testimonial-indicators {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.carousel-indicators-custom {
    display: flex;
    gap: 8px;
}

.dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #555;
}

.testimonial-prev,
.testimonial-next {
    background: none;
    border: none;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    color: rgba(244, 121, 108, 1);
}

@media (max-width: 767px) {
    .testimonial-card--active {
        transform: scale(1);
        box-shadow: none;
    }
}

/* ── VIDEO HERO BANNER ── */
/* ── FULL-COVER VIDEO BACKGROUND HERO ── */
.hero-videobg {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
}

.hero-bg-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-bg-video-wrap video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    /* 16:9 aspect ratio based on width */
    min-height: 100%;
    min-width: 177.78vh;
    /* 16:9 aspect ratio based on height */
    transform: translate(-50%, -50%);
    border: 0;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-videobg-content {
    position: relative;
    z-index: 2;
}

.hero-videobg .hero-title {
    color: #fff;
}

.hero-videobg .hero-description {
    color: rgba(255, 255, 255, 0.88);
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.hero-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 14px 30px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s;
}

.hero-btn-outline:hover {
    background: #fff;
    color: #000;
}

.hero-video-controls {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    gap: 8px;
    z-index: 5;
}

.hero-video-ctrl-btn {
    background: rgba(0, 0, 0, 0.55);
    border: none;
    color: #fff;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.hero-video-ctrl-btn:hover {
    background: rgba(244, 121, 108, 0.85);
}

/* (hero form is now a modal popup) */

@media (max-width: 991px) {
    .hero-videobg {
        min-height: 400px;
        padding: 60px 0;
    }
}

/* ── LET'S CONNECT POPUP ── */
.connect-popup {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
    padding: 40px 20px;
    position: relative;
}

.connect-popup.hidden {
    display: none;
}

.connect-popup-inner {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 10px;
    padding: 28px 24px;
}

.connect-popup-close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    z-index: 2;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.connect-popup-close:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .connect-popup-inner {
        padding: 20px 16px;
    }

    .connect-popup .hero-form-row {
        flex-direction: column;
        gap: 0;
    }
}

/* =====================================================================
   TABLET & MOBILE RESPONSIVE ADDITIONS
   Desktop styles above are unchanged. These blocks only add overrides
   for header, footer, and index.php sections at tablet and mobile sizes.
   Order: tablet (≤991px) → small tablet/large phone (≤768px) →
          mobile (≤576px) → tiny phone (≤380px).
   ===================================================================== */

/* ---- Tablet (≤991px) — header / footer / index gaps ---- */
@media (max-width: 991px) {

    /* Header — banner left items keep on one row when banner stacks */
    .banner-left {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Footer — let Bootstrap col-12/col-md-6 take over from the
     desktop `.footer-section { flex: 1 }` rule, so columns actually
     stack instead of squeezing into one row on phones/tablets. */
    .footer-section {
        flex: unset;
    }

    /* Footer — stack the three location maps */
    .footer-maps-row {
        flex-direction: column;
        gap: 16px;
        padding: 0 16px 16px;
    }

    .footer-map-item iframe {
        height: 220px;
    }

    /* Footer — tighten the locations header bar */
    .footer-locations-header {
        padding: 16px 20px;
        justify-content: flex-start;
    }

    .footer-locations-title {
        white-space: normal;
        font-size: 0.9rem;
    }

    /* Footer bottom alignment */
    .copyright-text {
        text-align: center;
    }

    /* Index hero — slightly tighter video hero */
    .hero-videobg .hero-description {
        font-size: 1rem;
    }
}

/* ---- Small tablet / large phone (≤768px) ---- */
@media (max-width: 768px) {

    /* Header — book session button shouldn't crowd the banner */
    .top-banner {
        padding: 10px 12px;
    }

    .book-session-btn {
        font-size: 13px;
        padding: 10px 16px;
    }

    /* Footer — center section content (already partially handled) */
    .footer-section {
        text-align: center;
    }

    .footer-underline {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-locations-header {
        justify-content: center;
        text-align: center;
    }

    .footer-locations-pills {
        justify-content: center;
    }

    /* Index hero buttons — let them stack cleanly */
    .hero-btns {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .hero-btn-outline,
    .hero-form-submit {
        width: 65%;
        text-align: center;
        padding: 13px 20px !important;
        font-size: 0.95rem;
    }

    /* Index — modal content padding */
    #heroFormModal .modal-body,
    #heroFormModal .modal-header {
        padding: 16px 18px;
    }
}

/* ---- Mobile (≤576px) — typography + spacing scale-down ---- */
@media (max-width: 576px) {

    /* Header */
    .banner-phone {
        font-size: 0.85rem;
    }

    .banner-facebook {
        font-size: 1.1rem;
    }

    /* Index hero */
    .hero-videobg {
        min-height: 360px;
        padding: 48px 0;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .hero-videobg .hero-description {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    /* Index — section spacing */
    .services-section,
    .trainers-section,
    .training-styles-section,
    .testimonials-section,
    .blog-section {
        margin-top: 32px;
        padding: 0 16px;
    }

    .section-header {
        margin-bottom: 28px;
    }

    /* Index — about block */
    .about-section {
        padding: 32px 16px;
    }

    .about-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .about-label {
        font-size: 24px;
    }

    .about-cta-btn {
        width: 100%;
        padding: 14px;
        font-size: 1rem;
        margin-left: 0;
    }

    /* Index — stats */
    .stats-section {
        padding: 24px 16px;
    }

    .stat-value {
        font-size: 28px;
        line-height: 1.2;
    }

    .stat-label {
        font-size: 16px;
    }

    .stat-description {
        font-size: 13px;
    }

    /* Index — CTA banner */
    .cta-section {
        padding: 60px 20px;
        text-align: center;
    }

    .cta-title {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .cta-description {
        font-size: 16px;
    }

    .cta-button {
        width: 100%;
        font-size: 1rem;
        padding: 14px;
    }

    /* Index — trainer cards */
    .trainer-card {
        min-height: 380px;
        padding: 60px 16px 0;
    }

    .trainer-info {
        padding: 12px 16px;
    }

    /* Index — training styles row cards */
    .training-styles-row .training-style-card {
        padding-top: 180px;
    }

    /* Index — trial CTA */
    .trial-cta-btn {
        font-size: 1rem;
        padding: 14px;
    }

    /* Footer — compact mobile layout
     Once columns actually stack (fix is in the ≤991 block above),
     the desktop typography feels huge at phone widths. Tighten it. */
    .main-footer {
        padding: 32px 16px 0;
        margin-top: 24px;
    }

    .footer-content {
        margin-bottom: 16px;
    }

    /* Tighten Bootstrap row gutters between stacked sections */
    .footer-content .row {
        --bs-gutter-x: 12px;
        --bs-gutter-y: 20px;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 6px;
    }

    .footer-underline {
        width: 28px;
        height: 3px;
        margin-bottom: 12px;
    }

    .footer-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .footer-nav {
        margin-top: 0;
    }

    .footer-links li {
        margin-bottom: 4px;
    }

    .footer-links a {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .contact-info {
        margin-top: 8px;
    }

    .contact-item {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }

    /* Footer locations + maps */
    .footer-locations {
        margin-top: 12px;
    }

    .footer-locations-header {
        padding: 14px 16px;
        gap: 10px;
    }

    .footer-locations-title {
        font-size: 0.85rem;
    }

    .footer-location-pill {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    .footer-map-item iframe {
        height: 180px;
    }

    .footer-map-label {
        font-size: 0.72rem;
        padding: 6px 10px;
    }

    .social-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .footer-bottom {
        padding: 18px 16px;
    }

    .footer-legal a,
    .copyright-text {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    /* Floating scroll-to-top — pull off the edge a bit */
    .scroll-to-top {
        bottom: 18px;
        right: 18px;
        width: 40px;
        height: 40px;
    }
}

/* ---- Tiny phone (≤380px) — last-mile tightening ---- */
@media (max-width: 380px) {
    .banner-left {
        gap: 8px;
    }

    .banner-phone {
        font-size: 0.8rem;
    }

    .book-session-btn {
        font-size: 12px;
        padding: 9px 12px;
    }

    .hero-title {
        font-size: 24px;
    }

    .cta-title {
        font-size: 26px;
    }

    .about-title {
        font-size: 24px;
    }
}