﻿/*
Theme Name: Trigger Point Fascia Wellness
Theme URI: https://triggerpointfascia.co.ke
Description: Premium sports therapy and medical massage website theme
Author: Trigger Point Fascia Wellness
Version: 2.0
Text Domain: triggerpoint
*/

/* ===== DESIGN TOKENS ===== */
:root {
    /* Light, warm, premium palette */
    --bg-primary: #faf8f5;
    --bg-secondary: #f3efe9;
    --bg-cream: #f9f6f1;
    --bg-white: #ffffff;
    --bg-warm: #f5f0e8;

    /* Accent colors */
    --gold: #b8924a;
    --gold-light: #d4b876;
    --gold-dark: #96742e;
    --gold-glow: rgba(184,146,74,0.25);
    --teal: #2a9d8f;
    --teal-light: #52b788;
    --rose: #c97b84;

    /* Text */
    --text-dark: #1a1a2e;
    --text-body: #4a4a5a;
    --text-muted: #8a8a9a;
    --text-light: #b0b0c0;
    --white: #ffffff;

    /* Borders & Glass */
    --border-subtle: rgba(0,0,0,0.06);
    --border-gold: rgba(184,146,74,0.25);
    --glass-bg: rgba(255,255,255,0.7);
    --glass-bg-dark: rgba(26,26,46,0.85);
    --glass-border: rgba(255,255,255,0.5);

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #b8924a, #d4b876, #b8924a);
    --gradient-warm: linear-gradient(180deg, #faf8f5 0%, #f3efe9 50%, #f5f0e8 100%);
    --gradient-hero: linear-gradient(135deg, rgba(26,26,46,0.65), rgba(44,62,80,0.55));
    --gradient-section: linear-gradient(180deg, #f9f6f1 0%, #faf8f5 100%);
    --gradient-cta: linear-gradient(135deg, #1a1a2e, #2c3e50);

    /* Shadows */
    --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
    --shadow-gold: 0 8px 32px rgba(184,146,74,0.2);
    --shadow-card: 0 4px 20px rgba(0,0,0,0.05);
    --shadow-hover: 0 12px 40px rgba(0,0,0,0.12);

    /* Radius */
    --radius: 16px;
    --radius-sm: 10px;
    --radius-lg: 24px;
    --radius-full: 50px;

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);

    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
}

a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-dark); }

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.2;
    font-weight: 600;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }

p { margin-bottom: 1rem; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(184,146,74,0.35);
    color: var(--white);
}

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

.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

/* White variant for dark backgrounds */
.btn-white {
    background: var(--white);
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
}
.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    color: var(--text-dark);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
    background: var(--white);
    color: var(--text-dark);
    transform: translateY(-3px);
}

/* ===== HEADER / NAVIGATION ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-sm);
}

.site-header.scrolled .logo-text,
.site-header.scrolled .main-nav a {
    color: var(--text-dark);
}

.site-header.scrolled .menu-toggle span {
    background: var(--text-dark);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

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

.logo-icon {
    width: 42px;
    height: 42px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
    font-weight: 700;
    box-shadow: var(--shadow-gold);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.logo-text span { color: var(--gold-light); }

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}

.main-nav a {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.main-nav a:hover { color: var(--gold-light); }
.main-nav a:hover::after { width: 100%; }

.nav-cta {
    background: var(--gradient-gold) !important;
    color: var(--white) !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-full) !important;
    letter-spacing: 1px !important;
    box-shadow: var(--shadow-gold) !important;
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(184,146,74,0.3) !important; }

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    display: block;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
    animation: fadeUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(8px);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 28px;
}

.hero h1 {
    margin-bottom: 24px;
    color: var(--white);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    text-shadow: 0 2px 40px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll span {
    display: block;
    width: 28px;
    height: 44px;
    border-radius: 14px;
    border: 2px solid rgba(255,255,255,0.4);
    position: relative;
}

.hero-scroll span::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--white);
    border-radius: 2px;
    animation: scrollDot 2s infinite;
}

/* ===== SECTION STYLES ===== */
.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.section-header h2 { margin-bottom: 20px; }

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ===== SERVICES GRID ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-hover);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(184,146,74,0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: rgba(184,146,74,0.18);
    transform: scale(1.1);
}

.service-card h3 { margin-bottom: 16px; font-size: 1.3rem; }

.service-price {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 16px;
    padding: 7px 12px;
    border-radius: var(--radius-sm);
    background: rgba(184, 146, 74, 0.12);
    color: var(--gold-dark);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-link::after {
    content: 'â†’';
    transition: var(--transition);
}

.service-card:hover .service-link::after { transform: translateX(4px); }

/* ===== IMAGE SHOWCASE / GALLERY ===== */
.image-showcase {
    padding: 80px 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 280px 280px;
    gap: 16px;
}

.showcase-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-item:hover img {
    transform: scale(1.08);
}

.showcase-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(26,26,46,0.4) 100%);
    opacity: 0;
    transition: var(--transition);
}

.showcase-item:hover::after { opacity: 1; }

.showcase-item.span-2 { grid-column: span 2; }
.showcase-item.span-row { grid-row: span 2; }

.showcase-caption {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 2;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(8px);
    transition: var(--transition);
}

.showcase-item:hover .showcase-caption {
    opacity: 1;
    transform: translateY(0);
}

/* ===== ABOUT SECTION ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(184,146,74,0.2);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.about-experience {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    padding: 20px 28px;
    box-shadow: var(--shadow-md);
}

.about-experience .number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold);
    font-weight: 700;
    line-height: 1;
}

.about-experience .label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 { margin-bottom: 24px; }

.about-content > p {
    color: var(--text-body);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.about-features {
    list-style: none;
    display: grid;
    gap: 16px;
    margin-bottom: 36px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-body);
    font-size: 0.95rem;
}

.about-features li::before {
    content: 'âœ¦';
    color: var(--gold);
    font-size: 0.8rem;
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--gradient-cta);
    padding: 72px 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(184,146,74,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(184,146,74,0.08) 0%, transparent 50%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item .stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gold-light);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item .stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: var(--bg-secondary);
}

.testimonials-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    text-align: center;
    padding: 0 40px;
    display: none;
}

.testimonial-slide.active { display: block; animation: fadeIn 0.6s ease-out; }

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 32px;
    font-style: italic;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 5rem;
    color: var(--gold);
    opacity: 0.3;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
}

.testimonial-author {
    color: var(--gold);
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-role {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 4px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(184,146,74,0.2);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* ===== PROCESS / HOW IT WORKS ===== */
.process-section { background: var(--bg-primary); }

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 48px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    opacity: 0.3;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 96px;
    height: 96px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.process-step:hover .process-number {
    background: var(--gold);
    color: var(--white);
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.process-step h4 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: var(--gradient-cta);
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(184,146,74,0.15) 0%, transparent 70%);
}

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}

.cta-inner h2 { margin-bottom: 20px; color: var(--white); }
.cta-inner p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 36px; }

/* ===== BOOKING FORM ===== */
.booking-section { background: var(--bg-secondary); }

.booking-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.booking-steps {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.4;
    transition: var(--transition);
}

.step-indicator.active { opacity: 1; }
.step-indicator.completed { opacity: 0.7; }

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gold);
    transition: var(--transition);
}

.step-indicator.active .step-number {
    background: var(--gold);
    color: var(--white);
}

.step-indicator.completed .step-number {
    background: var(--gold);
    color: var(--white);
}

.step-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-step { display: none; }
.form-step.active { display: block; animation: fadeIn 0.4s ease-out; }

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 16px rgba(184,146,74,0.12);
    background: var(--bg-white);
}

.form-group select option {
    background: var(--bg-white);
    color: var(--text-dark);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 32px;
}

/* Time Slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.time-slot {
    padding: 12px;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-body);
    font-size: 0.9rem;
}

.time-slot:hover,
.time-slot.selected {
    border-color: var(--gold);
    background: rgba(184,146,74,0.08);
    color: var(--gold);
}

/* Service Selection */
.service-select-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.service-option {
    padding: 20px;
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.service-option:hover,
.service-option.selected {
    border-color: var(--gold);
    background: rgba(184,146,74,0.06);
}

.service-option h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.service-option span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Confirmation */
.booking-confirmation {
    text-align: center;
    padding: 40px 0;
}

.booking-confirmation .check-icon {
    width: 80px;
    height: 80px;
    background: rgba(184,146,74,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.5rem;
    color: var(--gold);
}

.booking-summary {
    background: var(--bg-primary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    padding: 24px;
    margin: 24px 0;
    text-align: left;
}

.booking-summary .summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.95rem;
}

.booking-summary .summary-row:last-child { border-bottom: none; }
.booking-summary .summary-label { color: var(--text-muted); }
.booking-summary .summary-value { color: var(--text-dark); font-weight: 500; }

/* ===== PAGE HEADERS ===== */
.page-hero {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    background: var(--gradient-cta);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(184,146,74,0.12) 0%, transparent 60%);
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, var(--bg-primary));
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero .section-label { color: var(--gold-light); }
.page-hero h1 { margin-bottom: 16px; color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ===== SERVICES PAGE ===== */
.services-detail-grid {
    display: grid;
    gap: 64px;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--bg-white);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 48px;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.service-detail-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-hover);
}

.service-detail-card:nth-child(even) { direction: rtl; }
.service-detail-card:nth-child(even) > * { direction: ltr; }

.service-detail-image {
    border-radius: var(--radius);
    overflow: hidden;
    height: 350px;
    box-shadow: var(--shadow-md);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-detail-card:hover .service-detail-image img { transform: scale(1.05); }

.service-detail-content h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.service-detail-content p {
    color: var(--text-body);
    margin-bottom: 24px;
    line-height: 1.8;
}

.service-benefits { list-style: none; margin-bottom: 28px; }

.service-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-body);
    font-size: 0.9rem;
}

.service-benefits li::before {
    content: 'âœ“';
    color: var(--gold);
    font-weight: 700;
    font-size: 0.85rem;
}

/* ===== BLOG ===== */
.blog-index-section {
    background: var(--bg-primary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.blog-card {
    overflow: hidden;
    background: var(--bg-white);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-hover);
}

.blog-card-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg-secondary);
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 26px;
}

.blog-meta,
.single-post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
    color: var(--gold-dark);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.single-post-meta {
    justify-content: center;
    color: rgba(255, 255, 255, 0.78);
}

.blog-card h2 {
    margin-bottom: 12px;
    font-size: 1.35rem;
}

.blog-card h2 a {
    color: inherit;
}

.blog-card p {
    margin-bottom: 22px;
    color: var(--text-muted);
    line-height: 1.7;
}

.blog-pagination {
    margin-top: 44px;
}

.blog-pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.blog-pagination a,
.blog-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    background: var(--bg-white);
    color: var(--text-body);
    font-weight: 700;
}

.blog-pagination .current {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}

.blog-empty {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.single-post-section {
    background: var(--bg-primary);
}

.single-post-image {
    max-width: 980px;
    margin: 0 auto 42px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.single-post-image img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

.post-content {
    max-width: 820px;
    margin: 0 auto;
    color: var(--text-body);
    font-size: 1.04rem;
    line-height: 1.85;
}

.post-content > * + * {
    margin-top: 1.1em;
}

.post-content h2,
.post-content h3 {
    margin-top: 1.7em;
}

.post-content ul,
.post-content ol {
    padding-left: 1.35rem;
}

.post-footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    max-width: 820px;
    margin: 44px auto 0;
    padding-top: 28px;
    border-top: 1px solid var(--border-subtle);
}

.post-navigation .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.post-navigation a {
    color: var(--teal);
    font-weight: 700;
}

.post-navigation span {
    display: block;
    color: var(--text-muted);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ===== ABOUT PAGE ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-card {
    background: var(--bg-white);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.team-card-image {
    height: 300px;
    overflow: hidden;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-card-image img { transform: scale(1.05); }

.team-card-info {
    padding: 24px;
    text-align: center;
}

.team-card-info h3 { font-size: 1.2rem; margin-bottom: 4px; }
.team-card-info span { color: var(--gold); font-size: 0.85rem; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.value-card {
    text-align: center;
    padding: 40px 28px;
    background: var(--bg-white);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(184,146,74,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.value-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.value-card p { color: var(--text-muted); font-size: 0.9rem; }

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

.contact-info-cards {
    display: grid;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--bg-white);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.contact-card:hover { border-color: var(--border-gold); box-shadow: var(--shadow-md); }

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(184,146,74,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-card-icon svg {
    width: 22px;
    height: 22px;
}

.contact-card h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 0; }

.contact-form {
    background: var(--bg-white);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form h3 { margin-bottom: 32px; }

.hours-grid {
    display: grid;
    gap: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.9rem;
}

.hours-row .day { color: var(--text-body); }
.hours-row .time { color: var(--gold); font-weight: 500; }

/* ===== BENEFITS BANNER / TRUST STRIP ===== */
.trust-strip {
    background: var(--bg-white);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 48px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    width: 56px;
    height: 56px;
    background: rgba(184,146,74,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: var(--transition);
}

.trust-item:hover .trust-icon {
    background: var(--gold);
    transform: scale(1.1);
}

.trust-item h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
}

.trust-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--gradient-cta);
    color: rgba(255,255,255,0.7);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding: 80px 0 48px;
}

.footer-brand .logo-text { font-size: 1.4rem; margin-bottom: 16px; color: var(--white); }
.footer-brand .logo-text span { color: var(--gold-light); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.7; }

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    display: block;
    fill: currentColor;
}

.footer-social a[aria-label="Instagram"] svg {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 900;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 20px 0 16px;
    border-radius: 999px;
    background: #25d366;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.92rem;
    box-shadow: 0 16px 32px rgba(18, 34, 29, 0.24);
    transition: var(--transition);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    fill: currentColor;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    background: #1ebe5d;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 20px 38px rgba(18, 34, 29, 0.3);
}

.footer-column h4 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 24px;
}

.footer-column ul { list-style: none; }

.footer-column li { margin-bottom: 12px; }

.footer-column a {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-column a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-newsletter p { color: rgba(255,255,255,0.55); font-size: 0.9rem; margin-bottom: 16px; }

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255,255,255,0.12);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover { background: var(--gold-light); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes scrollDot {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 24px; }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(184,146,74,0.3); }
    50% { box-shadow: 0 0 0 12px rgba(184,146,74,0); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

/* ===== MOBILE RESPONSIVE ===== */

/* Large tablets / small laptops */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
    .about-grid { gap: 48px; }
    .service-detail-card { grid-template-columns: 1fr; padding: 32px; }
    .service-detail-card:nth-child(even) { direction: ltr; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .showcase-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 220px 220px; }
    .showcase-item.span-2 { grid-column: span 1; }
    .showcase-item.span-row { grid-row: span 1; }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
    .process-grid::before { display: none; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablets */
@media (max-width: 768px) {
    .menu-toggle { display: flex; }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: rgba(26,26,46,0.98);
        backdrop-filter: blur(24px);
        padding: 100px 40px 40px;
        transition: var(--transition);
        border-left: 1px solid rgba(255,255,255,0.08);
    }

    .main-nav.active { right: 0; }

    .main-nav ul {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .main-nav a {
        font-size: 1.1rem;
        letter-spacing: 1px;
        color: rgba(255,255,255,0.9);
    }

    .nav-cta {
        margin-top: 16px;
    }

    .hero { min-height: 100svh; }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
    .hero-buttons { flex-direction: column; align-items: center; }

    .section { padding: 80px 0; }
    .section-header { margin-bottom: 48px; }

    .services-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .contact-grid { grid-template-columns: 1fr; }

    .service-detail-card {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 24px;
    }

    .booking-form-wrapper { padding: 32px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .time-slots { grid-template-columns: repeat(3, 1fr); }
    .service-select-grid { grid-template-columns: 1fr; }
    .booking-steps { gap: 16px; }
    .step-label { display: none; }

    .footer-main { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    .team-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }

    .showcase-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .showcase-item { height: 200px; }
    .blog-grid { grid-template-columns: 1fr; }
    .post-footer-nav { align-items: flex-start; flex-direction: column; }

    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: 1fr 1fr; gap: 24px; }

    .testimonial-slide { padding: 0 16px; }
    .testimonial-quote { font-size: 1.2rem; }
}

/* Small phones */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .header-inner { padding: 0 16px; }
    .logo-text { font-size: 1rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
    .stat-item .stat-number { font-size: 2.2rem; }
    .time-slots { grid-template-columns: repeat(2, 1fr); }
    .booking-form-wrapper { padding: 24px 16px; }
    .showcase-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .showcase-item { height: 220px; }
    .process-grid { grid-template-columns: 1fr; }
    .trust-grid { grid-template-columns: 1fr; }
    .hero-badge { font-size: 0.7rem; padding: 8px 16px; letter-spacing: 1px; }
    .section { padding: 60px 0; }
    .page-hero { padding: 140px 0 80px; }
    .about-image img { height: 350px; }
    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 56px;
        min-height: 56px;
        padding: 0;
        justify-content: center;
    }
    .whatsapp-float span { display: none; }
}

/* Very small phones */
@media (max-width: 360px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.6rem; }
    .hero h1 { font-size: 1.8rem; }
    .btn { padding: 14px 28px; font-size: 0.85rem; }
    .service-card { padding: 28px 20px; }
}

/* ===== OVERLAY ===== */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ===== MESSAGE NOTIFICATIONS ===== */
.form-message {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 0.9rem;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(46, 204, 113, 0.08);
    border: 1px solid rgba(46, 204, 113, 0.2);
    color: #27ae60;
}

.form-message.error {
    display: block;
    background: rgba(231, 76, 60, 0.08);
    border: 1px solid rgba(231, 76, 60, 0.2);
    color: #e74c3c;
}

/* ===== MAP ===== */
.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 32px;
    border: 1px solid var(--border-subtle);
    height: 300px;
    box-shadow: var(--shadow-card);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== DECORATIVE ELEMENTS ===== */
.section-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(184,146,74,0.06) 1px, transparent 0);
    background-size: 48px 48px;
    pointer-events: none;
}

/* Gold divider */
.gold-divider {
    width: 60px;
    height: 3px;
    background: var(--gradient-gold);
    margin: 0 auto 24px;
    border-radius: 2px;
}

/* Floating badge */
.floating-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: var(--gold);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-gold);
    animation: float 3s ease-in-out infinite;
}

/* ===== PRINT ===== */
@media print {
    .site-header, .hero-scroll, .menu-toggle, .nav-overlay { display: none; }
    body { color: #000; background: #fff; }
    .section { padding: 40px 0; }
}

/* ===== 2026 DESIGN REFRESH ===== */
:root {
    --bg-primary: #f6f9f5;
    --bg-secondary: #e8f1ed;
    --bg-cream: #fff7ec;
    --bg-white: #ffffff;
    --bg-warm: #eef7f2;
    --gold: #b47b2f;
    --gold-light: #d5a85d;
    --gold-dark: #7f541d;
    --gold-glow: rgba(180, 123, 47, 0.22);
    --teal: #1f7a6b;
    --teal-light: #61b59a;
    --rose: #b96f6e;
    --text-dark: #17231f;
    --text-body: #43504b;
    --text-muted: #6f7d77;
    --border-subtle: rgba(23, 35, 31, 0.1);
    --border-gold: rgba(180, 123, 47, 0.28);
    --glass-bg: rgba(255, 255, 255, 0.78);
    --glass-bg-dark: rgba(18, 34, 29, 0.9);
    --gradient-gold: linear-gradient(135deg, #a76520, #d5a85d);
    --gradient-warm: linear-gradient(180deg, #f6f9f5 0%, #e8f1ed 52%, #fff7ec 100%);
    --gradient-hero: linear-gradient(90deg, rgba(12, 25, 22, 0.86) 0%, rgba(23, 63, 53, 0.66) 54%, rgba(180, 123, 47, 0.16) 100%);
    --gradient-cta: linear-gradient(135deg, #173f35, #253128);
    --shadow-sm: 0 2px 12px rgba(23, 35, 31, 0.07);
    --shadow-md: 0 10px 28px rgba(23, 35, 31, 0.1);
    --shadow-lg: 0 20px 58px rgba(23, 35, 31, 0.14);
    --shadow-card: 0 8px 24px rgba(23, 35, 31, 0.08);
    --shadow-hover: 0 18px 44px rgba(23, 35, 31, 0.14);
    --radius: 8px;
    --radius-sm: 6px;
    --radius-lg: 10px;
    --radius-full: 999px;
}

body {
    background:
        linear-gradient(180deg, rgba(232, 241, 237, 0.64), rgba(246, 249, 245, 0.88) 360px),
        var(--bg-primary);
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 2000;
    transform: translateY(-140%);
    background: var(--text-dark);
    color: var(--white);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
}

.skip-link:focus {
    transform: translateY(0);
    color: var(--white);
}

.site-header {
    padding: 16px 0;
}

.site-header.scrolled {
    background: rgba(246, 249, 245, 0.94);
}

.header-inner {
    max-width: 1280px;
}

.logo-icon,
.trust-icon,
.service-icon,
.value-icon,
.contact-card-icon {
    font-family: var(--font-body);
    letter-spacing: 0.08em;
}

.logo-icon {
    border-radius: var(--radius-sm);
}

.btn {
    border-radius: var(--radius);
    letter-spacing: 0.02em;
    text-transform: none;
}

.btn-primary {
    background: var(--gradient-gold);
}

.btn-outline,
.btn-outline-white {
    border-width: 1px;
}

.hero {
    min-height: 92vh;
    justify-content: flex-start;
    padding: 140px 0 96px;
}

.hero-bg {
    background: #12221d url("images/hero-bg.webp") center / cover no-repeat;
}

.hero-bg img,
.hero-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.92) contrast(1.04);
}

.hero-bg video {
    display: block;
}

.hero-bg::after {
    background:
        var(--gradient-hero),
        linear-gradient(180deg, rgba(18, 34, 29, 0.18), rgba(18, 34, 29, 0.78));
}

.hero-content {
    text-align: left;
    max-width: 720px;
    margin-left: max(24px, calc((100vw - 1280px) / 2 + 24px));
    padding: 0;
}

.hero-badge {
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.14);
    letter-spacing: 0.12em;
}

.hero h1 {
    max-width: 680px;
    font-size: clamp(3rem, 7vw, 6rem);
}

.hero p {
    max-width: 620px;
}

.hero-buttons {
    justify-content: flex-start;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero-highlights span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 46px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(8px);
}

.hero-highlights strong {
    color: var(--gold-light);
    font-family: var(--font-heading);
    font-size: 1.25rem;
}

.trust-strip {
    background: var(--bg-white);
}

.trust-item {
    align-items: flex-start;
    text-align: left;
    padding: 20px;
    border-left: 1px solid var(--border-subtle);
}

.trust-icon {
    border-radius: var(--radius-sm);
    color: var(--teal);
    font-size: 0.84rem;
    font-weight: 700;
}

.trust-item:hover .trust-icon {
    background: rgba(31, 122, 107, 0.12);
    color: var(--teal);
    transform: translateY(-2px);
}

.service-card--media {
    padding: 0;
}

.service-card--media::before {
    display: none;
}

.service-card-visual {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    color: var(--white);
}

.service-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card--media:hover .service-card-visual img {
    transform: scale(1.06);
}

.service-card-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(23, 35, 31, 0.05), rgba(23, 35, 31, 0.4));
}

.service-kicker {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 1;
    padding: 7px 10px;
    border-radius: var(--radius-sm);
    background: rgba(23, 35, 31, 0.74);
    color: var(--white);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.service-card-body {
    padding: 26px;
}

.service-card-body h3 {
    margin-bottom: 12px;
}

.service-link::after {
    content: "\2192";
}

.treatment-focus {
    background: linear-gradient(135deg, var(--bg-warm), var(--bg-cream));
    overflow: hidden;
}

.focus-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: 72px;
    align-items: center;
}

.focus-content p {
    max-width: 620px;
    font-size: 1.05rem;
}

.focus-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.focus-points span {
    padding: 9px 12px;
    border: 1px solid rgba(31, 122, 107, 0.18);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.68);
    color: var(--teal);
    font-size: 0.88rem;
    font-weight: 700;
}

.focus-gallery {
    position: relative;
    min-height: 520px;
}

.focus-image {
    position: absolute;
    width: 72%;
    height: 78%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.focus-image-large {
    top: 0;
    left: 0;
}

.focus-image-small {
    right: 0;
    bottom: 0;
    width: 45%;
    height: 46%;
    border: 8px solid var(--bg-primary);
}

.image-showcase {
    background: var(--text-dark);
}

.showcase-item {
    border-radius: var(--radius);
}

.showcase-caption {
    opacity: 1;
    transform: none;
    display: inline-flex;
    width: fit-content;
    max-width: calc(100% - 32px);
    padding: 7px 10px;
    border-radius: var(--radius-sm);
    background: rgba(23, 35, 31, 0.76);
}

.showcase-item::after {
    opacity: 1;
}

.about-image,
.about-image img,
.service-detail-card,
.service-detail-image,
.team-card,
.value-card,
.contact-form,
.booking-form-wrapper {
    border-radius: var(--radius-lg);
}

.about-features li::before,
.service-benefits li::before {
    content: "+";
    color: var(--teal);
}

.page-hero {
    background-image:
        linear-gradient(135deg, rgba(18, 34, 29, 0.88), rgba(23, 63, 53, 0.68)),
        url("images/hero-bg.webp");
    background-size: cover;
    background-position: center;
}

body.page-template-page-services .page-hero {
    background-image:
        linear-gradient(135deg, rgba(18, 34, 29, 0.86), rgba(31, 122, 107, 0.62)),
        url("images/sport%20massage.webp");
}

body.page-template-page-about .page-hero {
    background-image:
        linear-gradient(135deg, rgba(18, 34, 29, 0.84), rgba(180, 123, 47, 0.38)),
        url("images/assisted%20mobility%20therapy.webp");
}

body.page-template-page-booking .page-hero {
    background-image:
        linear-gradient(135deg, rgba(18, 34, 29, 0.84), rgba(31, 122, 107, 0.55)),
        url("images/stretch3.webp");
}

body.page-template-page-contact .page-hero {
    background-image:
        linear-gradient(135deg, rgba(18, 34, 29, 0.86), rgba(185, 111, 110, 0.38)),
        url("images/about-preview.webp");
}

.page-hero::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(180, 123, 47, 0.14));
}

.service-detail-card {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 249, 245, 0.96));
}

.service-icon,
.value-icon,
.contact-card-icon {
    border-radius: var(--radius-sm);
    background: rgba(31, 122, 107, 0.1);
    color: var(--teal);
    font-size: 0.86rem;
    font-weight: 800;
}

.service-detail-content .service-icon,
.service-card .service-icon {
    margin-bottom: 18px;
}

.value-card,
.contact-card,
.service-card {
    border-color: rgba(23, 35, 31, 0.09);
}

.contact-visual {
    position: relative;
    margin: 0 0 32px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.contact-visual img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.contact-visual figcaption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    background: rgba(23, 35, 31, 0.78);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.service-select-grid {
    grid-template-columns: repeat(3, 1fr);
}

.service-option {
    padding: 0;
    overflow: hidden;
    text-align: left;
}

.service-option img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.service-option h4,
.service-option span {
    display: block;
    padding-left: 16px;
    padding-right: 16px;
}

.service-option h4 {
    margin-top: 16px;
}

.service-option span {
    padding-bottom: 18px;
}

.service-option.selected {
    box-shadow: inset 0 0 0 2px var(--gold), var(--shadow-md);
}

.booking-confirmation .check-icon {
    border-radius: var(--radius-sm);
    color: var(--teal);
    font-size: 1.15rem;
    font-weight: 800;
}

input,
select,
textarea,
.time-slot {
    border-radius: var(--radius-sm);
}

@media (max-width: 1024px) {
    .hero-content {
        margin-right: 24px;
    }

    .focus-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .focus-gallery {
        min-height: 440px;
    }

    .service-select-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-header.scrolled .main-nav a {
        color: rgba(255, 255, 255, 0.9);
    }

    .site-header.scrolled .main-nav a:hover {
        color: var(--gold-light);
    }

    .hero {
        min-height: 100svh;
        padding: 128px 0 76px;
    }

    .hero-content {
        margin: 0 20px;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero-highlights {
        flex-direction: column;
        align-items: stretch;
    }

    .trust-item {
        border-left: 0;
        border-top: 1px solid var(--border-subtle);
    }

    .focus-gallery {
        min-height: 360px;
    }

    .focus-image {
        width: 78%;
    }

    .focus-image-small {
        width: 52%;
    }
}

@media (max-width: 560px) {
    .hero h1 {
        font-size: 2.35rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .form-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .service-select-grid {
        grid-template-columns: 1fr;
    }

    .focus-gallery {
        min-height: auto;
        display: grid;
        gap: 14px;
    }

    .focus-image,
    .focus-image-small {
        position: static;
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
        border: 0;
    }

    .contact-visual figcaption {
        position: static;
        border-radius: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg video {
        display: none;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== MOBILE APP LEVEL RESPONSIVENESS ===== */
h1 { font-size: 4.5rem; }
h2 { font-size: 3.2rem; }
h3 { font-size: 1.8rem; }
.hero h1 { font-size: 5.5rem; }

html,
body {
    width: 100%;
    max-width: 100%;
}

body {
    overflow-x: clip;
}

.site-main,
.site-footer {
    overflow-x: clip;
}

img,
video,
iframe,
svg {
    max-width: 100%;
}

input,
select,
textarea,
button {
    max-width: 100%;
}

.container {
    width: 100%;
}

.site-header,
.site-header.scrolled {
    min-height: 68px;
}

.hero-content,
.section-header,
.cta-inner,
.page-hero p,
.focus-content p {
    width: min(100%, 720px);
}

.service-card,
.service-detail-card,
.booking-form-wrapper,
.contact-form,
.contact-card,
.value-card,
.team-card,
.testimonial-slide,
.process-step,
.trust-item {
    min-width: 0;
}

.service-card-body,
.service-detail-content,
.about-content,
.contact-card > div,
.footer-column,
.footer-brand {
    min-width: 0;
}

.service-card-body h3,
.service-detail-content h3,
.value-card h3,
.contact-card h4,
.footer-column h4 {
    overflow-wrap: anywhere;
}

.service-detail-card {
    scroll-margin-top: 92px;
}

@media (max-width: 1180px) {
    h1 { font-size: 4rem; }
    h2 { font-size: 2.8rem; }
    h3 { font-size: 1.65rem; }
    .hero h1 { font-size: 4.6rem; }

    .header-inner {
        padding-inline: 24px;
    }

    .main-nav ul {
        gap: 24px;
    }

    .services-grid,
    .values-grid,
    .team-grid {
        gap: 24px;
    }
}

@media (max-width: 900px) {
    h1 { font-size: 3.35rem; }
    h2 { font-size: 2.35rem; }
    h3 { font-size: 1.5rem; }
    .hero h1 { font-size: 3.45rem; }

    .section {
        padding-block: 72px;
    }

    .page-hero {
        padding: 132px 0 72px;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 68px;
    }

    .hero-content {
        margin-inline: 24px;
        padding-inline: 0;
    }

    .hero p,
    .section-header p,
    .page-hero p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .service-detail-card,
    .about-grid,
    .focus-grid,
    .contact-grid {
        gap: 32px;
    }

    .service-detail-image,
    .team-card-image {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .about-image img {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .footer-main {
        padding-block: 56px 36px;
    }
}

@media (max-width: 768px) {
    .site-header {
        padding: 10px 0;
    }

    .header-inner {
        padding-inline: 16px;
    }

    .site-logo {
        min-width: 0;
        gap: 10px;
    }

    .logo-icon {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        font-size: 1rem;
    }

    .logo-text {
        font-size: 1.05rem;
        line-height: 1.05;
        white-space: normal;
    }

    .menu-toggle {
        flex: 0 0 auto;
    }

    .main-nav {
        width: min(88vw, 360px);
        padding: 92px 24px 32px;
        overflow-y: auto;
        visibility: hidden;
        pointer-events: none;
    }

    .main-nav.active {
        visibility: visible;
        pointer-events: auto;
    }

    .main-nav ul {
        width: 100%;
    }

    .main-nav li,
    .main-nav a {
        width: 100%;
    }

    .nav-cta {
        display: inline-flex;
        justify-content: center;
        text-align: center;
    }

    .hero-bg::after {
        background: linear-gradient(180deg, rgba(12, 25, 22, 0.78), rgba(12, 25, 22, 0.86));
    }

    .hero-badge {
        max-width: 100%;
        white-space: normal;
        line-height: 1.5;
    }

    .hero-buttons,
    .form-buttons {
        width: 100%;
    }

    .hero-buttons .btn,
    .form-buttons .btn {
        min-height: 48px;
    }

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

    .section-label {
        max-width: 100%;
        gap: 8px;
        letter-spacing: 0.12em;
        line-height: 1.4;
    }

    .section-label::before,
    .section-label::after {
        width: 18px;
        flex: 0 0 18px;
    }

    .services-grid,
    .process-grid,
    .stats-grid,
    .trust-grid,
    .values-grid,
    .team-grid,
    .showcase-grid,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .showcase-grid {
        gap: 12px;
    }

    .showcase-item {
        height: auto;
        aspect-ratio: 4 / 3;
    }

    .service-card-visual,
    .service-option img {
        aspect-ratio: 16 / 11;
    }

    .service-detail-card {
        padding: 20px;
    }

    .service-detail-content p,
    .service-benefits li,
    .about-content > p,
    .about-features li {
        font-size: 0.95rem;
    }

    .process-number {
        width: 72px;
        height: 72px;
        font-size: 1.6rem;
    }

    .stat-item .stat-number {
        font-size: 2.45rem;
    }

    .testimonial-slide {
        padding-inline: 0;
    }

    .testimonial-quote {
        font-size: 1.12rem;
    }

    .booking-steps {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 8px;
        align-items: start;
    }

    .step-indicator {
        min-width: 0;
    }

    .step-number {
        width: 38px;
        height: 38px;
        font-size: 0.9rem;
    }

    .step-label {
        display: block;
        max-width: 100%;
        font-size: 0.72rem;
        line-height: 1.25;
        overflow-wrap: anywhere;
    }

    .time-slots {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .time-slot {
        min-height: 44px;
    }

    .booking-summary .summary-row,
    .hours-row {
        gap: 16px;
    }

    .booking-summary .summary-value,
    .hours-row .time {
        text-align: right;
        overflow-wrap: anywhere;
    }

    .contact-card {
        align-items: flex-start;
    }

    .contact-form,
    .booking-form-wrapper {
        padding: 24px 18px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        min-height: 46px;
    }
}

@media (max-width: 560px) {
    h1 { font-size: 2.45rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.35rem; }
    .hero h1 { font-size: 2.55rem; }

    .container {
        padding-inline: 16px;
    }

    .section {
        padding-block: 56px;
    }

    .page-hero {
        padding: 116px 0 58px;
    }

    .hero {
        padding: 112px 0 56px;
    }

    .hero-content {
        margin-inline: 16px;
    }

    .hero-badge {
        font-size: 0.68rem;
        padding: 8px 10px;
        letter-spacing: 0.08em;
    }

    .hero p {
        font-size: 0.98rem;
    }

    .hero-highlights span {
        width: 100%;
        justify-content: space-between;
    }

    .btn {
        padding: 14px 18px;
        min-height: 48px;
        white-space: normal;
        text-align: center;
    }

    .service-card-body,
    .team-card-info {
        padding: 20px;
    }

    .about-experience {
        left: 14px;
        bottom: 14px;
        padding: 14px 18px;
    }

    .about-experience .number {
        font-size: 2rem;
    }

    .focus-points span {
        width: 100%;
    }

    .map-container,
    .contact-visual img {
        height: 240px;
    }

    .service-option h4,
    .service-option span {
        padding-inline: 14px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 1rem;
    }
}

@media (max-width: 390px) {
    h1 { font-size: 2.1rem; }
    h2 { font-size: 1.75rem; }
    .hero h1 { font-size: 2.15rem; }

    .container,
    .header-inner {
        padding-inline: 12px;
    }

    .logo-text {
        font-size: 0.95rem;
    }

    .main-nav {
        width: 92vw;
        padding-inline: 18px;
    }

    .section-label::before,
    .section-label::after {
        display: none;
    }

    .booking-steps {
        gap: 6px;
    }

    .step-number {
        width: 34px;
        height: 34px;
    }

    .step-label {
        font-size: 0.66rem;
    }

    .time-slots {
        grid-template-columns: 1fr;
    }

    .booking-summary .summary-row,
    .hours-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .booking-summary .summary-value,
    .hours-row .time {
        text-align: left;
    }
}

@media (max-width: 340px) {
    h1,
    .hero h1 {
        font-size: 1.92rem;
    }

    h2 {
        font-size: 1.58rem;
    }

    .logo-icon {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }

    .logo-text {
        font-size: 0.86rem;
    }

    .contact-form,
    .booking-form-wrapper,
    .service-detail-card,
    .service-card-body {
        padding-inline: 14px;
    }
}

@media (max-height: 540px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 96px 0 36px;
    }

    .hero-scroll {
        display: none;
    }

    .main-nav {
        padding-top: 74px;
    }

    .page-hero {
        padding: 96px 0 44px;
    }
}

