/* =====================================================
   SKINCARE BY OLYA — PREMIUM STYLESHEET
   ===================================================== */

:root {
    /* Brand Palette */
    --sage: #6B7E60;
    --sage-dark: #56634e;
    --sage-light: #C3E4BA;
    --sage-pale: #eaf4e6;
    --cream: #F0F0E7;
    --cream-dark: #e4e4d8;
    --sky: #E4EDF6;
    --sky-dark: #c5d6e8;
    --mud: #6A6760;
    --blue: #6F859D;
    --blue-dark: #5a6e85;
    
    /* Neutrals */
    --dark: #2a2e27;
    --dark-soft: #3d4138;
    --gray: #7a7a72;
    --muted: #9a9a92;
    --line: #eaeae5;
    --white: #ffffff;
    --black: #1a1a1a;

    /* Typography */
    --font-head: 'Cormorant Garamond', 'Times New Roman', serif;
    --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --space-xs: 1rem;
    --space-sm: 1.5rem;
    --space-md: 3rem;
    --space-lg: 5rem;
    --space-xl: 8rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.03);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.06);
    --shadow-lg: 0 25px 50px -12px rgba(0,0,0,0.15);
    --shadow-inner: inset 0 2px 4px rgba(0,0,0,0.02);
}

/* =====================================================
   GLOBAL RESETS & BASE
   ===================================================== */

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--dark);
    background: var(--white);
    line-height: 1.75;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: var(--font-head);
    font-weight: 500;
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: var(--dark);
}

p {
    margin-bottom: 1.25rem;
}

a {
    color: var(--sage);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--sage-dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

::selection {
    background: var(--sage-light);
    color: var(--dark);
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--sage); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--sage-dark); }

/* =====================================================
   LAYOUT & UTILITIES
   ===================================================== */

.container {
    max-width: 1280px;
}

.py-6 { padding-top: 5rem; padding-bottom: 5rem; }
.py-7 { padding-top: 7rem; padding-bottom: 7rem; }
.mt-6 { margin-top: 5rem; }
.mb-6 { margin-bottom: 5rem; }

.bg-cream { background-color: var(--cream) !important; }
.bg-sage { background-color: var(--sage) !important; }
.bg-sage-light { background-color: var(--sage-light) !important; }
.bg-sage-pale { background-color: var(--sage-pale) !important; }
.bg-sky { background-color: var(--sky) !important; }

.text-sage { color: var(--sage) !important; }
.text-sage-dark { color: var(--sage-dark) !important; }
.text-mud { color: var(--mud) !important; }
.text-muted { color: var(--gray) !important; }

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--sage);
    margin-bottom: 1rem;
    position: relative;
}

.eyebrow::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 1px;
    background: var(--sage);
    vertical-align: middle;
    margin-left: 12px;
    opacity: 0.5;
}

.text-white-50 { color: rgba(255,255,255,0.75) !important; }

.btn {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 1rem 2.2rem;
    border-radius: 0;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-pill { border-radius: 50px; }

.btn-primary {
    background: var(--sage);
    border: 1px solid var(--sage);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--sage-dark);
    border-color: var(--sage-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(107, 126, 96, 0.25);
}

.btn-outline-primary {
    background: transparent;
    border: 1px solid var(--sage);
    color: var(--sage);
}

.btn-outline-primary:hover {
    background: var(--sage);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-light {
    background: var(--white);
    color: var(--sage);
    border: 1px solid var(--white);
}

.btn-light:hover {
    background: var(--cream);
    color: var(--sage-dark);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.75);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--sage);
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--sage);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0;
    border-bottom: 1px solid transparent;
    transition: all var(--transition-fast);
}

.btn-link:hover {
    color: var(--sage-dark);
    border-bottom-color: var(--sage-dark);
    gap: 1rem;
}

/* =====================================================
   ANIMATIONS (IntersectionObserver driven)
   ===================================================== */

[data-aos] {
    opacity: 0;
    transition: opacity 1s ease, transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

[data-aos="fade-up"] { transform: translateY(40px); }
[data-aos="fade-down"] { transform: translateY(-40px); }
[data-aos="fade-left"] { transform: translateX(-40px); }
[data-aos="fade-right"] { transform: translateX(40px); }
[data-aos="zoom-in"] { transform: scale(0.9); }

[data-aos].aos-animate {
    opacity: 1 !important;
    transform: translate(0,0) scale(1) !important;
}

/* Keyframe Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-soft {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes shimmer {
    0% { background-position: -500px 0; }
    100% { background-position: 500px 0; }
}

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    transition: all var(--transition-base);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border-bottom-color: var(--line);
}

.navbar {
    padding: 1.5rem 0;
    transition: padding var(--transition-base);
}

.site-header.scrolled .navbar {
    padding: 1rem 0;
}

.navbar-brand {
    font-family: var(--font-head);
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--sage);
    text-transform: none;
    line-height: 1;
}

.navbar-brand:hover {
    color: var(--sage-dark);
}

.navbar-collapse {
    flex-grow: 0;
}

.navbar-nav {
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    color: var(--dark-soft);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--sage);
    transition: all var(--transition-base);
    transform: translateX(-50%);
}

.nav-link:hover, .nav-link.active {
    color: var(--sage);
}

.nav-link.active::after, .nav-link:hover::after {
    width: 20px;
}

.nav-item .btn {
    padding: 0.75rem 1.75rem;
    font-size: 0.75rem;
}

.navbar-toggler {
    border: 1px solid var(--line);
    padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(107, 126, 96, 0.15);
}

/* =====================================================
   HERO SECTION (Home)
   ===================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?w=2000&q=80') center/cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 6rem 1rem 2rem;
    max-width: 1100px;
}

.hero-content .eyebrow {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1.5rem;
    animation: fadeUp 1s ease 0.2s both;
}

.hero-content .eyebrow::after { background: rgba(255,255,255,0.9); }

.hero-heading {
    font-family: var(--font-head);
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 500;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-content .lead {
    font-size: 1.15rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    animation: fadeUp 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--white);
    animation: float 3s ease infinite;
    opacity: 0.7;
}

/* =====================================================
   PAGE HERO (Inner Pages)
   ===================================================== */

.page-hero {
    padding: 9rem 0 4rem;
    margin-bottom: 2rem;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    animation: fadeUp 1s ease both;
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeUp 1.2s ease 0.2s both;
}

.breadcrumb-wrap {
    padding: 7rem 0 2rem;
    background: var(--cream);
}

.breadcrumb {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
}

.breadcrumb a {
    color: var(--sage);
}

.breadcrumb-item.active {
    color: var(--gray);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "·";
    color: var(--gray);
}

/* =====================================================
   HOME: ABOUT SNIPPET
   ===================================================== */

.about-snippet {
    padding: 6rem 0;
}

.image-frame {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--sage);
    z-index: 0;
    transition: all var(--transition-slow);
}

.image-frame:hover::before {
    top: 0;
    left: 0;
}

.image-frame img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
    transition: transform var(--transition-slow);
}

.image-frame:hover img {
    transform: scale(1.03);
}

.quote-text {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--sage);
    line-height: 1.4;
    padding-left: 1.5rem;
    border-left: 3px solid var(--sage-light);
}

/* =====================================================
   HOME: SERVICES GRID
   ===================================================== */

.services-section {
    background: var(--cream);
    padding: 6rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: var(--dark);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.3));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover .service-card-img::after {
    opacity: 1;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card-img img {
    transform: scale(1.08);
}

.service-card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-body h5 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.service-card-body p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

/* =====================================================
   HOME: PERSONALISED APPROACH
   ===================================================== */

.personalised-section {
    padding: 6rem 0;
    background: var(--white);
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.check-list i {
    color: var(--sage);
    font-size: 1.25rem;
}

/* =====================================================
   HOME: GENEO FEATURE
   ===================================================== */

.feature-section {
    padding: 6rem 0;
    background: var(--sage-pale);
    position: relative;
    overflow: hidden;
}

.feature-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--sage-light);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(80px);
}

/* =====================================================
   HOME: HYGIENE & SAFETY
   ===================================================== */

.hygiene-section {
    padding: 6rem 0;
}

.hygiene-card {
    padding: 2.5rem 2rem;
    background: var(--cream);
    border-radius: 4px;
    height: 100%;
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.hygiene-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.hygiene-card i {
    font-size: 2.5rem;
    color: var(--sage);
    margin-bottom: 1rem;
}

.hygiene-card h6 {
    font-size: 1.1rem;
    font-weight: 500;
}

/* =====================================================
   HOME: GALLERY RESULTS
   ===================================================== */

.gallery-preview {
    padding: 6rem 0;
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    aspect-ratio: 1/1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--sage);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* =====================================================
   HOME: TESTIMONIALS
   ===================================================== */

.testimonials-section {
    padding: 6rem 0;
    background: var(--white);
}

.testimonial-card {
    background: var(--cream);
    padding: 2.5rem;
    height: 100%;
    border-radius: 4px;
    position: relative;
}

.testimonial-card::before {
    content: '“';
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: var(--font-head);
    font-size: 6rem;
    color: var(--sage-light);
    line-height: 1;
}

.testimonial-stars {
    color: var(--sage);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.testimonial-content {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--dark-soft);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
}

/* =====================================================
   CTA SECTION (Global)
   ===================================================== */

.cta-section {
    padding: 5rem 0;
    background: var(--sage);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: var(--sage-dark);
    border-radius: 50%;
    opacity: 0.3;
}

.cta-section h2 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: rgba(255,255,255,0.9);
    position: relative;
    z-index: 1;
}

.cta-section .btn {
    position: relative;
    z-index: 1;
}

/* =====================================================
   ABOUT PAGE SPECIFICS
   ===================================================== */

.about-hero-img {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--cream);
    border-radius: 4px;
    transition: transform var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--sage);
    margin-bottom: 1rem;
}

.stat-card h6 {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

/* =====================================================
   SERVICES PAGE
   ===================================================== */

.service-list .accordion-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 4px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.service-list .accordion-button {
    padding: 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark);
    background: var(--white);
}

.service-list .accordion-button:not(.collapsed) {
    color: var(--sage);
    background: var(--sage-pale);
    box-shadow: none;
}

.service-list .accordion-button:focus {
    box-shadow: none;
    border-color: var(--sage);
}

.service-list .accordion-body {
    padding: 1.5rem;
    color: var(--gray);
}

/* =====================================================
   SINGLE SERVICE PAGE
   ===================================================== */

.service-single-layout {
    padding: 4rem 0;
}

.service-single-img {
    border-radius: 4px;
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.service-sidebar {
    position: sticky;
    top: 100px;
}

.service-sidebar-card {
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.service-sidebar-card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.service-sidebar-body {
    padding: 2rem;
}

.concern-badge {
    background: var(--cream);
    color: var(--dark-soft);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.concern-badge:hover {
    background: var(--sage);
    color: var(--white);
}

/* =====================================================
   GALLERY PAGE
   ===================================================== */

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--dark-soft);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--sage);
    border-color: var(--sage);
    color: var(--white);
}

.gallery-tile {
    margin-bottom: 1rem;
    transition: transform var(--transition-base);
}

.gallery-tile.hidden {
    display: none;
}

/* =====================================================
   FORMS (Contact & Booking)
   ===================================================== */

.form-control, .form-select {
    border: 1px solid var(--line);
    border-radius: 2px;
    padding: 0.85rem 1rem;
    font-size: 0.95rem;
    font-family: var(--font-body);
    background-color: var(--white);
    transition: all var(--transition-fast);
}

.form-control:focus, .form-select:focus {
    border-color: var(--sage);
    box-shadow: 0 0 0 4px rgba(107, 126, 96, 0.1);
}

label.form-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 0.5rem;
}

/* =====================================================
   BOOKING WIZARD
   ===================================================== */

.booking-wizard {
    background: var(--white);
    padding: 3rem;
    border-radius: 4px;
    box-shadow: var(--shadow-lg);
}

.bk-step {
    animation: fadeUp 0.5s ease;
}

.bk-progress {
    height: 4px !important;
    background: var(--cream);
    border-radius: 50px;
    overflow: hidden;
}

.bk-progress-bar {
    background: var(--sage);
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.radio-card {
    cursor: pointer;
    display: block;
}

.radio-card input {
    position: absolute;
    opacity: 0;
}

.radio-card .card {
    border: 2px solid var(--line);
    border-radius: 4px;
    transition: all var(--transition-base);
}

.radio-card .card:hover {
    border-color: var(--sage-light);
    transform: translateY(-2px);
}

.radio-card input:checked + .card {
    border-color: var(--sage);
    background: var(--sage-pale);
    box-shadow: 0 5px 15px rgba(107, 126, 96, 0.1);
}

.radio-card input:checked + .card h6 {
    color: var(--sage-dark);
}

.concern-chip input { display: none; }

.concern-chip span {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--line);
    border-radius: 50px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    background: var(--white);
}

.concern-chip:hover span {
    border-color: var(--sage);
}

.concern-chip input:checked + span {
    background: var(--sage);
    color: var(--white);
    border-color: var(--sage);
}

.time-slot {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--line);
    border-radius: 50px;
    background: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.time-slot:hover {
    border-color: var(--sage);
    color: var(--sage);
    transform: translateY(-1px);
}

.time-slot.selected {
    background: var(--sage);
    color: var(--white);
    border-color: var(--sage);
}

.review-list dt {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
}

.review-list dd {
    font-weight: 500;
    color: var(--dark);
}

.confirmation-screen {
    text-align: center;
    padding: 2rem 0;
}

.confirmation-screen i {
    font-size: 5rem;
    color: var(--sage);
    animation: pulse-soft 2s infinite;
}

/* =====================================================
   FOOTER
   ===================================================== */

.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 5rem 0 2rem;
}

.site-footer h3, .site-footer h6 {
    color: var(--white);
}

.site-footer .brand-text {
    font-family: var(--font-head);
    font-size: 2rem;
}

.site-footer a {
    color: rgba(255,255,255,0.7);
    transition: color var(--transition-fast);
}

.site-footer a:hover {
    color: var(--sage-light);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--sage);
    border-color: var(--sage);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    margin-top: 3rem;
}

/* =====================================================
   RESPONSIVE STYLES
   ===================================================== */

@media (max-width: 991.98px) {
    .navbar {
        padding: 1rem 0;
    }
    
    .navbar-collapse {
        background: var(--white);
        padding: 1.5rem;
        margin-top: 1rem;
        border-radius: 4px;
        box-shadow: var(--shadow-md);
        border: 1px solid var(--line);
    }
    
    .navbar-nav {
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }
    
    .nav-link {
        padding: 0.75rem 0 !important;
        border-bottom: 1px solid var(--line);
        width: 100%;
    }
    
    .nav-item .btn {
        margin-top: 1rem;
        width: 100%;
    }
    
    .hero {
        min-height: 90vh;
    }
    
    .image-frame::before {
        display: none;
    }
    
    .service-sidebar {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .py-6, .py-7 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
    
    .display-3, .display-4, .display-5, .display-6 {
        font-size: 2rem;
    }
    
    .booking-wizard {
        padding: 1.5rem;
    }
    
    .hero-content .lead {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.75rem;
    }
}

/* =====================================================
   ACCORDION & MISC OVERRIDES
   ===================================================== */

.accordion-button:not(.collapsed) {
    background: var(--sage-pale);
    color: var(--sage-dark);
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(107, 126, 96, 0.1);
    border-color: var(--sage-light);
}

.card {
    border: 1px solid var(--line);
    border-radius: 2px;
}