/*
Theme Name: Trigger Point Fascia Wellness
Theme URI: http://localhost/fasia
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-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: 16px;
}

.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;
}

/* ===== 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 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 a:hover {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.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); }
    .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; }

    .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; }
}

/* 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; }
}
