/* Recovery Kneads CSS - Enhanced 3-Color Design System with Smooth Animations */

/* Animation Variables */
:root {
    --animation-fast: 0.2s;
    --animation-normal: 0.3s;
    --animation-slow: 0.5s;
    --animation-extra-slow: 0.8s;
    --easing-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --easing-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --easing-elastic: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

:root {
    /* Core 3-Color Palette */
    --primary-peach: #f4a87c;
    --primary-coral: #e8906b;
    --primary-brown: #8b4a3b;
    
    /* Enhanced Supporting Colors */
    --secondary-tan: #d4b896;
    --secondary-beige: #f0e6d3;
    --neutral-dark: #2d2d2d;
    --neutral-medium: #5a5a5a;
    --neutral-light: #8a8a8a;
    --white: #ffffff;
    --light-bg: #fafafa;
    --shadow: rgba(139, 74, 59, 0.12);
    --shadow-strong: rgba(139, 74, 59, 0.25);
    
    /* Enhanced Glass Morphism Effects */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-bg-strong: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    --glass-backdrop: blur(20px);
    
    /* Enhanced Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-peach) 0%, var(--primary-coral) 100%);
    --gradient-hero: linear-gradient(135deg, rgba(139, 74, 59, 0.9) 0%, rgba(244, 168, 124, 0.8) 100%);
    --gradient-soft: linear-gradient(135deg, rgba(244, 168, 124, 0.1) 0%, rgba(232, 144, 107, 0.05) 100%);
    --gradient-testimonials: linear-gradient(135deg, rgba(139, 74, 59, 0.95) 0%, rgba(244, 168, 124, 0.9) 100%);
    
    /* Typography Scale (Major Third - 1.25 ratio) */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Open Sans', sans-serif;
    --font-size-xs: 0.8rem;
    --font-size-sm: 0.9rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.563rem;
    --font-size-2xl: 1.953rem;
    --font-size-3xl: 2.441rem;
    --font-size-4xl: 3.052rem;
    --font-size-5xl: 3.815rem;
    
    /* 8-Point Spacing System */
    --space-1: 0.5rem;   /* 8px */
    --space-2: 1rem;     /* 16px */
    --space-3: 1.5rem;   /* 24px */
    --space-4: 2rem;     /* 32px */
    --space-5: 2.5rem;   /* 40px */
    --space-6: 3rem;     /* 48px */
    --space-8: 4rem;     /* 64px */
    --space-10: 5rem;    /* 80px */
    --space-12: 6rem;    /* 96px */
    --space-16: 8rem;    /* 128px */
    
    /* Layout */
    --section-padding: var(--space-10) 0;
    --container-padding: 0 var(--space-3);
    --border-radius: 0.5rem;
    --border-radius-lg: 1rem;
    --max-width: 1200px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--neutral-dark);
    background-color: var(--white);
    font-size: var(--font-size-base);
    overflow-x: hidden;
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100vw;
}

/* Enhanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

.slide-in-down {
    animation: slideInDown 0.8s ease-out forwards;
}

.bounce-in {
    animation: bounceIn 0.6s ease-out forwards;
}

/* Accessibility Styles */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-brown);
    color: var(--white);
    padding: 8px;
    z-index: 1000;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition-fast);
    transform: translateY(-100%);
}

.skip-link:focus {
    top: 6px;
    transform: translateY(0);
    outline: 3px solid var(--primary-peach);
    outline-offset: 2px;
}

/* Enhanced focus styles for better accessibility */
:focus-visible {
    outline: 3px solid var(--primary-peach);
    outline-offset: 2px;
    border-radius: var(--border-radius);
}

/* Remove outline for mouse users */
:focus:not(:focus-visible) {
    outline: none;
}

/* Screen reader only text */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --shadow: rgba(0, 0, 0, 0.8);
        --shadow-strong: rgba(0, 0, 0, 1);
    }
    
    .btn-primary {
        border: 2px solid var(--neutral-dark);
    }
    
    .btn-secondary {
        border: 2px solid var(--neutral-dark);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    body {
        scroll-behavior: auto;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-peach), var(--primary-coral));
    border-radius: 50px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-coral), var(--primary-brown));
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--container-padding);
    width: 100%;
    box-sizing: border-box;
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: var(--space-3);
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

p {
    margin-bottom: var(--space-3);
    color: var(--neutral-medium);
    line-height: 1.7;
}

/* Focus States for Accessibility */
*:focus {
    outline: 2px solid var(--primary-peach);
    outline-offset: 2px;
}

/* Navigation - Enhanced Glass Morphism */
.navbar {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 8px 40px rgba(139, 74, 59, 0.08), 
                0 4px 20px rgba(244, 168, 124, 0.12),
                0 1px 3px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(244, 168, 124, 0.18);
    transition: all var(--transition-normal);
    animation: slideInDown 0.6s ease-out;
}

.navbar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-peach), transparent);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.navbar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.1) 0%, 
                rgba(244, 168, 124, 0.05) 50%, 
                transparent 100%);
    pointer-events: none;
    z-index: -1;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 40px rgba(139, 74, 59, 0.15), 
                0 4px 20px rgba(244, 168, 124, 0.18),
                0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled::before {
    opacity: 1;
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 88px;
    position: relative;
    min-height: 88px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    cursor: pointer;
    transition: transform var(--transition-normal);
    position: relative;
    z-index: 10;
}

.logo:hover {
    transform: translateY(-1px);
}

.logo:hover .logo-title {
    color: var(--primary-coral);
    text-shadow: 0 1px 4px rgba(139, 74, 59, 0.15);
}

.logo:hover .logo-subtitle {
    color: var(--neutral-dark);
    opacity: 1;
}

.logo-img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 12px rgba(139, 74, 59, 0.12));
    transition: all var(--transition-normal);
}

.logo:hover .logo-img {
    filter: drop-shadow(0 4px 16px rgba(139, 74, 59, 0.18));
    transform: scale(1.02);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    transition: all var(--transition-normal);
}

.logo-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-brown);
    margin: 0;
    letter-spacing: -0.01em;
    text-shadow: 0 1px 3px rgba(139, 74, 59, 0.12);
    line-height: 1.1;
}

.logo-subtitle {
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--neutral-medium);
    margin: 0;
    letter-spacing: 0.025em;
    text-transform: uppercase;
    opacity: 0.95;
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-2);
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--neutral-dark);
    font-weight: 500;
    font-size: var(--font-size-sm);
    padding: var(--space-2) var(--space-3);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

/* Special Book Now Button Styling */
.nav-menu a.book-now-nav {
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 6px 20px rgba(244, 168, 124, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.25);
    margin-left: var(--space-3);
    text-shadow: 0 1px 3px rgba(139, 74, 59, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav-menu a.book-now-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(244, 168, 124, 0.45);
    background: linear-gradient(135deg, var(--primary-coral) 0%, var(--primary-peach) 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.nav-menu a.book-now-nav:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(244, 168, 124, 0.5);
    background: var(--gradient-primary);
    color: white;
}

.nav-menu a.book-now-nav::before {
    display: none;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(244, 168, 124, 0.1), rgba(232, 144, 107, 0.05));
    transition: width var(--transition-normal);
    z-index: -1;
}

.nav-menu a:hover {
    color: var(--primary-coral);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(244, 168, 124, 0.15);
}

.nav-menu a:hover::before {
    width: 100%;
}

.nav-menu a:focus {
    outline: none;
    color: var(--primary-coral);
    background: rgba(244, 168, 124, 0.12);
}

.nav-menu a:active {
    transform: translateY(0);
    transition: transform 0.1s ease;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: rgba(244, 168, 124, 0.05);
    border: 1px solid rgba(244, 168, 124, 0.15);
    padding: var(--space-1);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-normal);
    width: 44px;
    height: 44px;
    justify-content: center;
    align-items: center;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hamburger:hover {
    background: rgba(244, 168, 124, 0.12);
    transform: scale(1.05);
    border: 1px solid rgba(244, 168, 124, 0.25);
    box-shadow: 0 4px 12px rgba(244, 168, 124, 0.15);
}

.hamburger:focus {
    outline: 2px solid var(--primary-peach);
    outline-offset: 2px;
    background: rgba(244, 168, 124, 0.1);
}

.hamburger span {
    width: 22px;
    height: 2.5px;
    background: linear-gradient(90deg, var(--primary-brown) 0%, var(--primary-coral) 100%);
    margin: 2px 0;
    transition: all var(--transition-normal);
    border-radius: 2px;
    transform-origin: center;
    box-shadow: 0 1px 2px rgba(139, 74, 59, 0.1);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section - Modern Full-Screen with Background Image */
.hero {
    position: relative;
    min-height: 70vh;
    padding-top: 80px; /* Account for fixed navbar */
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100%; /* Make hero section full-width */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(244, 168, 124, 0.3) 0%, transparent 50%);
    animation: heroFloat 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-30px, -30px) rotate(1deg); }
    66% { transform: translate(30px, -15px) rotate(-1deg); }
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-hero);
    z-index: 2;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(244, 168, 124, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(232, 144, 107, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--space-8) var(--space-3) var(--space-6);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.hero-content {
    max-width: 700px;
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-backdrop);
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: 50px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--space-4);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
    animation: badgeGlow 3s ease-in-out infinite alternate;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: badgeShimmer 2s ease-in-out infinite;
}

@keyframes badgeGlow {
    0% { box-shadow: var(--glass-shadow); }
    100% { box-shadow: var(--glass-shadow), 0 0 20px rgba(244, 168, 124, 0.3); }
}

@keyframes badgeShimmer {
    0% { transform: translate(-100%, -100%) rotate(45deg); }
    100% { transform: translate(100%, 100%) rotate(45deg); }
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-3);
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-4);
    font-weight: 600;
    font-family: var(--font-body);
}

.hero-description {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-6);
    line-height: 1.7;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    gap: var(--space-3);
    align-items: stretch;
    flex-wrap: wrap;
    margin-top: var(--space-4);
}

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    min-width: 220px;
    white-space: nowrap;
}

/* Trust indicators and stats removed for cleaner, minimal hero section */

/* Micro-interactions and Hover Effects */
.service-card,
.testimonial-card,
.booking-info,
.about-text,
.contact-item {
    transition: all var(--transition-slow);
}

.service-card {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.testimonial-card:nth-child(1) {
    animation-delay: 0.1s;
}

.testimonial-card:nth-child(2) {
    animation-delay: 0.2s;
}

.testimonial-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Pulse effect for CTA elements */
.btn-primary,
.hero-badge,
.featured-badge {
    animation: subtlePulse 3s ease-in-out infinite;
}

@keyframes subtlePulse {
    0%, 100% { 
        transform: scale(1); 
    }
    50% { 
        transform: scale(1.005); 
    }
}

/* Enhanced Button System */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 18px 36px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 6px 24px rgba(244, 168, 124, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    min-height: 56px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    transition: all var(--transition-normal);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(244, 168, 124, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, var(--primary-coral) 0%, var(--primary-peach) 100%);
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-primary:hover::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(244, 168, 124, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-brown);
    padding: 18px 36px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    cursor: pointer;
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    letter-spacing: 0.3px;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--white);
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:active {
    transform: translateY(-1px);
}

.hero-image {
    flex: 1;
}

.hero-placeholder {
    background: var(--secondary-tan);
    height: 400px;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-brown);
    font-style: italic;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--space-12);
    position: relative;
}

.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-peach), var(--primary-coral));
    color: var(--white);
    padding: var(--space-1) var(--space-3);
    border-radius: 50px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--space-3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-description {
    font-size: var(--font-size-lg);
    color: var(--neutral-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-description.light {
    color: rgba(255, 255, 255, 0.9);
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background: var(--light-bg);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(240, 230, 211, 0.5) 0%, transparent 50%);
    pointer-events: none;
}

.services .container {
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    align-items: stretch;
    justify-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-slow);
    border: 1px solid rgba(244, 168, 124, 0.15);
    box-shadow: 0 8px 32px rgba(139, 74, 59, 0.08), 
                0 4px 16px rgba(244, 168, 124, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(1px);
    height: auto;
    width: 100%;
    max-width: 420px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-soft);
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
    z-index: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(244, 168, 124, 0.03) 50%, transparent 60%);
    transform: rotate(45deg) translate(-100%, -100%);
    transition: transform 1.5s ease;
    z-index: 1;
}

.service-card.featured {
    /* Removed scale transform to maintain grid alignment */
    z-index: 2;
    box-shadow: 0 12px 48px rgba(139, 74, 59, 0.12), 
                0 8px 24px rgba(244, 168, 124, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.9),
                0 0 0 2px rgba(244, 168, 124, 0.1);
    border: 2px solid rgba(244, 168, 124, 0.3);
}

.service-card.featured::before {
    background: linear-gradient(135deg, rgba(244, 168, 124, 0.15) 0%, rgba(232, 144, 107, 0.08) 100%);
    opacity: 1;
}

.featured-badge {
    position: absolute;
    top: var(--space-3);
    right: var(--space-3);
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--space-1) var(--space-3);
    border-radius: 50px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(244, 168, 124, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: featuredPulse 2s ease-in-out infinite;
}

@keyframes featuredPulse {
    0%, 100% { 
        box-shadow: 0 4px 16px rgba(244, 168, 124, 0.4),
                    inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% { 
        box-shadow: 0 6px 24px rgba(244, 168, 124, 0.6),
                    inset 0 1px 0 rgba(255, 255, 255, 0.4),
                    0 0 20px rgba(244, 168, 124, 0.3);
    }
}

.service-image {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* Creates a square aspect ratio */
    overflow: hidden;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    flex-shrink: 0;
}

.card-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 74, 59, 0.95) 0%, rgba(244, 168, 124, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-normal);
    backdrop-filter: blur(8px);
}

.service-overlay::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.service-overlay .service-icon {
    font-size: 3rem;
    color: var(--white);
}

.service-content {
    padding: var(--space-4) var(--space-5);
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.02) 100%);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 0 25px 80px rgba(139, 74, 59, 0.15), 
                0 15px 40px rgba(244, 168, 124, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    transform: rotate(45deg) translate(100%, 100%);
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-12px);
}

.service-card:hover .card-img {
    transform: scale(1.1);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-card:hover .service-overlay::before {
    width: 200px;
    height: 200px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-1);
    margin: var(--space-2) 0;
    align-items: flex-start;
}

.feature-tag {
    background: linear-gradient(135deg, rgba(244, 168, 124, 0.12) 0%, rgba(232, 144, 107, 0.08) 100%);
    color: var(--primary-coral);
    padding: var(--space-1) var(--space-2);
    border-radius: 50px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(244, 168, 124, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all var(--transition-normal);
}

.feature-tag:hover {
    background: linear-gradient(135deg, rgba(244, 168, 124, 0.18) 0%, rgba(232, 144, 107, 0.12) 100%);
    transform: translateY(-1px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 2px 8px rgba(244, 168, 124, 0.2);
}

.service-pricing {
    margin-top: auto;
    border-top: 1px solid rgba(244, 168, 124, 0.1);
    padding-top: var(--space-3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-2);
    flex-shrink: 0;
}

.price-options {
    display: flex;
    gap: var(--space-3);
}

.price-option {
    text-align: center;
}

.duration {
    font-size: var(--font-size-xs);
    color: var(--neutral-medium);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-1);
    display: block;
}

.price {
    font-size: var(--font-size-xl);
    color: var(--primary-coral);
    font-weight: 700;
    font-family: var(--font-heading);
}

.service-link {
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-sm);
    transition: color var(--transition-normal);
}

.service-link:hover {
    color: var(--primary-coral);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: var(--space-4);
    display: block;
    opacity: 0.9;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    color: var(--primary-brown);
    margin-bottom: var(--space-3);
}

.service-card p {
    color: var(--neutral-medium);
    line-height: 1.6;
    margin-bottom: var(--space-3);
    font-size: var(--font-size-base);
    flex: 1 1 auto;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* About Section */
.about {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--secondary-beige) 0%, var(--light-bg) 100%);
}

.about-content {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    min-height: 650px;
}

.about-text {
    flex: 1;
}

.about h2 {
    font-family: var(--font-heading);
    font-size: var(--font-size-3xl);
    color: var(--primary-brown);
    margin-bottom: var(--space-6);
    position: relative;
    display: inline-block;
}

.about h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

.about p {
    font-size: var(--font-size-lg);
    color: var(--neutral-medium);
    margin-bottom: var(--space-4);
    line-height: 1.7;
}

.about-intro {
    font-size: var(--font-size-lg);
    color: var(--primary-coral);
    font-weight: 500;
    margin-bottom: var(--space-4);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-top: var(--space-5);
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-4);
    background: rgba(244, 168, 124, 0.06);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(244, 168, 124, 0.1);
    transition: all var(--transition-normal);
}

.feature:hover {
    background: rgba(244, 168, 124, 0.1);
    transform: translateX(8px);
}

.feature-icon {
    font-size: 2rem;
    opacity: 0.9;
    flex-shrink: 0;
}

.feature-content h4 {
    color: var(--primary-brown);
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-1);
    font-family: var(--font-heading);
}

.feature-content p {
    color: var(--neutral-medium);
    font-size: var(--font-size-sm);
    margin: 0;
    line-height: 1.6;
}

.about-image {
    flex: 1.8;
    position: relative;
    min-width: 65%;
}

.image-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(139, 74, 59, 0.2);
}

.therapist-image {
    width: 100%;
    height: 650px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-peach), var(--primary-coral));
    border-radius: 50%;
    z-index: -1;
}

.experience-card {
    position: absolute;
    bottom: var(--space-4);
    left: var(--space-4);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--space-4);
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.experience-number {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-coral);
    font-family: var(--font-heading);
    line-height: 1;
}

.experience-text {
    font-size: var(--font-size-sm);
    color: var(--neutral-medium);
    font-weight: 600;
    margin-top: var(--space-1);
}

.therapist-credentials {
    background: rgba(244, 168, 124, 0.05);
    border: 1px solid rgba(244, 168, 124, 0.15);
    border-radius: var(--border-radius-lg);
    padding: var(--space-5);
    margin: var(--space-6) 0;
}

.therapist-credentials h3 {
    font-size: var(--font-size-lg);
    color: var(--primary-brown);
    margin-bottom: var(--space-3);
    text-align: center;
}

.credentials-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.credential-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    color: var(--neutral-medium);
    font-weight: 500;
}

.credential-icon {
    font-size: 1.2em;
    color: var(--primary-coral);
}

/* Testimonials Section */
.testimonials {
    position: relative;
    padding: var(--space-16) 0;
    overflow: hidden;
}

.testimonials-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.testimonials-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.testimonials-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-testimonials);
    z-index: 2;
}

.testimonials-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 25% 25%, rgba(244, 168, 124, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(232, 144, 107, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(139, 74, 59, 0.1) 0%, transparent 70%);
    animation: testimonialFloat 15s ease-in-out infinite;
}

@keyframes testimonialFloat {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.testimonials .container {
    position: relative;
    z-index: 3;
    color: var(--white);
}

.testimonials .section-header h2 {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
}

.testimonial-card {
    background: var(--glass-bg-strong);
    backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    padding: var(--space-8);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    box-shadow: var(--glass-shadow), 0 4px 16px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, transparent 50%, rgba(255, 255, 255, 0.04) 100%);
    pointer-events: none;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    transform: rotate(45deg) translate(-100%, -100%);
    transition: transform 1.2s ease;
    pointer-events: none;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--glass-shadow), 
                0 25px 80px rgba(0, 0, 0, 0.15),
                0 0 40px rgba(244, 168, 124, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.testimonial-card:hover::after {
    transform: rotate(45deg) translate(100%, 100%);
}

.testimonial-rating {
    display: flex;
    gap: var(--space-1);
    margin-bottom: var(--space-4);
    justify-content: center;
}

.star {
    color: #FFD700;
    font-size: var(--font-size-lg);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3), 0 0 8px rgba(255, 215, 0, 0.4);
    transition: all var(--transition-normal);
    animation: starTwinkle 2s ease-in-out infinite;
}

.testimonial-card:hover .star {
    transform: scale(1.1);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4), 0 0 12px rgba(255, 215, 0, 0.6);
}

@keyframes starTwinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.testimonial-card blockquote {
    font-size: var(--font-size-lg);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-4);
    font-style: italic;
    position: relative;
}

.testimonial-card blockquote::before {
    content: '"';
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: -20px;
    left: -15px;
    font-family: var(--font-heading);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: quoteFloat 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes quoteFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); opacity: 0.2; }
    50% { transform: translateY(-5px) rotate(2deg); opacity: 0.3; }
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: 600;
    color: var(--white);
    font-size: var(--font-size-base);
    margin-bottom: var(--space-1);
}

.author-location {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
}

/* Scheduler Section - Enhanced for Conversions */
.scheduler {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.scheduler::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(244, 168, 124, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.scheduler .container {
    position: relative;
    z-index: 2;
}

.scheduler h2 {
    font-family: var(--font-heading);
    font-size: var(--font-size-3xl);
    text-align: center;
    color: var(--primary-brown);
    margin-bottom: var(--space-2);
}

.scheduler .section-subtitle {
    text-align: center;
    font-size: var(--font-size-lg);
    color: var(--neutral-medium);
    margin-bottom: var(--space-10);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.scheduler-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-6);
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
    background: linear-gradient(135deg, var(--white) 0%, rgba(250, 247, 245, 0.6) 100%);
    border: 1px solid rgba(244, 168, 124, 0.2);
    border-radius: 24px;
    padding: var(--space-6);
    box-shadow: 0 20px 80px rgba(139, 74, 59, 0.12), 
                0 8px 32px rgba(244, 168, 124, 0.08), 
                0 4px 16px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(10px);
}

/* Enhanced Calendar Booking System Styles */
.calendar-booking-container {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(240, 230, 211, 0.9) 100%);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 25px 100px rgba(139, 74, 59, 0.15),
                0 15px 50px rgba(244, 168, 124, 0.1),
                inset 0 2px 4px rgba(255, 255, 255, 0.95),
                inset 0 -2px 4px rgba(244, 168, 124, 0.08);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(244, 168, 124, 0.2);
    backdrop-filter: blur(20px);
    /* Enhanced glass morphism with premium feel */
}

.calendar-booking-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    z-index: 10;
}

.booking-steps {
    display: flex;
    background: linear-gradient(135deg, 
        rgba(244, 168, 124, 0.08) 0%, 
        rgba(240, 230, 211, 0.15) 100%);
    padding: var(--space-4) var(--space-6);
    border-bottom: 1px solid rgba(244, 168, 124, 0.15);
    backdrop-filter: blur(10px);
    position: relative;
}

.step {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    flex: 1;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -50%;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
    background: var(--neutral-light);
}

.step.active:not(:last-child)::after {
    background: var(--primary-peach);
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--neutral-light);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: var(--font-size-sm);
    z-index: 1;
}

.step.active .step-number {
    background: var(--primary-peach);
}

.step-label {
    font-weight: 600;
    color: var(--neutral-medium);
}

.step.active .step-label {
    color: var(--primary-brown);
}

.booking-step {
    display: none;
    padding: var(--space-6);
    animation: fadeIn 0.3s ease-in-out;
}

.booking-step.active {
    display: block;
}

.booking-step h3 {
    margin-bottom: var(--space-5);
    text-align: center;
}

/* Enhanced Step Headers */
.step-header {
    text-align: center;
    margin-bottom: var(--space-6);
}
.step-header h3 {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    color: var(--primary-brown);
    margin-bottom: var(--space-2);
}
.step-header p {
    color: var(--neutral-medium);
    font-size: var(--font-size-lg);
    max-width: 500px;
    margin: 0 auto;
}

/* Service Options */
.service-options {
    display: grid;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.service-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-5);
    border: 2px solid rgba(244, 168, 124, 0.15);
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    transition: all var(--transition-normal);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(240, 230, 211, 0.3) 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(139, 74, 59, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.service-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(244, 168, 124, 0.1), transparent);
    transition: left 0.8s ease;
}

.service-option:hover {
    border-color: var(--primary-peach);
    background: linear-gradient(135deg, rgba(244, 168, 124, 0.1) 0%, rgba(240, 230, 211, 0.5) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(139, 74, 59, 0.1), 
                0 4px 12px rgba(244, 168, 124, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.service-option:hover::before {
    left: 100%;
}

.service-option.selected {
    border-color: var(--primary-peach);
    background: linear-gradient(135deg, rgba(244, 168, 124, 0.15) 0%, rgba(240, 230, 211, 0.6) 100%);
    box-shadow: 0 8px 32px rgba(139, 74, 59, 0.15), 
                0 4px 16px rgba(244, 168, 124, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.8),
                0 0 0 3px rgba(244, 168, 124, 0.1);
    transform: translateY(-2px);
}

.service-option.selected::after {
    content: '✓';
    position: absolute;
    top: var(--space-2);
    right: var(--space-2);
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-sm);
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(244, 168, 124, 0.4);
    animation: checkmarkPop 0.3s ease-out;
}

@keyframes checkmarkPop {
    0% { transform: scale(0) rotate(180deg); opacity: 0; }
    50% { transform: scale(1.2) rotate(360deg); opacity: 1; }
    100% { transform: scale(1) rotate(360deg); opacity: 1; }
}

.service-info h4 {
    margin-bottom: var(--space-1);
    color: var(--primary-brown);
}

.service-info p {
    margin: 0;
    color: var(--neutral-medium);
    font-size: var(--font-size-sm);
}

.service-price {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-brown);
}

/* Calendar Styles */
.calendar-container {
    background: var(--white);
    border: 1px solid var(--secondary-beige);
    border-radius: var(--border-radius);
    margin-bottom: var(--space-5);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4);
    background: var(--light-bg);
    border-bottom: 1px solid var(--secondary-beige);
}

.calendar-nav {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--primary-peach);
    color: var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    transition: all var(--transition-normal);
}

.calendar-nav:hover {
    background: var(--primary-coral);
    transform: scale(1.05);
}

.calendar-title {
    margin: 0;
    color: var(--primary-brown);
    font-size: var(--font-size-lg);
}

.calendar-grid {
    padding: var(--space-3);
}

.calendar-days-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: var(--space-2);
}

.day-header {
    text-align: center;
    font-weight: 600;
    color: var(--neutral-medium);
    font-size: var(--font-size-sm);
    padding: var(--space-1);
}

/* Calendar days styles consolidated - see main calendar styles around line 4893 */
/* All calendar-day state styles moved to main calendar section for consistency */

/* Time Slots */
.time-slots-container h4 {
    margin-bottom: var(--space-3);
    color: var(--primary-brown);
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: var(--space-2);
    margin-bottom: var(--space-5);
}

.time-slot {
    padding: var(--space-3) var(--space-4);
    border: 2px solid rgba(244, 168, 124, 0.2);
    background: linear-gradient(135deg, var(--white) 0%, rgba(240, 230, 211, 0.3) 100%);
    border-radius: var(--border-radius-lg);
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(139, 74, 59, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.time-slot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(244, 168, 124, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.time-slot.available:hover {
    border-color: var(--primary-peach);
    background: linear-gradient(135deg, rgba(244, 168, 124, 0.1) 0%, rgba(240, 230, 211, 0.5) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(139, 74, 59, 0.1), 
                0 3px 8px rgba(244, 168, 124, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.time-slot.available:hover::before {
    width: 80px;
    height: 80px;
}

.time-slot.selected {
    border-color: var(--primary-peach);
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(244, 168, 124, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: translateY(-2px) scale(1.05);
}

.time-slot.selected::before {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
}

.time-slot.unavailable {
    background: var(--light-bg);
    color: var(--neutral-light);
    cursor: not-allowed;
    opacity: 0.6;
}

.select-date-message,
.closed-message {
    text-align: center;
    color: var(--neutral-medium);
    font-style: italic;
    margin: var(--space-4) 0;
}

/* Booking Summary */
.booking-summary {
    background: var(--light-bg);
    padding: var(--space-4);
    border-radius: var(--border-radius);
    margin-bottom: var(--space-5);
}

.booking-summary h4 {
    margin-bottom: var(--space-3);
    color: var(--primary-brown);
}

.summary-details p {
    margin-bottom: var(--space-2);
    display: flex;
    justify-content: space-between;
}

.summary-details strong {
    color: var(--primary-brown);
}

/* Step Navigation */
.step-navigation {
    display: flex;
    gap: var(--space-3);
    justify-content: center;
    margin-top: var(--space-6);
}

.step-navigation .btn-secondary {
    background: var(--neutral-light);
    color: var(--white);
}

.step-navigation .btn-secondary:hover {
    background: var(--neutral-medium);
}

.booking-form {
    background: var(--light-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px var(--shadow);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-brown);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(244, 168, 124, 0.2);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-coral);
}

.booking-info {
    background: linear-gradient(135deg, var(--white) 0%, rgba(250, 247, 245, 0.6) 100%);
    padding: var(--space-6);
    border-radius: 24px;
    height: fit-content;
    border: 1px solid rgba(244, 168, 124, 0.2);
    box-shadow: 0 20px 80px rgba(139, 74, 59, 0.12), 
                0 8px 32px rgba(244, 168, 124, 0.08), 
                0 4px 16px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 120px;
    backdrop-filter: blur(10px);
}

.booking-info h3 {
    font-family: var(--font-heading);
    color: var(--primary-brown);
    margin-bottom: var(--space-4);
    font-size: var(--font-size-2xl);
    text-align: center;
}

.booking-info ul {
    list-style: none;
    margin-bottom: var(--space-6);
}

.booking-info li {
    color: var(--neutral-medium);
    margin-bottom: var(--space-2);
    padding-left: var(--space-4);
    position: relative;
    font-size: var(--font-size-sm);
    line-height: 1.6;
}

.booking-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-coral);
    font-weight: bold;
    font-size: var(--font-size-base);
}

.contact-quick {
    border-top: 1px solid rgba(244, 168, 124, 0.2);
    padding-top: var(--space-4);
    background: linear-gradient(135deg, rgba(240, 230, 211, 0.3) 0%, transparent 100%);
    padding: var(--space-4);
    border-radius: var(--border-radius);
    margin-top: var(--space-4);
}

.contact-quick h4 {
    color: var(--primary-brown);
    margin-bottom: var(--space-3);
    font-size: var(--font-size-lg);
}

.contact-quick p {
    color: var(--neutral-medium);
    margin-bottom: var(--space-1);
    font-size: var(--font-size-sm);
}

.contact-quick strong {
    color: var(--neutral-dark);
}

.contact-quick a {
    color: var(--primary-coral);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-normal);
}

.contact-quick a:hover {
    color: var(--primary-brown);
    text-decoration: underline;
}

/* Enhanced Contact Section */
.contact {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--secondary-beige) 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(244, 168, 124, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.contact h2 {
    font-family: var(--font-heading);
    font-size: var(--font-size-3xl);
    text-align: center;
    color: var(--primary-brown);
    margin-bottom: var(--space-8);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-8);
    align-items: start;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
    align-content: start;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: var(--primary-coral);
    margin-bottom: 10px;
}

.contact-item p {
    color: var(--neutral-medium);
    line-height: 1.6;
}

.contact-item a {
    color: var(--primary-coral);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-normal);
    position: relative;
    padding: var(--space-1) var(--space-2);
    border-radius: var(--border-radius);
}

.contact-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: var(--space-2);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-normal);
}

.contact-item a:hover {
    color: var(--primary-brown);
    background: rgba(244, 168, 124, 0.1);
    transform: translateY(-1px);
}

.contact-item a:hover::after {
    width: calc(100% - var(--space-4));
}

.map-placeholder {
    background: var(--secondary-tan);
    min-height: 300px;
    height: 100%;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-brown);
    font-style: italic;
    text-align: center;
    border: 1px solid rgba(244, 168, 124, 0.2);
    box-shadow: 0 4px 20px rgba(139, 74, 59, 0.1);
}

/* Enhanced Footer */
footer {
    background: linear-gradient(135deg, var(--primary-brown) 0%, #7a3f32 50%, var(--primary-brown) 100%);
    color: var(--white);
    padding: var(--space-16) 0 var(--space-6);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(244, 168, 124, 0.2);
}

footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-peach), transparent);
    z-index: 2;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(244, 168, 124, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(232, 144, 107, 0.1) 0%, transparent 50%),
                linear-gradient(135deg, rgba(244, 168, 124, 0.05) 0%, transparent 100%);
    pointer-events: none;
    animation: footerGlow 8s ease-in-out infinite alternate;
}

@keyframes footerGlow {
    0% { opacity: 0.7; }
    100% { opacity: 1; }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-8);
    margin-bottom: var(--space-8);
    position: relative;
    z-index: 2;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: var(--space-4);
    filter: brightness(0) invert(1);
    transition: all var(--transition-normal);
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 4px 8px rgba(244, 168, 124, 0.3));
}

.footer-section h4 {
    color: var(--primary-peach);
    margin-bottom: var(--space-4);
    font-family: var(--font-heading);
    font-size: var(--font-size-lg);
    position: relative;
    padding-bottom: var(--space-2);
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

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

.footer-section ul li {
    margin-bottom: var(--space-2);
    transition: all var(--transition-normal);
    position: relative;
    padding-left: var(--space-2);
}

.footer-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    background: var(--primary-peach);
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.footer-section ul li:hover {
    transform: translateX(var(--space-1));
}

.footer-section ul li:hover::before {
    opacity: 1;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all var(--transition-normal);
    position: relative;
    font-size: var(--font-size-sm);
    line-height: 1.6;
}

.footer-section ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-peach);
    transition: width var(--transition-normal);
}

.footer-section ul li a:hover {
    color: var(--primary-peach);
    text-shadow: 0 0 8px rgba(244, 168, 124, 0.3);
}

.footer-section ul li a:hover::after {
    width: 100%;
}

.footer-section p a {
    color: var(--primary-peach);
    text-decoration: none;
    transition: all var(--transition-normal);
    position: relative;
    font-weight: 500;
}

.footer-section p a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-peach);
    transition: width var(--transition-normal);
}

.footer-section p a:hover {
    color: var(--white);
    text-shadow: 0 0 8px rgba(244, 168, 124, 0.3);
    transform: translateY(-1px);
}

.footer-section p a:hover::after {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: var(--space-6);
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    font-size: var(--font-size-sm);
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-peach), transparent);
}

/* Responsive Design */

/* Tablet and smaller desktop */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 var(--space-3);
    }
    
    .logo-title {
        font-size: 1.3rem;
    }
    
    .logo-subtitle {
        font-size: 0.8rem;
    }
    
    .logo {
        gap: var(--space-2);
    }
    
    .logo-img {
        height: 56px;
    }
    
    .nav-menu {
        gap: var(--space-2);
    }
    
    .nav-menu a {
        padding: var(--space-2) var(--space-3);
        font-size: var(--font-size-sm);
    }
    
    .nav-menu a.book-now-nav {
        padding: var(--space-2) var(--space-3);
        margin-left: var(--space-2);
    }
}

/* Tablet Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .scheduler-container {
        grid-template-columns: 1fr;
        gap: var(--space-5);
        max-width: 700px;
    }
    
    .about-content {
        gap: var(--space-6);
    }
    
    .services-grid {
        gap: var(--space-4);
    }
    
    .service-card {
        max-width: 450px;
    }
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 768px) {
    /* Enhanced Typography Scale for Mobile */
    :root {
        --font-size-5xl: 2.5rem;   /* Reduced from 3.815rem */
        --font-size-4xl: 2rem;     /* Reduced from 3.052rem */
        --font-size-3xl: 1.75rem;  /* Reduced from 2.441rem */
        --font-size-2xl: 1.5rem;   /* Reduced from 1.953rem */
        --font-size-xl: 1.25rem;   /* Reduced from 1.563rem */
    }

    /* Enhanced Mobile Navigation */
    .nav-container {
        height: 80px;
        padding: 0 var(--space-3);
    }
    
    .logo-text {
        display: flex;
        flex-direction: column;
    }
    
    .logo {
        gap: var(--space-2);
    }
    
    .logo-img {
        height: 50px;
    }
    
    .logo-title {
        font-size: 1.1rem;
        line-height: 1.1;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
        line-height: 1.2;
        opacity: 0.85;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(24px) saturate(180%);
        -webkit-backdrop-filter: blur(24px) saturate(180%);
        width: 100%;
        min-height: calc(100vh - 80px);
        text-align: center;
        transition: left var(--transition-normal);
        box-shadow: 0 8px 40px rgba(139, 74, 59, 0.15);
        padding: var(--space-6) 0;
        gap: var(--space-2);
        align-items: center;
        justify-content: flex-start;
        border-top: 1px solid rgba(244, 168, 124, 0.2);
    }
    
    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        padding: var(--space-3) var(--space-6);
        margin: 0 var(--space-4);
        border-radius: var(--border-radius-lg);
        font-size: var(--font-size-lg);
        width: calc(100% - var(--space-8));
        max-width: 300px;
        text-align: center;
    }
    
    .nav-menu a.book-now-nav {
        margin-top: var(--space-4);
        padding: var(--space-3) var(--space-6);
        font-size: var(--font-size-lg);
        box-shadow: 0 6px 20px rgba(244, 168, 124, 0.3);
    }
    
    /* Hero Section Mobile Optimization */
    .hero {
        min-height: 60vh;
        padding-top: 70px; /* Slightly less padding on mobile */
    }

    .hero-container {
        padding: var(--space-6) var(--space-3) var(--space-4);
        align-items: center;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }

    .service-card.featured {
        transform: none;
    }

    .service-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .hero h1 {
        font-size: var(--font-size-4xl);
        margin-bottom: var(--space-4);
    }

    .hero-subtitle {
        font-size: var(--font-size-lg);
        margin-bottom: var(--space-5);
    }

    .hero-description {
        font-size: var(--font-size-base);
        margin-bottom: var(--space-8);
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-2);
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: none;
        justify-content: center;
        padding: 16px 32px;
    }
    
    /* Section Mobile Improvements */
    .services {
        padding: var(--space-10) 0;
    }

    .services h2 {
        margin-bottom: var(--space-8);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--space-4);
        justify-items: center;
    }
    
    .service-card {
        padding: var(--space-6) var(--space-4);
        height: 100%;
        min-height: 520px;
        max-width: 100%;
    }
    
    .service-card h3 {
        font-size: var(--font-size-lg);
    }
    
    .service-card p {
        font-size: var(--font-size-sm);
    }

    .about-content {
        flex-direction: column;
        gap: var(--space-6);
        min-height: auto;
    }

    .about {
        padding: var(--space-10) 0;
    }
    
    .scheduler {
        padding: var(--space-10) 0;
    }

    .scheduler-container {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }

    .booking-info {
        position: static;
        order: -1;
        margin-bottom: var(--space-4);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .contact-item {
        text-align: center;
    }

    .contact {
        padding: var(--space-10) 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-6);
        text-align: center;
    }

    /* Container Mobile Adjustment */
    .container {
        padding: 0 var(--space-2);
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .booking-form {
        padding: 25px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .logo-img {
        height: 45px; /* Even smaller on very small screens */
    }
    
    .appointment-form button[type="submit"] {
        width: 100%; /* Full width button on small screens */
        padding: 20px;
    }
    
    .service-card {
        padding: 20px 15px;
        height: 100%;
        min-height: 450px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
}

/* Form submission success message */
.success-message {
    background: linear-gradient(135deg, var(--primary-peach) 0%, var(--primary-coral) 100%);
    color: var(--white);
    padding: 15px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-bottom: 20px;
    display: none;
}

/* Custom Booking Form Styles */
.custom-booking-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    max-width: 800px;
    margin: 0 auto;
}

.booking-summary-card {
    background: linear-gradient(135deg, rgba(244, 168, 124, 0.1) 0%, rgba(240, 230, 211, 0.15) 100%);
    border: 1px solid rgba(244, 168, 124, 0.2);
    border-radius: var(--border-radius-lg);
    padding: var(--space-5);
}

.booking-summary-card h3 {
    color: var(--primary-brown);
    font-family: var(--font-heading);
    margin-bottom: var(--space-4);
    text-align: center;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-2) 0;
    border-bottom: 1px solid rgba(244, 168, 124, 0.1);
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row.total {
    border-top: 2px solid rgba(244, 168, 124, 0.3);
    margin-top: var(--space-2);
    padding-top: var(--space-3);
    font-weight: 600;
    font-size: var(--font-size-lg);
    color: var(--primary-brown);
}

.summary-row .label {
    color: var(--neutral-medium);
    font-weight: 500;
}

.summary-row .value {
    color: var(--primary-brown);
    font-weight: 600;
}

.booking-details-form {
    background: var(--white);
    border: 1px solid rgba(244, 168, 124, 0.15);
    border-radius: var(--border-radius-lg);
    padding: var(--space-6);
    box-shadow: 0 4px 20px rgba(139, 74, 59, 0.08);
}

.booking-details-form h3 {
    color: var(--primary-brown);
    font-family: var(--font-heading);
    margin-bottom: var(--space-5);
    font-size: var(--font-size-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

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

.form-group label {
    color: var(--primary-brown);
    font-weight: 600;
    margin-bottom: var(--space-2);
    font-size: var(--font-size-sm);
}

.form-group input,
.form-group textarea {
    padding: var(--space-3);
    border: 2px solid rgba(244, 168, 124, 0.2);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    transition: all var(--transition-normal);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-coral);
    box-shadow: 0 0 0 3px rgba(244, 168, 124, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.checkbox-group {
    margin: var(--space-4) 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2);
    cursor: pointer;
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(244, 168, 124, 0.4);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked {
    background: var(--primary-coral);
    border-color: var(--primary-coral);
}

.checkbox-label input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.booking-actions {
    display: flex;
    gap: var(--space-3);
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-6);
    padding-top: var(--space-4);
    border-top: 1px solid rgba(244, 168, 124, 0.2);
}

.booking-actions .btn-primary {
    flex: 1;
    max-width: 250px;
}

/* Booking Confirmation Styles */
.booking-confirmation {
    text-align: center;
    padding: var(--space-8);
    max-width: 600px;
    margin: 0 auto;
}

.confirmation-icon {
    margin-bottom: var(--space-4);
}

.booking-confirmation h2 {
    color: var(--primary-brown);
    font-family: var(--font-heading);
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-2);
}

.confirmation-subtitle {
    color: var(--neutral-medium);
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-6);
}

.confirmation-details {
    text-align: left;
    background: var(--white);
    border: 1px solid rgba(244, 168, 124, 0.15);
    border-radius: var(--border-radius-lg);
    padding: var(--space-6);
    margin: var(--space-6) 0;
    box-shadow: 0 4px 20px rgba(139, 74, 59, 0.08);
}

.confirmation-number {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-coral) 0%, var(--primary-peach) 100%);
    color: var(--white);
    padding: var(--space-3);
    border-radius: var(--border-radius);
    margin-bottom: var(--space-5);
    font-size: var(--font-size-lg);
}

.appointment-summary h3,
.next-steps h3 {
    color: var(--primary-brown);
    font-family: var(--font-heading);
    margin-bottom: var(--space-3);
    padding-bottom: var(--space-2);
    border-bottom: 1px solid rgba(244, 168, 124, 0.2);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-2) 0;
    border-bottom: 1px solid rgba(244, 168, 124, 0.1);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row .label {
    color: var(--neutral-medium);
    font-weight: 500;
}

.detail-row .value {
    color: var(--primary-brown);
    font-weight: 600;
    text-align: right;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    padding: var(--space-2) 0;
    padding-left: var(--space-4);
    position: relative;
    color: var(--neutral-dark);
}

.next-steps li::before {
    content: '•';
    color: var(--primary-coral);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.contact-info {
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid rgba(244, 168, 124, 0.2);
    text-align: center;
    color: var(--neutral-medium);
}

.contact-info a {
    color: var(--primary-coral);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.confirmation-actions {
    display: flex;
    gap: var(--space-3);
    justify-content: center;
    margin-top: var(--space-6);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }
    
    .booking-actions {
        flex-direction: column;
        gap: var(--space-3);
    }
    
    .booking-actions .btn-primary,
    .booking-actions .btn-secondary {
        width: 100%;
        max-width: none;
    }
    
    .confirmation-actions {
        flex-direction: column;
    }
    
    .confirmation-actions .btn-primary,
    .confirmation-actions .btn-secondary {
        width: 100%;
    }
}

.success-message.show {
    display: block;
}

/* Enhanced Booking Widget Styles */
.square-booking-widget {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 32px rgba(139, 74, 59, 0.12);
    border: 1px solid rgba(244, 168, 124, 0.15);
    overflow: visible;
    position: relative;
    width: 100%;
}

.square-booking-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-peach), var(--primary-coral));
}

.square-setup-placeholder {
    text-align: center;
    padding: 40px 20px;
}

.square-setup-placeholder h3 {
    color: var(--primary-brown);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.square-setup-placeholder ol {
    text-align: left;
    margin: 20px 0;
    padding-left: 20px;
}

.square-setup-placeholder li {
    margin-bottom: 10px;
    color: var(--light-text);
}

.square-setup-placeholder a {
    color: var(--primary-coral);
    text-decoration: none;
}

.square-setup-placeholder a:hover {
    text-decoration: underline;
}

.setup-actions {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.direct-booking {
    text-align: center;
    padding: 40px 20px;
}

.direct-booking h3 {
    color: var(--primary-brown);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.direct-booking p {
    margin-bottom: 25px;
    color: var(--light-text);
}

.booking-note {
    font-size: 0.9em;
    color: var(--light-text);
    font-style: italic;
    margin-top: 15px;
}

.square-setup-info {
    margin-top: 30px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-peach);
}

.square-setup-info h4 {
    color: var(--primary-brown);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.square-setup-info ol {
    margin: 15px 0;
    padding-left: 20px;
}

.square-setup-info li {
    margin-bottom: 8px;
    color: var(--light-text);
}

.square-setup-info a {
    color: var(--primary-coral);
    text-decoration: none;
}

.square-setup-info a:hover {
    text-decoration: underline;
}

/* Square Widget Loading State */
.square-widget-loading {
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px var(--shadow);
}

.square-widget-loading h3 {
    color: var(--primary-brown);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.square-widget-loading p {
    color: var(--light-text);
    font-size: 1rem;
}

/* Enhanced Booking Form Styles */
.booking-form-container {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--space-8);
    position: relative;
    z-index: 2;
}

.booking-form-container h3 {
    color: var(--primary-brown);
    margin-bottom: var(--space-6);
    font-family: var(--font-heading);
    text-align: center;
    font-size: var(--font-size-2xl);
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.appointment-form .form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.appointment-form label {
    font-weight: 600;
    color: var(--neutral-dark);
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-1);
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    padding: var(--space-4) var(--space-5);
    border: 2px solid rgba(244, 168, 124, 0.2);
    border-radius: var(--border-radius-lg);
    font-size: var(--font-size-base);
    transition: all var(--transition-normal);
    background: linear-gradient(135deg, var(--white) 0%, rgba(240, 230, 211, 0.1) 100%);
    font-family: var(--font-body);
    box-shadow: inset 0 2px 4px rgba(139, 74, 59, 0.05), 0 1px 2px rgba(139, 74, 59, 0.05);
    position: relative;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
    outline: none;
    border-color: var(--primary-peach);
    box-shadow: 0 0 0 4px rgba(244, 168, 124, 0.15),
                inset 0 2px 4px rgba(139, 74, 59, 0.08),
                0 4px 12px rgba(244, 168, 124, 0.1);
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--white) 0%, rgba(244, 168, 124, 0.03) 100%);
}

.appointment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.appointment-form button[type="submit"] {
    margin-top: var(--space-4);
    padding: var(--space-4) var(--space-6);
    font-size: var(--font-size-lg);
    font-weight: 600;
    border-radius: var(--border-radius-lg);
}

/* Service Page Specific Styles */
.service-hero {
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--secondary-beige) 100%);
    text-align: center;
}

.service-hero h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-hero .service-subtitle {
    font-size: 1.2rem;
    color: var(--primary-coral);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-hero .service-description {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 30px;
    line-height: 1.7;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    padding: 100px 20px 20px;
    background: var(--white);
}

.breadcrumb-nav {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--light-text);
}

.breadcrumb-nav a {
    color: var(--primary-coral);
    text-decoration: none;
}

.breadcrumb-nav a:hover {
    text-decoration: underline;
}

.service-content {
    padding: 60px 20px;
    background: var(--white);
}

.service-content-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.service-main {
    flex: 1;
}

.service-sidebar {
    background: var(--light-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.pricing-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 30px;
    box-shadow: 0 4px 15px var(--shadow);
    text-align: center;
}

.pricing-card h3 {
    font-family: var(--font-heading);
    color: var(--primary-brown);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.price {
    font-size: 2rem;
    color: var(--primary-coral);
    font-weight: bold;
    margin-bottom: 10px;
}

.price-duration {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.service-benefits {
    margin: 40px 0;
}

.service-benefits h2 {
    font-family: var(--font-heading);
    color: var(--primary-brown);
    font-size: 2rem;
    margin-bottom: 25px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: var(--white);
    box-shadow: 0 5px 15px var(--shadow);
    transform: translateY(-2px);
}

.benefit-icon {
    font-size: 1.8rem;
    color: var(--primary-coral);
    margin-top: 5px;
}

.benefit-text h4 {
    color: var(--primary-brown);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.benefit-text p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.service-details {
    margin: 40px 0;
}

.service-details h2 {
    font-family: var(--font-heading);
    color: var(--primary-brown);
    font-size: 2rem;
    margin-bottom: 25px;
}

.service-details h3 {
    font-family: var(--font-heading);
    color: var(--primary-coral);
    font-size: 1.4rem;
    margin: 30px 0 15px 0;
}

.service-details p {
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-details ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.service-details li {
    color: var(--light-text);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.service-details li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-coral);
    font-weight: bold;
}

.service-faq {
    background: var(--secondary-beige);
    padding: 60px 20px;
}

.service-faq .container {
    max-width: 800px;
}

.service-faq h2 {
    font-family: var(--font-heading);
    color: var(--primary-brown);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(139, 74, 59, 0.08);
}

.faq-question {
    background: var(--white);
    border: none;
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-brown);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-coral);
    transition: transform 0.3s ease;
    font-weight: 300;
    line-height: 1;
    display: inline-block;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--white);
}

.faq-answer.active {
    padding: 0 25px 25px;
    max-height: 200px;
}

.faq-answer p {
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
}

.service-cta {
    background: linear-gradient(135deg, var(--primary-coral) 0%, var(--primary-peach) 100%);
    padding: 60px 20px;
    text-align: center;
}

.service-cta h2 {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.service-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--white);
    color: var(--primary-brown);
    padding: 15px 30px;
    border: none;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    background: var(--light-bg);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    padding: 15px 30px;
    border: 2px solid var(--white);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary-brown);
    transform: translateY(-2px);
}

/* Service page responsive design */
@media (max-width: 1024px) {
    .service-content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-sidebar {
        position: static;
        order: -1;
    }
}

@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2.2rem;
    }
    
    .service-hero .service-subtitle {
        font-size: 1.1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-sidebar {
        padding: 25px;
    }
    
    .pricing-card {
        padding: 25px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-white,
    .btn-outline-white {
        width: 100%;
        max-width: 300px;
    }
}

/* Responsive adjustments for Square widget */
@media (max-width: 768px) {
    .square-booking-widget {
        margin-right: 0;
        margin-bottom: 30px;
        min-height: 400px;
    }
    
    .setup-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .setup-actions .btn-primary,
    .setup-actions .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .appointment-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .booking-form-container {
        padding: 20px;
    }
    
    .appointment-form input,
    .appointment-form select,
    .appointment-form textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 14px 12px; /* Larger touch targets */
    }
    
    .appointment-form button[type="submit"] {
        padding: 18px 30px; /* Larger button for mobile */
        font-size: 1.2rem;
    }
}

/* Blog Styles */
.blog-hero {
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--secondary-beige) 100%);
    text-align: center;
}

.blog-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-brown);
    margin-bottom: 20px;
}

.blog-hero-subtitle {
    font-size: 1.2rem;
    color: var(--primary-coral);
    margin-bottom: 15px;
    font-weight: 600;
}

.blog-hero-description {
    font-size: 1.1rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto;
}

.blog-posts {
    padding: 60px 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-card {
    background: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(244, 168, 124, 0.1);
}

.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow);
    background: var(--white);
}

.blog-category {
    background: var(--primary-coral);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin: 15px 0;
    line-height: 1.3;
}

.blog-card h2 a {
    color: var(--primary-brown);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card h2 a:hover {
    color: var(--primary-coral);
}

.blog-excerpt {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 15px;
}

.blog-author {
    font-weight: 600;
    color: var(--primary-brown);
}

.blog-read-more {
    color: var(--primary-coral);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: var(--primary-brown);
}

.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: var(--light-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(244, 168, 124, 0.1);
}

.sidebar-widget h3 {
    font-family: var(--font-heading);
    color: var(--primary-brown);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.category-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-coral);
}

.category-list a {
    color: var(--dark-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: var(--primary-coral);
}

.cta-widget {
    background: var(--secondary-beige) !important;
    text-align: center;
}

.cta-widget .btn-primary {
    margin: 15px 0;
    display: inline-block;
}

.contact-info {
    font-size: 0.9rem;
    margin-top: 15px;
}

/* Individual Blog Post Styles */
.blog-post {
    padding: 120px 0 60px;
    background: var(--white);
}

.blog-header {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    margin-bottom: 40px;
}

.breadcrumb {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--primary-coral);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.blog-post .blog-category {
    margin-bottom: 15px;
}

.blog-post h1 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-brown);
    line-height: 1.2;
    margin-bottom: 20px;
}

.blog-reading-time {
    color: var(--light-text);
    font-style: italic;
}

.blog-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-intro .lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--dark-text);
    margin-bottom: 30px;
    font-weight: 400;
}

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

.content-section h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-brown);
    margin-bottom: 20px;
}

.content-section h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-coral);
    margin-bottom: 15px;
    margin-top: 25px;
}

.content-section p {
    line-height: 1.7;
    color: var(--dark-text);
    margin-bottom: 15px;
}

.content-section ul, .content-section ol {
    margin: 15px 0 15px 20px;
    line-height: 1.7;
}

.content-section li {
    margin-bottom: 8px;
    color: var(--dark-text);
}

.benefit-item {
    background: var(--light-bg);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-peach);
}

.cta-section {
    background: linear-gradient(135deg, var(--secondary-beige) 0%, var(--light-bg) 100%);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    margin: 40px 0;
}

.cta-section h2 {
    font-family: var(--font-heading);
    color: var(--primary-brown);
    margin-bottom: 15px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
}

.faq-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--secondary-beige);
}

.faq-item {
    margin-bottom: 25px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: var(--border-radius);
}

.faq-item h3 {
    font-family: var(--font-heading);
    color: var(--primary-brown);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.author-widget {
    background: linear-gradient(135deg, var(--secondary-beige) 0%, var(--light-bg) 100%) !important;
}

.contact-quick {
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Blog Mobile Responsiveness */
@media (max-width: 768px) {
    .blog-grid,
    .blog-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-hero-content h1 {
        font-size: 2rem;
    }
    
    .blog-post h1 {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 5px;
    }
}

/* Calendar Booking Mobile Responsiveness */
@media (max-width: 768px) {
    .booking-steps {
        flex-direction: column;
        gap: var(--space-3);
        padding: var(--space-3);
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .step {
        justify-content: center;
    }
    
    .booking-step {
        padding: var(--space-4);
    }
    
    .service-options {
        gap: var(--space-2);
    }
    
    .service-option {
        flex-direction: column;
        text-align: center;
        gap: var(--space-2);
        padding: var(--space-3);
    }
    
    .calendar-header {
        padding: var(--space-3);
    }
    
    .calendar-nav {
        width: 36px;
        height: 36px;
        font-size: var(--font-size-base);
    }
    
    .calendar-title {
        font-size: var(--font-size-base);
    }
    
    .calendar-grid {
        padding: var(--space-2);
    }
    
    .day-header {
        font-size: var(--font-size-xs);
        padding: 4px;
    }
    
    .calendar-day {
        font-size: var(--font-size-sm);
    }
    
    .time-slots {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: var(--space-1);
    }
    
    .time-slot {
        padding: var(--space-1) var(--space-2);
        font-size: var(--font-size-sm);
    }
    
    .booking-summary {
        padding: var(--space-3);
    }
    
    .summary-details p {
        flex-direction: column;
        gap: 4px;
    }
    
    .step-navigation {
        flex-direction: column;
        gap: var(--space-2);
    }
    
    .step-navigation .btn-primary,
    .step-navigation .btn-secondary {
        width: 100%;
    }
}

/* Extra responsive adjustments for very small screens */
@media (max-width: 360px) {
    .calendar-widget {
        padding: var(--space-2);
        margin: 0 auto var(--space-3);
    }
    
    .calendar-day {
        min-height: 35px;
        font-size: 11px;
        padding: 2px;
    }
    
    .calendar-header-days > div {
        font-size: 9px;
        padding: 4px 2px;
        min-height: 24px;
        letter-spacing: 0;
    }
    
    .booking-calendar-widget {
        padding: var(--space-2);
        margin: var(--space-2) 0;
        border-radius: 12px;
    }
    
    .calendar-nav {
        padding: var(--space-2);
        margin-bottom: var(--space-3);
    }
    
    .nav-btn {
        width: 36px;
        height: 36px;
        font-size: var(--font-size-sm);
    }
    
    .current-month {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .calendar-booking-container {
        border-radius: 0;
        box-shadow: none;
    }
    
    .booking-step {
        padding: var(--space-3);
    }
    
    .service-option {
        padding: var(--space-2);
    }
    
    .service-price {
        font-size: var(--font-size-lg);
    }
    
    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .calendar-day {
        font-size: var(--font-size-xs);
    }
}

/* Enhanced Booking System Components */

/* Service Features and Popular Badge */
.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-1);
    margin-top: var(--space-2);
}
.feature-tag {
    background: linear-gradient(135deg, rgba(244, 168, 124, 0.15) 0%, rgba(240, 230, 211, 0.3) 100%);
    color: var(--primary-brown);
    padding: var(--space-1) var(--space-2);
    border-radius: 12px;
    font-size: var(--font-size-xs);
    font-weight: 600;
    border: 1px solid rgba(244, 168, 124, 0.2);
}

.popular-badge {
    position: absolute;
    top: -8px;
    right: var(--space-3);
    background: linear-gradient(135deg, #ff6b35 0%, #e63946 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: var(--font-size-xs);
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Enhanced Service Option Layout */
.service-info {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    flex: 1;
}
.service-icon {
    font-size: var(--font-size-2xl);
    min-width: 50px;
    text-align: center;
}
.service-details h4 {
    font-family: var(--font-heading);
    color: var(--primary-brown);
    margin-bottom: var(--space-1);
}
.service-details p {
    color: var(--neutral-medium);
    font-size: var(--font-size-sm);
    line-height: 1.4;
}
.service-price {
    text-align: center;
    min-width: 80px;
}
.service-price .price {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-brown);
    display: block;
}
.service-price small {
    color: var(--neutral-medium);
    font-size: var(--font-size-xs);
}

/* Calendar Time Container */
.calendar-time-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: var(--space-6);
    margin-bottom: var(--space-6);
}

/* Calendar Legend */
.calendar-legend {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    padding: var(--space-3);
    border-top: 1px solid rgba(244, 168, 124, 0.1);
    background: rgba(240, 230, 211, 0.3);
}
.legend-item {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    font-size: var(--font-size-xs);
    color: var(--neutral-medium);
}
.legend-color {
    width: 12px;
    height: 12px;
    border-radius: 2px;
}
.legend-color.available {
    background: var(--primary-peach);
}
.legend-color.limited {
    background: #ffa726;
}
.legend-color.unavailable {
    background: var(--neutral-light);
}

/* Time Header */
.time-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--space-4);
}
.time-header h4 {
    color: var(--primary-brown);
    margin: 0;
}
.business-hours {
    text-align: right;
    font-size: var(--font-size-xs);
    color: var(--neutral-medium);
    line-height: 1.3;
}
.business-hours p {
    margin: 0;
}

/* Enhanced Booking Summary */
.booking-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--space-6);
    align-items: start;
}
.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-2) 0;
    border-bottom: 1px solid rgba(244, 168, 124, 0.1);
}
.summary-item:last-child {
    border-bottom: none;
}
.summary-item.total {
    margin-top: var(--space-2);
    padding-top: var(--space-3);
    border-top: 2px solid var(--primary-peach);
    font-weight: 700;
    font-size: var(--font-size-lg);
    color: var(--primary-brown);
}
.summary-item .label {
    color: var(--neutral-medium);
    font-size: var(--font-size-sm);
}
.summary-item .value {
    color: var(--primary-brown);
    font-weight: 600;
}

/* Payment Info */
.payment-info {
    margin-top: var(--space-4);
    padding: var(--space-3);
    background: rgba(244, 168, 124, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(244, 168, 124, 0.1);
}
.payment-info p {
    margin: var(--space-1) 0;
    font-size: var(--font-size-sm);
    color: var(--neutral-medium);
}

/* Enhanced Form Styling */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}
.form-group.full-width {
    grid-column: 1 / -1;
}
.form-group.checkbox-group {
    display: flex;
    align-items: center;
}

/* Custom Checkbox Styling */
.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: var(--font-size-sm);
    line-height: 1.4;
}
.checkbox-label input[type="checkbox"] {
    display: none;
}
.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(244, 168, 124, 0.3);
    border-radius: 4px;
    margin-right: var(--space-2);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    transition: all var(--transition-fast);
}
.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--gradient-primary);
    border-color: var(--primary-peach);
}
.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: var(--font-size-sm);
    font-weight: bold;
}

/* Required Field Styling */
.required {
    color: #e63946;
    font-weight: bold;
}

/* Error Messages */
.error-message {
    color: #e63946;
    font-size: var(--font-size-xs);
    margin-top: var(--space-1);
    display: none;
}
.error-message.show {
    display: block;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Help Text */
.help-text {
    margin-top: var(--space-1);
}
.help-text small {
    color: var(--neutral-light);
    font-size: var(--font-size-xs);
    font-style: italic;
}

/* Privacy Consent */
.privacy-consent {
    margin: var(--space-4) 0;
    padding: var(--space-3);
    background: rgba(244, 168, 124, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(244, 168, 124, 0.1);
}
.privacy-link {
    color: var(--primary-coral);
    text-decoration: underline;
}
.privacy-link:hover {
    color: var(--primary-brown);
}

/* Enhanced Button Styling */
.btn-primary.submit-btn {
    position: relative;
    overflow: hidden;
}
.btn-loader {
    display: none;
    align-items: center;
    gap: var(--space-2);
}
.btn-loader .spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success Step */
.step-success {
    display: none;
    padding: var(--space-8);
    text-align: center;
}
.success-content {
    max-width: 500px;
    margin: 0 auto;
}
.success-icon {
    margin-bottom: var(--space-4);
    animation: bounceIn 0.8s ease;
}
.success-content h3 {
    font-family: var(--font-heading);
    color: var(--primary-brown);
    margin-bottom: var(--space-3);
}
.success-content p {
    color: var(--neutral-medium);
    margin-bottom: var(--space-5);
    line-height: 1.6;
}

/* Next Steps */
.next-steps {
    background: var(--light-bg);
    padding: var(--space-4);
    border-radius: var(--border-radius);
    margin-bottom: var(--space-5);
    text-align: left;
}
.next-steps h4 {
    color: var(--primary-brown);
    margin-bottom: var(--space-3);
}
.next-steps ul {
    list-style: none;
    padding: 0;
}
.next-steps li {
    color: var(--neutral-medium);
    margin-bottom: var(--space-2);
    padding-left: var(--space-4);
    position: relative;
}
.next-steps li::before {
    content: '•';
    color: var(--primary-coral);
    font-weight: bold;
    position: absolute;
    left: var(--space-2);
}

/* Contact Options */
.contact-options {
    display: flex;
    gap: var(--space-3);
    justify-content: center;
    margin-top: var(--space-4);
}
.contact-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-sm);
}
.contact-link:hover {
    color: var(--primary-coral);
}

/* Square Appointments Integration Styles */
.square-appointments-embed {
    position: relative;
    min-height: 400px;
}

/* Booking Portal Styles */
.booking-portal {
    background: linear-gradient(135deg, var(--white) 0%, #fdf8f5 100%);
    border: 1px solid var(--neutral-200);
    border-radius: var(--border-radius-xl);
    padding: var(--space-8);
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.booking-portal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.booking-portal-content {
    max-width: 500px;
    margin: 0 auto;
}

.booking-icon {
    font-size: 3rem;
    margin-bottom: var(--space-4);
    display: block;
}

.booking-portal h3 {
    color: var(--primary-brown);
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
    font-family: var(--font-heading);
}

.booking-portal > p {
    color: var(--neutral-600);
    font-size: var(--font-size-base);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.booking-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3);
    margin-bottom: var(--space-6);
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--font-size-sm);
    color: var(--neutral-700);
}

.feature-icon {
    color: var(--primary-coral);
    font-weight: 600;
    font-size: 1.1em;
}

.booking-buttons {
    text-align: center;
}

.booking-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 280px;
    font-weight: 600;
    font-size: var(--font-size-lg);
    padding: var(--space-4) var(--space-6);
    margin-bottom: var(--space-3);
    transition: all var(--transition-normal);
    text-decoration: none;
}

.booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(244, 168, 124, 0.3);
}

.booking-note {
    margin: 0;
    color: var(--neutral-500);
    font-size: var(--font-size-xs);
}

.booking-note small {
    opacity: 0.8;
}

/* Custom Booking Calendar Styles */
.booking-calendar-widget {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    position: relative;
    margin: 0;
    backdrop-filter: none;
    max-width: 100%;
    width: 100%;
    overflow: visible;
}


.calendar-header {
    text-align: center;
    margin-bottom: var(--space-6);
    padding: var(--space-4) 0;
}

.calendar-header h3 {
    color: var(--primary-brown);
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-3);
    font-family: var(--font-heading);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(139, 74, 59, 0.1);
    letter-spacing: -0.5px;
}

.calendar-header p {
    color: var(--neutral-600);
    font-size: var(--font-size-base);
}

.booking-step {
    display: none;
    margin-bottom: var(--space-6);
}

.booking-step.active {
    display: block;
}

.booking-step h4 {
    color: var(--primary-brown);
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-5);
    font-weight: 700;
    text-align: center;
    padding: var(--space-3) 0;
    border-bottom: 2px solid rgba(244, 168, 124, 0.15);
    font-family: var(--font-heading);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-3);
    margin-bottom: var(--space-6);
}

.service-option {
    background: linear-gradient(135deg, var(--white) 0%, rgba(244, 168, 124, 0.02) 100%);
    border: 2px solid rgba(244, 168, 124, 0.2);
    border-radius: var(--border-radius-xl);
    padding: var(--space-5);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(244, 168, 124, 0.1);
    position: relative;
    overflow: hidden;
}

.service-option:hover {
    border-color: var(--primary-coral);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(244, 168, 124, 0.2), 0 6px 16px rgba(139, 74, 59, 0.1);
    background: linear-gradient(135deg, var(--white) 0%, rgba(244, 168, 124, 0.05) 100%);
}

.service-option.selected {
    border-color: var(--primary-brown);
    background: linear-gradient(135deg, var(--white) 0%, rgba(244, 168, 124, 0.08) 100%);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(244, 168, 124, 0.25), 0 4px 12px rgba(139, 74, 59, 0.15);
    position: relative;
}

.service-option.selected::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-coral) 0%, var(--primary-brown) 100%);
    border-radius: var(--border-radius-xl) var(--border-radius-xl) 0 0;
}

.service-name {
    font-weight: 600;
    color: var(--primary-brown);
    margin-bottom: var(--space-1);
}

.service-duration {
    color: var(--neutral-600);
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-2);
}

.service-price {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-coral);
    text-shadow: 0 1px 2px rgba(244, 168, 124, 0.2);
}

/* Calendar Widget - Enhanced Layout */
.calendar-widget {
    max-width: 100%;
    width: 100%;
    margin: 0 auto var(--space-8);
    background: linear-gradient(135deg, var(--white) 0%, rgba(250, 247, 245, 0.8) 100%);
    border-radius: 20px;
    padding: var(--space-8);
    box-shadow: 0 16px 64px rgba(139, 74, 59, 0.15), 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(244, 168, 124, 0.2);
    position: relative;
    overflow: visible;
}

.calendar-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-peach) 0%, var(--primary-coral) 50%, var(--primary-brown) 100%);
    opacity: 0.8;
}

.calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-8);
    padding: var(--space-5);
    background: linear-gradient(135deg, rgba(244, 168, 124, 0.05) 0%, rgba(240, 230, 211, 0.3) 100%);
    border-radius: var(--border-radius-xl);
    border: 1px solid rgba(244, 168, 124, 0.15);
    backdrop-filter: blur(10px);
}

.nav-btn {
    background: linear-gradient(135deg, var(--primary-coral) 0%, var(--primary-brown) 100%);
    color: var(--white);
    border: none;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    font-size: var(--font-size-xl);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(244, 168, 124, 0.4), 0 2px 8px rgba(139, 74, 59, 0.2);
    position: relative;
    overflow: hidden;
}

.nav-btn:hover {
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--primary-coral) 100%);
    transform: scale(1.15) translateY(-2px);
    box-shadow: 0 8px 28px rgba(244, 168, 124, 0.5), 0 4px 16px rgba(139, 74, 59, 0.3);
}

.nav-btn:active {
    transform: scale(1.05) translateY(0);
    transition: transform 0.1s;
}

.current-month {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-brown);
    text-align: center;
    flex: 1;
    font-family: var(--font-heading);
    text-shadow: 0 2px 4px rgba(139, 74, 59, 0.1);
    letter-spacing: -0.5px;
    padding: 0 var(--space-4);
}

.calendar-grid {
    border: 2px solid rgba(244, 168, 124, 0.2);
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 8px 32px rgba(139, 74, 59, 0.08), 0 2px 12px rgba(244, 168, 124, 0.15);
    margin-top: var(--space-2);
    width: 100%;
    min-width: auto;
}

.calendar-header-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: linear-gradient(135deg, var(--primary-brown) 0%, var(--primary-coral) 100%);
    color: var(--white);
    width: 100%;
    box-sizing: border-box;
}

.calendar-header-days > div {
    padding: var(--space-2);
    text-align: center;
    font-weight: 700;
    font-size: var(--font-size-sm);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-header-days > div:last-child {
    border-right: none;
}

.calendar-days {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
    grid-template-rows: repeat(6, 1fr);
    background: var(--neutral-100);
    gap: 2px;
    padding: 2px;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
    /* CRITICAL: Ensure single unified grid layout - all 42 days in one continuous grid */
    /* Force 6 rows of 7 columns = 42 days total in single container */
    grid-auto-rows: minmax(65px, auto);
    /* Prevent any flex wrapping or breaking */
    flex-wrap: nowrap;
    /* Visual confirmation that this is one unified container */
    border: 2px solid rgba(244, 168, 124, 0.3);
    border-radius: 8px;
}

.calendar-day {
    padding: var(--space-2);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-base);
    font-weight: 600;
    position: relative;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid transparent;
    aspect-ratio: 1;
    /* CRITICAL: Ensure grid items behave correctly */
    float: none !important;
    flex: none !important;
    width: auto;
    height: auto;
}

.calendar-day:nth-child(7n) {
    border-right: none;
}

.calendar-day:hover:not(.disabled):not(.available) {
    background: var(--neutral-50);
    transform: translateY(-1px);
    border-color: rgba(244, 168, 124, 0.3);
}

.calendar-day.available {
    color: var(--primary-brown);
    background: linear-gradient(135deg, var(--white) 0%, rgba(244, 168, 124, 0.02) 100%);
    cursor: pointer;
    border-color: rgba(244, 168, 124, 0.2);
    box-shadow: 0 2px 8px rgba(244, 168, 124, 0.1);
}

.calendar-day.available:hover {
    background: linear-gradient(135deg, var(--primary-coral) 0%, var(--primary-brown) 100%);
    color: var(--white);
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 8px 24px rgba(244, 168, 124, 0.4), 0 4px 12px rgba(139, 74, 59, 0.2);
    border-color: var(--primary-coral);
}

.calendar-day.selected {
    background: linear-gradient(135deg, var(--primary-coral) 0%, var(--primary-brown) 100%) !important;
    color: var(--white) !important;
    font-weight: 700;
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(244, 168, 124, 0.5), 0 4px 16px rgba(139, 74, 59, 0.3);
    border-color: var(--primary-brown) !important;
    z-index: 2;
}

.calendar-day.disabled {
    color: var(--neutral-300);
    cursor: not-allowed;
    background: var(--neutral-25);
}

.calendar-day.other-month {
    color: var(--neutral-300);
    background: var(--neutral-25);
}

/* Enhanced calendar day states */
.calendar-day.past-date {
    background: var(--neutral-25);
    color: var(--neutral-300);
    position: relative;
}

.calendar-day.past-date .date-number {
    opacity: 0.5;
}

.calendar-day.past-date .x-mark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--neutral-400);
    font-size: var(--font-size-lg);
    font-weight: bold;
}

.calendar-day.weekend {
    background: var(--neutral-50);
    color: var(--neutral-500);
    flex-direction: column;
    gap: 2px;
}

.calendar-day.weekend .date-number {
    font-size: var(--font-size-xs);
}

.calendar-day.weekend .closed-text {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

.calendar-day.fully-booked {
    background: var(--neutral-100);
    color: var(--neutral-400);
    position: relative;
}

.calendar-day.fully-booked::after {
    content: 'Full';
    position: absolute;
    bottom: 2px;
    right: 2px;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.6;
}

.calendar-day.available {
    position: relative;
}

.calendar-day.available .limited-availability {
    position: absolute;
    top: 2px;
    right: 2px;
    color: var(--primary-coral);
    font-size: 8px;
}

.date-number {
    display: block;
}

/* Time slots enhancements */
.time-slot.available-time {
    border: 2px solid var(--primary-coral);
    background: var(--white);
    position: relative;
}

.time-slot.available-time:hover {
    background: var(--primary-coral);
    color: var(--white);
    transform: scale(1.02);
}

.no-slots-message {
    text-align: center;
    padding: var(--space-6);
    background: var(--neutral-25);
    border-radius: var(--border-radius-md);
    color: var(--neutral-600);
}

.no-slots-message p:first-child {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-2);
}

.no-slots-message a {
    color: var(--primary-coral);
    text-decoration: none;
    font-weight: 600;
}

.no-slots-message a:hover {
    text-decoration: underline;
}

.booking-info-text {
    text-align: center;
    margin-top: var(--space-3);
    padding: var(--space-2);
    background: var(--neutral-25);
    border-radius: var(--border-radius-sm);
    color: var(--neutral-600);
}

/* Time Slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: var(--space-3);
    max-width: 650px;
    margin: 0 auto;
    padding: var(--space-4) 0;
}

.time-slot {
    background: linear-gradient(135deg, var(--white) 0%, rgba(244, 168, 124, 0.02) 100%);
    border: 2px solid rgba(244, 168, 124, 0.2);
    border-radius: var(--border-radius-lg);
    padding: var(--space-4) var(--space-3);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: var(--font-size-base);
    box-shadow: 0 2px 8px rgba(244, 168, 124, 0.1);
    position: relative;
    overflow: hidden;
}

.time-slot:hover {
    border-color: var(--primary-coral);
    background: linear-gradient(135deg, var(--primary-coral) 0%, var(--primary-brown) 100%);
    color: var(--white);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(244, 168, 124, 0.3), 0 4px 12px rgba(139, 74, 59, 0.2);
}

.time-slot.selected {
    background: linear-gradient(135deg, var(--primary-coral) 0%, var(--primary-brown) 100%);
    border-color: var(--primary-brown);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(244, 168, 124, 0.4), 0 4px 16px rgba(139, 74, 59, 0.25);
    z-index: 2;
}

/* Booking Summary */
.booking-summary {
    background: linear-gradient(135deg, rgba(244, 168, 124, 0.05) 0%, rgba(240, 230, 211, 0.3) 100%);
    border: 1px solid rgba(244, 168, 124, 0.2);
    border-radius: var(--border-radius-xl);
    padding: var(--space-6);
    margin-bottom: var(--space-6);
    box-shadow: 0 4px 16px rgba(244, 168, 124, 0.15);
    position: relative;
    backdrop-filter: blur(5px);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-2);
}

.summary-item.total {
    border-top: 2px solid rgba(244, 168, 124, 0.3);
    padding-top: var(--space-3);
    margin-top: var(--space-3);
    font-weight: 700;
    font-size: var(--font-size-xl);
    color: var(--primary-brown);
}

.summary-item .label {
    color: var(--neutral-600);
}

.summary-item .value {
    color: var(--primary-brown);
    font-weight: 500;
}

/* Step Progress */
.step-progress {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.step-indicator {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--neutral-200);
    color: var(--neutral-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all var(--transition-normal);
}

.step-indicator.active {
    background: var(--primary-coral);
    color: var(--white);
}

.step-indicator.completed {
    background: var(--primary-brown);
    color: var(--white);
}

/* Booking Actions */
.booking-actions {
    display: flex;
    gap: var(--space-3);
    justify-content: center;
    margin-top: var(--space-4);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .booking-calendar-widget {
        padding: var(--space-4);
        border-radius: 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .calendar-days {
        /* Force single unified grid even on mobile */
        display: grid !important;
        grid-template-columns: repeat(7, 1fr) !important;
        grid-template-rows: repeat(6, 1fr);
        gap: 1px;
        padding: 1px;
    }
    
    .calendar-day {
        min-height: 40px;
        padding: var(--space-2);
        /* Ensure mobile calendar stays as unified grid */
        display: flex !important;
        align-items: center;
        justify-content: center;
        float: none !important;
        flex: none !important;
    }
    
    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-actions {
        flex-direction: column;
    }
}

/* About Section Redesign - Override existing styles */
.about-header {
    text-align: center;
    margin-bottom: var(--space-10);
}

.about-header h2 {
    font-family: var(--font-heading);
    font-size: var(--font-size-3xl);
    color: var(--primary-brown);
    margin-bottom: var(--space-4);
}

.about-intro {
    font-size: var(--font-size-lg) !important;
    color: var(--neutral-600) !important;
    max-width: 600px;
    margin: 0 auto !important;
    line-height: 1.6;
    font-weight: 400 !important;
}

.about-content {
    display: grid !important;
    grid-template-columns: 2fr 1fr !important;
    gap: var(--space-8) !important;
    align-items: start !important;
    min-height: auto !important;
}

.about-image {
    position: sticky;
    top: 100px;
}

.image-container {
    position: relative;
    border-radius: var(--border-radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(139, 74, 59, 0.15);
}

.therapist-image {
    width: 100%;
    height: 650px;
    object-fit: cover;
    display: block;
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.experience-number {
    font-size: var(--font-size-xl);
    font-weight: 700;
    line-height: 1;
    margin-bottom: var(--space-1);
}

.experience-text {
    font-size: var(--font-size-xs);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text {
    display: flex !important;
    flex-direction: column;
    gap: var(--space-8);
}

.about-story p {
    font-size: var(--font-size-lg);
    color: var(--neutral-700);
    line-height: 1.7;
    margin: 0;
}

.credentials-section h3,
.why-different h3 {
    color: var(--primary-brown);
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-4);
    font-family: var(--font-heading);
    font-weight: 600;
}

.credentials-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-4);
    background: var(--white);
    border-radius: var(--border-radius-lg);
    border-left: 4px solid var(--primary-coral);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-normal);
}

.credential-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.credential-icon {
    font-size: var(--font-size-lg);
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.credential-text strong {
    display: block;
    color: var(--primary-brown);
    font-size: var(--font-size-base);
    margin-bottom: var(--space-1);
}

.credential-text small {
    color: var(--neutral-600);
    font-size: var(--font-size-sm);
    line-height: 1.4;
}

.difference-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.difference-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-4);
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-normal);
}

.difference-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.diff-icon {
    font-size: var(--font-size-xl);
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.difference-item h4 {
    color: var(--primary-brown);
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.difference-item p {
    color: var(--neutral-600);
    font-size: var(--font-size-sm);
    line-height: 1.5;
    margin: 0;
}

/* Mobile responsiveness for new about section */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr !important;
        gap: var(--space-8) !important;
    }
    
    .about-image {
        position: relative !important;
        top: auto !important;
    }
    
    .difference-grid {
        grid-template-columns: 1fr;
    }
    
    .therapist-image {
        height: 300px;
    }
    
    /* Booking calendar mobile fixes */
    .calendar-widget {
        max-width: 100%;
        padding: var(--space-4);
        margin: 0 auto var(--space-6);
    }
    
    .calendar-day {
        min-height: 50px;
        font-size: var(--font-size-sm);
        padding: var(--space-1);
    }
    
    .calendar-header-days > div {
        padding: var(--space-1);
        font-size: var(--font-size-xs);
        min-height: 32px;
    }
    
    .step-progress {
        gap: var(--space-2);
    }
    
    .step-indicator {
        width: 32px;
        height: 32px;
        font-size: var(--font-size-sm);
    }
}
.square-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--space-8);
    color: var(--neutral-medium);
}
.loading-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid rgba(244, 168, 124, 0.2);
    border-top: 3px solid var(--primary-peach);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: var(--space-3);
}

/* Fallback Options */
.booking-fallback {
    margin-top: var(--space-6);
    padding: var(--space-6);
    background: linear-gradient(135deg, rgba(244, 168, 124, 0.05) 0%, rgba(240, 230, 211, 0.1) 100%);
    border-radius: var(--border-radius-lg);
    text-align: center;
}
.fallback-buttons {
    display: flex;
    gap: var(--space-3);
    justify-content: center;
    margin: var(--space-4) 0;
}
.fallback-buttons .btn-primary,
.fallback-buttons .btn-secondary {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    min-width: 150px;
}
.fallback-text {
    color: var(--neutral-medium);
    font-size: var(--font-size-sm);
    max-width: 400px;
    margin: 0 auto;
}

/* Responsive Enhancements */
@media (max-width: 1024px) {
    .calendar-time-container {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    .booking-content {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    .time-slots-container {
        order: -1;
    }
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3);
    }
    .contact-options {
        flex-direction: column;
        align-items: center;
        gap: var(--space-2);
    }
    .fallback-buttons {
        flex-direction: column;
        align-items: center;
    }
    .service-info {
        flex-direction: column;
        text-align: center;
        gap: var(--space-2);
    }
    .service-features {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .calendar-widget {
        max-width: 100%;
        margin: 0 auto var(--space-6);
        padding: var(--space-6);
    }
    
    .calendar-grid {
        min-width: auto;
    }
    
    .calendar-day {
        min-height: 55px;
        min-width: auto;
        font-size: var(--font-size-base);
        padding: var(--space-2);
    }
    
    .calendar-header-days > div {
        font-size: var(--font-size-sm);
        padding: var(--space-2);
    }
    
    .nav-btn {
        width: 48px;
        height: 48px;
    }
    
    .current-month {
        font-size: 1.8rem;
    }
    
    .booking-calendar-widget {
        margin: var(--space-4) 0;
        padding: var(--space-4);
        max-width: 100%;
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .step-header h3 {
        font-size: var(--font-size-xl);
    }
    .step-header p {
        font-size: var(--font-size-base);
    }
    .calendar-legend {
        flex-wrap: wrap;
        gap: var(--space-2);
    }
    .time-header {
        flex-direction: column;
        gap: var(--space-2);
        text-align: center;
    }
    
    .calendar-widget {
        padding: var(--space-3);
        margin: 0 auto var(--space-4);
    }
    
    .calendar-day {
        min-height: 45px;
        min-width: auto;
        font-size: var(--font-size-xs);
        padding: var(--space-1);
    }
    
    .calendar-header-days > div {
        font-size: 10px;
        padding: var(--space-1);
        min-height: 28px;
        letter-spacing: 0.5px;
    }
    
    .calendar-nav {
        padding: var(--space-3);
        margin-bottom: var(--space-4);
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: var(--font-size-base);
    }
    
    .current-month {
        font-size: 1.4rem;
    }
    
    .nav-btn {
        width: 44px;
        height: 44px;
        font-size: var(--font-size-lg);
    }
    
    .current-month {
        font-size: 1.5rem;
        padding: 0 var(--space-2);
    }
}

/* Fixed header height with bigger logos */
header div[style*="padding: 15px 20px"] {
    padding: 5px 20px !important;
    height: 90px !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    box-sizing: border-box !important;
}

.header-icon {
    height: 110px !important;
    width: 110px !important;
    object-fit: cover !important;
    object-position: center !important;
}

.header-logo {
    height: 50px !important;
    width: 180px !important;
    object-fit: cover !important;
    object-position: center !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .header-icon {
        height: 60px !important;
        max-height: none !important;
    }
    
    .header-logo {
        height: 50px !important;
        max-height: none !important;
    }
}