/* ---------------------------------------------------------
   GLOBAL RESET / BASE
--------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background: #f5f7fa;
    color: #222;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none !important;
    color: inherit;
}

.container {
    width: 92%;
    max-width: 1180px;
    margin: auto;
}

:root {
    --blue: #0078ff;
    --yellow: #f6c90e;
    --dark: #222;
    --card: #ffffff;
}

html, body {
    overflow-x: hidden;
}

/* ---------------------------------------------------------
   HEADER / NAV
--------------------------------------------------------- */
header {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(8px);
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-badge {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-title {
    font-weight: 800;
    font-size: 18px;
}

.logo-subtitle {
    font-size: 12px;
    opacity: 0.7;
}

nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 22px;
}

.nav-links a {
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 2px;
    width: 0;
    background: var(--blue);
    transition: width 0.2s ease;
}

.nav-links a:hover {
    color: var(--blue);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--yellow);
    padding: 8px 14px;
    border-radius: 8px;
    font-weight: 700;
    color: #000;
}

/* Mobile nav */
.nav-toggle {
    display: none;
}

@media (max-width: 820px) {
    .nav-toggle {
        display: block;
        width: 26px;
        height: 20px;
        position: relative;
        cursor: pointer;
    }

    .nav-toggle span,
    .nav-toggle span:before,
    .nav-toggle span:after {
        content: "";
        position: absolute;
        width: 100%;
        height: 3px;
        background: #000;
        border-radius: 2px;
        transition: 0.3s;
    }

    .nav-toggle span { top: 50%; transform: translateY(-50%); }
    .nav-toggle span:before { top: -8px; }
    .nav-toggle span:after { top: 8px; }

    nav {
        position: absolute;
        top: 64px;
        left: 0;
        background: #fff;
        width: 100%;
        flex-direction: column;
        overflow: hidden;
        height: 0;
        opacity: 0;
        pointer-events: none;
        transition: 0.25s;
        padding-bottom: 10px;
        box-shadow: 0 8px 14px rgba(0,0,0,0.06);
    }

    #mainNav.open {
        height: auto;
        opacity: 1;
        pointer-events: all;
    }

    .nav-links {
        flex-direction: column;
        gap: 12px;
        padding: 14px 0;
        align-items: center;
    }

    .nav-cta {
        margin-bottom: 10px;
    }
}

/* ---------------------------------------------------------
   SECTIONS / STRUCTURE
--------------------------------------------------------- */

.section-divider {
    margin: 32px 0 24px;
}

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

.section-title {
    font-size: 28px;
    font-weight: 800;
}

.section-subtitle {
    margin-top: 6px;
    font-size: 15px;
    color: #555;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* ---------------------------------------------------------
   HERO
--------------------------------------------------------- */
.hero {
    padding: 30px 0 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
}

.hero h1 {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
}

.hero h1 span {
    color: var(--blue);
}

.hero-subtitle {
    margin-top: 10px;
    font-size: 17px;
    opacity: 0.85;
}

.hero-meta {
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}

.hero-cta-row {
    display: flex;
    gap: 14px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-block;
}

.btn-primary {
    background: var(--blue);
    color: #fff;
}

.btn-outline {
    border: 2px solid var(--blue);
    color: var(--blue);
    background: transparent;
}

.hero-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.hero-card h3 {
    margin-top: 10px;
    font-size: 20px;
}

.hero-card ul {
    margin-top: 10px;
    padding-left: 18px;
}

.hero-card-tag {
    display: inline-block;
    background: #e8f2ff;
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero-card-footnote {
    margin-top: 18px;
    padding-top: 12px;
    border-top: 1px solid rgba(0,0,0,0.08);
    font-size: 14px;
    line-height: 1.45;
    color: #555;
    opacity: 0.85;
    font-weight: 500;
}

/* Mobile hero */
@media(max-width: 820px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero h1 {
        font-size: 28px;
    }
}

/* ---------------------------------------------------------
   SERVICE SELECTOR CARDS (HOME)
--------------------------------------------------------- */
.service-choice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 10px 0 20px;
}

.service-choice-card {
    background: #ffffff;
    padding: 16px;
    border-radius: 10px;
    border: 1px solid #d9e6ff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
    cursor: pointer;
    transition: 0.2s ease;
}

.service-choice-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}

.service-choice-card .choice-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 6px;
}

/* Active (if you want to highlight current selection via JS later) */
.service-choice-card.active {
    border-color: var(--blue);
    box-shadow: 0 0 0 2px rgba(0,120,255,0.18);
    background: #f1f6ff;
}

/* Mobile: stack */
@media (max-width: 820px) {
    .service-choice-grid {
        grid-template-columns: 1fr;
    }

    .service-choice-card {
        text-align: center;
    }
}

/* ---------------------------------------------------------
   PRICING
--------------------------------------------------------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.pricing-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #d9e6ff;
}

.pricing-name {
    font-weight: 600;
    margin-bottom: 4px;
}

.pricing-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--blue);
}

.pricing-duration {
    font-size: 14px;
    opacity: 0.75;
}

@media(max-width: 900px) {
    .pricing-grid { grid-template-columns: repeat(2,1fr); }
}

@media(max-width: 600px) {
    .pricing-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------
   GALLERY
--------------------------------------------------------- */


/* ---------------------------------------------------------
   CONTACT
--------------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
}

.contact-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

.contact-label {
    font-weight: 600;
    margin-top: 8px;
    font-size: 14px;
}

.contact-value {
    font-size: 15px;
    margin-top: 2px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 16px; /* iPhone anti-zoom */
}

.contact-form textarea {
    min-height: 100px;
}

.btn-block { width: 100%; }

@media(max-width: 820px) {
    .contact-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------
   ACCORDION (Treatments / Training / CPD)
--------------------------------------------------------- */
.treatment-accordion {
    list-style: none;
    margin-top: 12px;
}

.accordion-item {
    border-bottom: 1px solid #e5e5e5;
    padding: 6px 0;
}

.accordion-header {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 8px 0;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
}

.accordion-header::after {
    content: "+";
    float: right;
}

.accordion-header.active::after {
    content: "-";
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    font-size: 14px;
    transition: max-height 0.25s ease, opacity 0.25s ease;
}

.accordion-content.open {
    opacity: 1;
    margin-top: 4px;
}

/* ---------------------------------------------------------
   WHATSAPP BUTTON
--------------------------------------------------------- */
.whatsapp-float {
    position: fixed;
    bottom: 22px;
    right: 22px;
    background: #25D366;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size: 24px;
    color: #fff;
}

/* ---------------------------------------------------------
   FOOTER
--------------------------------------------------------- */
footer {
    text-align:center;
    padding: 30px 0;
    margin-top: 40px;
    border-top: 1px solid #e5e5e5;
    background: #fff;
}

.footer-inner {
    font-size: 14px;
    color: #666;
}

/* ---------------------------------------------------------
   MOBILE STICKY BOTTOM BAR
--------------------------------------------------------- */
.mobile-sticky-bar {
    display: none; /* Hidden on desktop */
}

@media (max-width: 700px) {
    .mobile-sticky-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #ffffff;
        border-top: 1px solid rgba(0,0,0,0.12);
        box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
        z-index: 9999;
    }

    .sticky-btn {
        flex: 1;
        padding: 14px 0;
        text-align: center;
        font-weight: 700;
        font-size: 16px;
        border-right: 1px solid rgba(0,0,0,0.06);
    }

    .sticky-btn:last-child {
        border-right: none;
    }

    .sticky-btn.primary {
        background: var(--blue);
        color: white;
    }

    .sticky-btn.secondary {
        background: var(--yellow);
        color: #000;
    }
}
/* ---------------------------------------------------------
   REVIEWS (Restored + Premium Styling)
--------------------------------------------------------- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 20px;
}

.review-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    transition: 0.2s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}

.review-text {
    font-size: 15px;
    line-height: 1.5;
    color: #444;
}

.review-name {
    margin-top: 12px;
    font-weight: 700;
    color: var(--blue);
    font-size: 14px;
}

@media(max-width: 820px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}
/* ---------------------------------------------------------
   MAIN PANEL VISIBILITY CONTROL (New)
--------------------------------------------------------- */
.main-panel {
    display: none !important;        /* All sections hidden by default */
}

.main-panel.active {
    display: block !important;       /* The section JS chooses will show */
}

/* ---------------------------------------------------------
   FORCE SERVICE BLOCKS INTO 3 COLUMNS EVEN ON iPHONE
--------------------------------------------------------- */
.service-choice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 14px;
}

.service-choice-card {
    text-align: center;
}

.service-choice-card p {
    font-size: 13px;
    line-height: 1.35;
}

/* Override mobile stacking */
@media (max-width: 820px) {
    .service-choice-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 500px) {
    .service-choice-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 10px;
    }

    .service-choice-card {
        padding: 10px;
    }

    .service-choice-card .choice-title {
        font-size: 15px;
    }

    .service-choice-card p {
        display: none; /* optional – hides text on tiny screens */
    }
}
.service-choice-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    transition: 
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
    cursor: pointer;
}

/* Strong hover highlight */
.service-choice-card:hover {
    background: #f3f8ff; /* light blue glow (change if needed) */
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;

    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);

    z-index: 999999;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

/* Active (shown) state */
.booking-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.booking-modal-content {
    width: 95%;
    max-width: 1000px;
    height: 90vh;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

.booking-close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 38px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10000;
}

.booking-iframe {
    width: 100%;
    height: 100%;
    border: none;
}
@media (max-width: 768px) {
    .whatsapp-float,
    #whatsapp-float {
        display: none !important;
    }
}






/* ------------------ MODAL ------------------ */
.offer-modal {
    display: none;
    position: fixed;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
}

.offer-modal-content {
    background: #fff;
    max-width: 420px;
    margin: 60px auto;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    position: relative;
}

.offer-image {
    width: 75%;
    align-content: center;
    border-radius: 10px;
    margin-bottom: 15px;
}

.offer-close {
    position: absolute;
    right: 12px;
    top: 8px;
    font-size: 26px;
    cursor: pointer;
    color: #666;
}

.offer-special {
    font-size: 18px;
    margin: 15px 0;
    color: #444;
}

.offer-btn {
    display: inline-block;
    background: #ff9800;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
}

.offer-bar {
    display: none;
    width: 100%;
    background: #ff9800;
    color: #fff;
    padding: 12px 18px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px; /* adds space below menu */
    border-radius: 6px;
}
.

/* Video play icon */
.play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: white;
    background: rgba(0,0,0,0.35);
}

/* =========================================================
   GALLERY (FINAL – DESKTOP + MOBILE)
========================================================= */

.gallery-wrap {
    position: relative;
}

/* Scroll container */
.gallery-grid {
    display: flex;
    gap: 18px;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;

    cursor: grab;
    -webkit-overflow-scrolling: touch;
}

.gallery-grid.dragging {
    cursor: grabbing;
}

/* Items */
.gallery-item {
    position: relative;
    flex: 0 0 calc(33.333% - 12px);
    height: 260px;
    border-radius: 12px;
    overflow: hidden;
    scroll-snap-align: start;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video play overlay */
.play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #fff;
    background: rgba(0,0,0,0.35);
}

/* Desktop visual hint */
@media (min-width: 769px) {
    .gallery-wrap::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 80px;
        height: 100%;
        pointer-events: none;
        background: linear-gradient(
            to left,
            #f5f7fa,
            rgba(245,247,250,0)
        );
    }
}

/* Progress bar */
.gallery-progress {
    height: 3px;
    background: rgba(0,0,0,0.12);
    margin-top: 12px;
    border-radius: 2px;
    overflow: hidden;
}

.gallery-progress span {
    height: 100%;
    width: 15%;
    background: #f6c90e;
    display: block;
    transition: width 0.25s ease;
}

/* Mobile */
@media (max-width: 768px) {

    .gallery-item {
        flex: 0 0 100%;
        height: 240px;
        scroll-snap-align: center;
    }

    .gallery-progress {
        display: none;
    }

    .gallery-dots {
        text-align: center;
        margin-top: 10px;
    }

    .gallery-dots span {
        display: inline-block;
        width: 8px;
        height: 8px;
        margin: 0 4px;
        border-radius: 50%;
        background: #ccc;
    }

    .gallery-dots span.active {
        background: #0078ff;
    }
}

/* Modal */
.gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.gallery-modal.open {
    display: flex;
}

.gallery-modal-content img,
.gallery-modal-content video {
    max-width: 90vw;
    max-height: 90vh;
}

.gallery-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    font-size: 28px;
    cursor: pointer;
    z-index: 5;
    display: none;
}

.gallery-arrow.prev { left: 10px; }
.gallery-arrow.next { right: 10px; }

@media (min-width: 769px) {
    .gallery-wrap:hover .gallery-arrow {
        display: block;
    }
}

@media (max-width: 768px) {
    .gallery-arrow {
        display: none;
    }
}

/* =========================================
   TREATMENTS: 3 COLUMN DESKTOP LAYOUT
========================================= */
@media (min-width: 1024px) {

    #treatments .hero-grid {
        grid-template-columns: 1.1fr 1fr 1.3fr;
        align-items: start;
        gap: 28px;
    }

    #treatments .treatment-text {
        max-width: 420px;
    }

    #treatments .treatment-video {
        margin-top: 8px;
    }

    #treatments .hero-card {
        height: 100%;
    }
}
/* =========================================
   TREATMENT VIDEO – PORTRAIT SAFE
========================================= */
.treatment-video {
    width: 100%;
    max-width: 360px;          /* prevents it dominating the grid */
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

/* Let the video decide its own ratio */
.treatment-video video {
    width: 100%;
    height: auto;              /* THIS preserves portrait */
    display: block;
    object-fit: contain;       /* NEVER crop portrait */
}

/* =========================================
   DESKTOP: SHRINK PORTRAIT VIDEO
========================================= */
@media (min-width: 1024px) {
    .treatment-video {
        max-width: 240px;   /* adjust 240–320px to taste */
    }
}
