/* ===========================================
   RejuvaMed Skin & Body - Complete Stylesheet
   FaceFoundrie-Inspired Clean Editorial Design
   =========================================== */

/* ---- Reset ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ---- Variables ---- */
:root {
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --navy: #1e2a5a;
    --navy-dark: #141d42;
    --navy-light: #e8eaf4;
    --gold: #c9a96e;
    --white: #ffffff;
    --off-white: #f8f7f4;
    --black: #111111;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-500: #888888;
    --gray-700: #444444;
    --text: #333333;
    --transition: 0.3s ease;
}

html {
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
    -webkit-overflow-scrolling: touch;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
    color: var(--black);
}

h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
}

h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    border-radius: 0;
    line-height: 1;
}

.btn-primary {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-primary:hover {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

.btn-white:hover {
    background: var(--off-white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}

.btn-outline-dark {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-outline-dark:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 0.85rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.75rem;
}

/* ---- Labels & Section Styles ---- */
.label {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 12px;
}

.label-gold {
    color: var(--gold);
}

.label-white {
    color: rgba(255, 255, 255, 0.7);
}

.section-title {
    margin-bottom: 16px;
}

.section-sub {
    max-width: 600px;
    color: var(--gray-700);
    font-size: 1.05rem;
    line-height: 1.7;
}

.text-center {
    text-align: center;
}

.text-center .section-sub {
    margin-left: auto;
    margin-right: auto;
}

/* =============================================
   HEADER
   ============================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    height: 72px;
}

.header-logo img {
    height: 56px;
    width: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-links {
    display: flex;
    gap: 28px;
}

.header-link {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text);
    position: relative;
    padding: 4px 0;
}

.header-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--navy);
    transition: width var(--transition);
}

.header-link:hover::after,
.header-link.active::after {
    width: 100%;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 6px;
}

.header-phone:hover {
    color: var(--navy);
}

.header-phone svg {
    width: 14px;
    height: 14px;
}

.header-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.header-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--black);
    transition: all var(--transition);
}

/* ---- Mobile Menu ---- */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    flex-direction: column;
    padding: 32px;
    gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu a {
    padding: 16px 0;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--gray-200);
    color: var(--text);
}

.mobile-menu .btn {
    margin-top: 24px;
    text-align: center;
}

/* =============================================
   HERO
   ============================================= */
.hero {
    position: relative;
    height: 85vh;
    min-height: 550px;
    max-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 72px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 17, 17, 0.45);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 32px;
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    padding: 7px 20px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hero-title {
    color: var(--white);
    margin-bottom: 20px;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-sub {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.hero-stars {
    display: flex;
    gap: 2px;
    color: #fbbf24;
}

.hero-stars svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* =============================================
   VALUES BAR
   ============================================= */
/* =============================================
   VALUES BAR
   ============================================= */
.values-bar {
    background: var(--navy);
    color: var(--white);
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    text-align: center;
}

/* Icons removed */

.values-grid h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0;
    text-transform: none;
    margin-bottom: 16px;
    color: var(--white);
}

.values-grid p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    max-width: 320px;
    margin: 0 auto;
}

/* =============================================
   SERVICES - Tabbed
   ============================================= */
.services {
    padding: 80px 0;
}

.services .container {
    max-width: 1400px;
}

.service-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.service-tab {
    background: none;
    border: 2px solid var(--gray-200);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 12px 24px;
    cursor: pointer;
    color: var(--gray-700);
    transition: all var(--transition);
}

.service-tab:hover {
    border-color: var(--navy);
    color: var(--navy);
}

.service-tab.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.service-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 450px;
}

.service-panel.active {
    display: grid;
}

.service-panel-img {
    overflow: hidden;
}

.service-panel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-panel-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px 56px;
    background: var(--off-white);
}

.service-panel-body h3 {
    margin-bottom: 16px;
}

.service-panel-body p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

.service-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    background: var(--navy-light);
    color: var(--navy);
}

/* =============================================
   PROMO CARDS
   ============================================= */
.promos {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.promo {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    cursor: pointer;
    text-decoration: none;
}

.promo-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.promo:hover .promo-bg {
    transform: scale(1.05);
}

.promo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 60%);
    transition: background var(--transition);
}

.promo:hover::after {
    background: linear-gradient(to top, var(--navy) 0%, rgba(30, 42, 90, 0.6) 60%);
}

.promo-body {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.promo-label {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.promo-body h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--white);
}

.promo-body p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    line-height: 1.6;
}

.promo-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
}

.promo-cta svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition);
}

.promo:hover .promo-cta svg {
    transform: translateX(4px);
}

/* =============================================
   SPLIT SECTION (About, Feature)
   ============================================= */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 500px;
}

.split-img {
    overflow: hidden;
}

.split-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px 72px;
}

.split-body h2 {
    margin-bottom: 20px;
}

.split-body h2 em {
    color: var(--navy);
    font-style: italic;
}

.split-body>p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 32px;
}

.split-list li {
    padding: 6px 0;
    padding-left: 24px;
    position: relative;
    font-size: 0.92rem;
    color: var(--gray-700);
}

.split-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--navy);
    font-weight: 700;
}

.split-list {
    margin-bottom: 32px;
}

/* =============================================
   FEATURE BANNER (Navy BG)
   ============================================= */
.feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 450px;
    background: var(--navy);
}

.feature.reverse {
    direction: rtl;
}

.feature.reverse>* {
    direction: ltr;
}

.feature-img {
    overflow: hidden;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px 64px;
    color: var(--white);
}

.feature-body h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.feature-body p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 32px;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
    padding: 80px 0;
    background: var(--off-white);
}

.testimonial-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 32px 0;
    scroll-behavior: smooth;
}

.testimonial-track::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 340px;
    scroll-snap-align: start;
    background: var(--white);
    padding: 32px;
    border: 1px solid var(--gray-200);
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    color: #fbbf24;
    margin-bottom: 16px;
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.testimonial-card blockquote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text);
    font-style: normal;
}

.testimonial-card cite span {
    display: block;
    font-weight: 400;
    color: var(--gray-500);
    margin-top: 4px;
    text-transform: none;
    letter-spacing: 0;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.testimonial-nav button {
    width: 40px;
    height: 40px;
    border: 2px solid var(--gray-200);
    background: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.testimonial-nav button:hover {
    border-color: var(--navy);
    color: var(--navy);
}

.testimonial-nav button svg {
    width: 16px;
    height: 16px;
}

/* =============================================
   TEAM GRID
   ============================================= */
.team {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.team-card {
    text-align: center;
}

.team-card-img {
    width: 100%;
    aspect-ratio: 1;
    background: var(--gray-100);
    overflow: hidden;
    margin-bottom: 16px;
}

.team-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team-card p {
    font-size: 0.78rem;
    color: var(--gray-500);
}

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
    background: var(--navy);
    color: var(--white);
    text-align: center;
    padding: 80px 32px;
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.75);
    max-width: 500px;
    margin: 0 auto 40px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter {
    background: var(--black);
    color: var(--white);
    padding: 56px 0;
}

.newsletter .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.newsletter h3 {
    font-size: 1.3rem;
    color: var(--white);
}

.newsletter p {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 6px;
}

.newsletter-form {
    display: flex;
    gap: 0;
}

.newsletter-form input {
    padding: 12px 20px;
    border: 1px solid var(--gray-700);
    background: transparent;
    color: var(--white);
    font-size: 0.85rem;
    font-family: var(--font-body);
    min-width: 280px;
}

.newsletter-form input::placeholder {
    color: var(--gray-500);
}

.newsletter-form button {
    padding: 12px 28px;
    background: var(--white);
    color: var(--black);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.newsletter-form button:hover {
    background: var(--gold);
    color: var(--white);
}

/* =============================================
   BOOKING
   ============================================= */
.booking {
    padding: 80px 0;
    text-align: center;
}

.booking iframe {
    width: 100%;
    max-width: 800px;
    height: 1200px;
    min-height: 800px;
    border: 1px solid var(--gray-200);
    margin-top: 32px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.5);
}

.footer h4 {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    stroke: rgba(255, 255, 255, 0.4);
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.5);
}

.footer-contact-item a:hover {
    color: var(--white);
}

.footer-bottom {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom span {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    color: rgba(255, 255, 255, 0.35);
    transition: color var(--transition);
}

.footer-socials a:hover {
    color: var(--white);
}

.footer-socials svg {
    width: 18px;
    height: 18px;
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-d1 {
    transition-delay: 0.1s;
}

.reveal-d2 {
    transition-delay: 0.2s;
}

.reveal-d3 {
    transition-delay: 0.3s;
}

/* =============================================
   PAGE HERO (Inner Pages)
   ============================================= */
.page-hero {
    position: relative;
    margin-top: 72px;
    padding: 80px 0;
    background: var(--navy);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    opacity: 0.95;
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 12px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-hero .label {
    color: var(--gold);
}

.breadcrumb {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: underline;
}

.breadcrumb a:hover {
    color: var(--white);
}

/* =============================================
   CONTENT SECTION (Inner Pages)
   ============================================= */
.content-section {
    padding: 80px 0;
}

.content-section.alt {
    background: var(--off-white);
}

.content-section h2 {
    margin-bottom: 20px;
}

.content-section p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 750px;
}

.content-section .text-center p {
    margin-left: auto;
    margin-right: auto;
}

/* ---- Treatment Grid ---- */
.treatment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.treatment-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all var(--transition);
}

.treatment-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.treatment-card-img {
    height: 350px;
    overflow: hidden;
}

.treatment-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.treatment-card:hover .treatment-card-img img {
    transform: scale(1.05);
}

.treatment-card-body {
    padding: 24px;
}

.treatment-card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.treatment-card-body p {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 16px;
}

.treatment-card-body .btn {
    width: 100%;
    text-align: center;
}

/* ---- Stats Row ---- */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    padding: 48px 0;
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--navy);
    font-weight: 700;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-top: 6px;
}

/* ---- Process Steps ---- */
.process-steps {
    margin-top: 40px;
}

.process-step {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid var(--gray-200);
}

.process-num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
}

.process-step h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.process-step p {
    font-size: 0.88rem;
    color: var(--gray-700);
    line-height: 1.7;
}

/* ---- FAQ Accordion ---- */
.faq {
    padding: 80px 0;
}

.faq-list {
    max-width: 750px;
    margin: 32px auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--gray-200);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--navy);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 0 20px;
    font-size: 0.92rem;
    color: var(--gray-700);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* ---- Contact Page ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 40px;
}

.contact-form label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 6px;
}

.contact-form input:not([type="checkbox"]),
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--gray-200);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text);
    margin-bottom: 20px;
    transition: border-color var(--transition);
    background: var(--white);
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
}

.contact-form input[type="checkbox"] {
    width: auto;
    -webkit-appearance: checkbox;
    appearance: auto;
    margin-bottom: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--navy);
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

.contact-form .btn {
    width: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-200);
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: var(--navy-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--navy);
}

.contact-info-item h4 {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.contact-info-item p,
.contact-info-item a {
    font-size: 0.9rem;
    color: var(--gray-700);
}

.contact-info-item a:hover {
    color: var(--navy);
}

.map-embed {
    margin-top: 32px;
    border: 1px solid var(--gray-200);
}

.map-embed iframe {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
}

/* ---- Team Detail ---- */
.team-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.team-detail-card {
    border: 1px solid var(--gray-200);
    overflow: hidden;
    background: var(--white);
}

.team-detail-card-img {
    height: 280px;
    overflow: hidden;
}

.team-detail-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-detail-card-body {
    padding: 24px;
}

.team-detail-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.team-detail-card-body .role {
    font-size: 0.78rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-detail-card-body p {
    font-size: 0.88rem;
    color: var(--gray-700);
    line-height: 1.7;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .header-links {
        display: none;
    }

    .header-phone {
        display: none;
    }

    .header-toggle {
        display: flex;
    }

    .service-panel {
        grid-template-columns: 1fr;
    }

    .service-panel-img {
        max-height: 300px;
    }

    .promos {
        grid-template-columns: 1fr;
    }

    .split {
        grid-template-columns: 1fr;
    }

    .split-body {
        padding: 48px 32px;
    }

    .feature {
        grid-template-columns: 1fr;
    }

    .feature.reverse {
        direction: ltr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero {
        height: 75vh;
        min-height: 450px;
    }

    .hero-content {
        padding: 24px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .service-panel-body {
        padding: 32px 24px;
    }

    .newsletter .container {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        min-width: 0;
        width: 100%;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .page-hero {
        padding: 56px 0;
    }

    .treatment-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        flex-direction: column;
        gap: 12px;
    }
}

/* =============================================
   VAGARO WIDGET OVERRIDES
   ============================================= */
/* Force the widget title to match site aesthetic */
#frameTitle.embedded-widget-title {
    font-family: 'Playfair Display', serif !important;
    color: var(--navy) !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 24px !important;
    padding: 0 !important;
    background: transparent !important;
    line-height: 1.2 !important;
}

/* Hide the 'Powered by Vagaro' links if desired, or style them subtle */
.vagaro a {
    color: var(--gray-400) !important;
    font-size: 0.75rem !important;
    opacity: 0.7;
}

/* Ensure the widget container is centered */
.vagaro {
    margin-top: 24px !important;
}

/* Prevent Vagaro iframe from stealing focus/scroll on load */
.booking iframe,
.vagaro iframe {
    pointer-events: auto;
}

/* Keep booking section from causing layout shift during widget load */
.booking .vagaro {
    min-height: 400px;
    contain: layout;
}

/* =============================================
   GHL EMBED CONTAINER (Polished Frame)
   ============================================= */
.ghl-embed-container {
    width: 100%;
    min-height: 850px;
    /* Accommodate typical form length */
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    /* Soft, premium shadow */
    padding: 0;
    border: 1px solid var(--gray-200);
    overflow: hidden;
    margin-bottom: 3rem;
    position: relative;
}

@media (max-width: 768px) {
    .ghl-embed-container {
        min-height: 1100px;
        /* Taller on mobile due to stacking */
        box-shadow: none;
        /* Flatter look on mobile */
        border: none;
    }
}

/* Request: Increase footer logo size to match header */
.footer-logo img {
    height: 72px !important;
    width: auto;
}