/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* With Romilly Brand Colors */
    --deep-sage: #3B5F56;
    --soft-sage: #A8C0B0;
    --blush-rose: #EFCBD1;
    --warm-linen: #F7F3EF;
    --charcoal: #2B2B2B;
    --gold-accent: #A8C0B0;
    
    /* Semantic Color Variables */
    --primary-color: var(--deep-sage);
    --primary-light: var(--soft-sage);
    --accent-color: var(--blush-rose);
    --background: var(--warm-linen);
    --background-alt: #ffffff;
    --text-primary: var(--charcoal);
    --text-secondary: #5a5a5a;
    --border-color: var(--soft-sage);
    --gold: var(--gold-accent);
    
    /* Shadows & Effects */
    --shadow-light: 0 2px 8px rgba(59, 95, 86, 0.08);
    --shadow: 0 4px 16px rgba(59, 95, 86, 0.12);
    --shadow-lg: 0 8px 32px rgba(59, 95, 86, 0.16);
    --transition: all 0.3s ease;
    --border-radius: 16px;
    
    /* Typography */
    --font-heading: 'Arapey', serif;
    --font-body: 'Avenir', 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing Scale */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 12px;
    --space-lg: 16px;
    --space-xl: 24px;
    --space-2xl: 32px;
    --space-3xl: 48px;
    --space-4xl: 64px;
}

body {
    font-family: var(--font-heading);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
    font-size: 16px;
    font-weight: 300; /* Avenir Light weight */
}

/* Global mobile guardrails */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

img, video, svg, canvas {
    max-width: 100%;
    height: auto;
}

/* Avoid oversized elements causing horizontal scroll */
.container, section, header, footer, main, nav {
    max-width: 100%;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

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

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--space-lg);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
}

.service-card {
    background: var(--background-alt);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--accent-color);
}

.service-content {
    padding: var(--space-xl);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--primary-color);
}

.service-summary {
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
    padding: var(--space-md) 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.service-duration,
.service-price {
    font-weight: 400;
    color: var(--text-primary);
}

.service-price {
    font-size: 1.125rem;
    color: var(--primary-color);
}

.service-price::before {
    content: '£';
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-2xl);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-family: var(--font-heading);
    min-height: 48px;
}

.btn-primary {
    background: var(--soft-sage);
    color: white;
    border-color: var(--soft-sage);
}

.btn-primary:hover {
    background: var(--primary-color); /* Darken to deep sage on hover */
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--soft-sage);
}

.btn-secondary:hover {
    background: var(--soft-sage);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-accent {
    background: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
}

.btn-accent:hover {
    background: var(--blush-rose);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-group {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: var(--space-lg) var(--space-3xl);
    font-size: 1.1rem;
}

/* Chips & Tags */
.meta-chip, .helps-list li, .benefit-item {
    border-radius: 999px;
    padding: 8px 16px;
    font-size: 1.02rem;
    background: var(--background-alt);
    border: 1px solid var(--border-color);
    margin: 0 6px 6px 0;
    display: inline-block;
    font-weight: 500;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: 6rem 0 4rem;
    margin-top: 120px;
    text-align: center;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    margin-bottom: var(--space-lg);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    color: white;
}

.page-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: var(--space-xl);
    opacity: 0.95;
    color: rgba(255,255,255,0.95);
}

/* Subtle Animation */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
}
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .book-services-grid { gap: 1.2rem; }
    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-nav { grid-template-columns: repeat(3, minmax(140px, 1fr)); }
    .footer-accredit { margin-top: .5rem; }
    
    .book-hero-overlay { padding: 1.2rem 0.5rem; }
    .container {
        padding: 0 var(--space-md);
    }
    /* Footer */
    .footer-nav { grid-template-columns: 1fr; gap: 1rem; }
    
    .nav-logo-text {
        display: none;
    }
    
    .nav-logo-img {
        height: 35px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 88px;
        flex-direction: column;
        background-color: var(--background);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: var(--space-2xl) 0;
        gap: var(--space-xl);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

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

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

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

    .hero {
        padding: 6rem 0 4rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .services-grid,
    .about-grid,
    .testimonials-grid,
    .recommends-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: var(--space-3xl) 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .trust-content {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero {
        padding: 5rem 0 3rem;
    }

    .section {
        padding: var(--space-2xl) 0;
    }

    .service-content,
    .about-content,
    .testimonial-card,
    .contact-form,
    .booking-form {
        padding: var(--space-lg);
    }

    .footer {
        padding: var(--space-2xl) 0 var(--space-lg);
    }
}

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* With Romilly Brand Colors */
    --deep-sage: #3B5F56;
    --soft-sage: #A8C0B0;
    --blush-rose: #EFCBD1;
    --warm-linen: #F7F3EF;
    --charcoal: #2B2B2B;
    --gold-accent: #A8C0B0;
    
    /* Semantic Color Variables */
    --primary-color: var(--deep-sage);
    --primary-light: var(--soft-sage);
    --accent-color: var(--blush-rose);
    --background: var(--warm-linen);
    --background-alt: #ffffff;
    --text-primary: var(--charcoal);
    --text-secondary: #5a5a5a;
    --border-color: var(--soft-sage);
    --gold: var(--gold-accent);
    
    /* Shadows & Effects */
    --shadow-light: 0 2px 8px rgba(59, 95, 86, 0.08);
    --shadow: 0 4px 16px rgba(59, 95, 86, 0.12);
    --shadow-lg: 0 8px 32px rgba(59, 95, 86, 0.16);
    --transition: all 0.3s ease;
    --border-radius: 16px;
    
    /* Typography */
    --font-heading: 'Arapey', serif;
    --font-body: 'Avenir', 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing Scale */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 12px;
    --space-lg: 16px;
    --space-xl: 24px;
    --space-2xl: 32px;
    --space-3xl: 48px;
    --space-4xl: 64px;
}

body {
    font-family: var(--font-heading);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
    font-size: 16px;
    font-weight: 300; /* Avenir Light weight */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

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

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--space-lg);
    color: var(--text-secondary);
    line-height: 1.7;
}

.text-large {
    font-size: 1.125rem;
    line-height: 1.8;
}

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

.text-primary {
    color: var(--text-primary);
}

.text-secondary {
    color: var(--text-secondary);
}

/* Header and Navigation */
/* ===================================
   PREMIUM HEADER & NAVIGATION
   =================================== */

.header {
    background: #B6CFB3;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: #B6CFB3;
}

.nav {
    padding: 0.5rem 0 0.25rem;
}

.nav-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0.125rem;
    text-align: center;
}

.nav-logo:hover {
    color: var(--primary-light);
    transform: translateY(-1px);
}

.nav-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1) saturate(0) opacity(.95);
}

.nav-logo:hover .nav-logo-img {
    transform: rotate(5deg) scale(1.05);
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: #ffffff; /* match original white brand text */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.75rem;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0.4rem 0 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #6B8579; /* Lighter sage tone */
    text-decoration: none;
    font-weight: 400;
    font-size: 1.2rem; /* Increased for better visibility */
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    padding: 0.45rem 0;
    display: inline-block;
    outline: none; /* Remove black outline box */
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:focus {
    outline: none; /* Remove focus outline */
}

.nav-cta {
    background: transparent;
    color: #6B8579 !important; /* Match nav links */
    padding: 0.5rem 0 !important;
    border-radius: 0;
    text-decoration: none;
    font-weight: 400;
    font-size: 1.2rem; /* Match nav links */
    border: none;
    outline: none; /* Remove black outline box */
}

.nav-cta:hover {
    color: var(--primary-color) !important;
}

.nav-cta:focus {
    outline: none; /* Remove focus outline */
}

.nav-cta::after {
    display: none !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 4px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-2xl);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-family: var(--font-heading);
    min-height: 48px;
}

.btn-primary {
    background: var(--soft-sage);
    color: white;
    border-color: var(--soft-sage);
}

.btn-primary:hover {
    background: var(--primary-color); /* Darken to deep sage on hover */
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--soft-sage);
}

.btn-secondary:hover {
    background: var(--soft-sage);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-accent {
    background: var(--accent-color);
    color: var(--primary-color);
    border-color: var(--accent-color);
}

.btn-accent:hover {
    background: var(--blush-rose);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-group {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: var(--space-lg) var(--space-3xl);
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    background: url('../assets/images/hero_image.webp') center/cover,
                linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    background-blend-mode: overlay;
    color: #FFF1EF;
    padding: 8rem 0 6rem;
    margin-top: 88px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 95, 86, 0.3) 0%, rgba(168, 192, 176, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    margin-bottom: var(--space-xl);
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.375rem);
    margin-bottom: var(--space-3xl);
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s both;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: var(--space-xl);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero .btn {
    min-width: 160px;
}

/* Book Page Hero Banner */
.book-hero {
    position: relative;
    height: 340px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.book-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) blur(1px);
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}
.book-hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, rgba(59,95,86,0.55) 0%, rgba(168,192,176,0.35) 100%);
    padding: 3.5rem 0 2.5rem 0;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 4px 24px rgba(59,95,86,0.10);
}
.book-hero .page-header-content {
    position: relative;
    z-index: 3;
}

.page-header-content h1, .page-header-content .page-title {
    color: #fff;
    text-shadow: 0 2px 8px rgba(59,95,86,0.18);
}
.page-header-content .page-subtitle {
    color: #f7f3ef;
    font-size: 1.15rem;
    text-shadow: 0 1px 4px rgba(59,95,86,0.12);
}

/* Sections */
.section {
    padding: var(--space-4xl) 0;
}

.section-alt {
    background-color: var(--background-alt);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    margin-bottom: var(--space-xl);
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Trust Bar */
.trust-bar {
    background: var(--background-alt);
    padding: var(--space-2xl) 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3xl);
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.trust-badge img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
}

.service-card {
    background: var(--background-alt);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--accent-color);
}

.service-content {
    padding: var(--space-xl);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--primary-color);
}

.service-summary {
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
    padding: var(--space-md) 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.service-duration,
.service-price {
    font-weight: 400;
    color: var(--text-primary);
}

.service-price {
    font-size: 1.125rem;
    color: var(--primary-color);
}

.service-price::before {
    content: '£';
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-3xl);
    align-items: center;
}

.about-content {
    padding: var(--space-xl);
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: var(--accent-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--primary-color);
    font-weight: 500;
    margin: 0 auto;
    border: 2px dashed var(--primary-color);
}

.image-placeholder small {
    font-size: 0.8rem;
    opacity: 0.7;
}

.qualifications {
    list-style: none;
    margin-top: var(--space-xl);
}

.qualifications li {
    padding: var(--space-sm) 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: var(--space-xl);
}

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

/* Testimonials */
.testimonials {
    background: var(--accent-color);
    padding: var(--space-4xl) 0;
}

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

.testimonial-card {
    background: var(--background-alt);
    padding: var(--space-2xl);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: var(--space-xl);
    font-size: 4rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
    line-height: 1;
}

.testimonial-quote {
    font-style: italic;
    margin-bottom: var(--space-lg);
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 400;
    color: var(--primary-color);
    font-size: 0.95rem;
}

/* Testimonial carousel (shared across pages) */
.testimonial-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.testimonial-slide {
    background: var(--background-alt);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    padding: var(--space-2xl) var(--space-xl);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .4s ease, transform .4s ease;
    position: absolute;
    inset: 0;
}
.testimonial-slide.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}
.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    margin-top: var(--space-lg);
}
.testimonial-btn {
    background: var(--soft-sage);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: .5rem .85rem;
    cursor: pointer;
}
.testimonial-dots {
    display: flex;
    gap: .5rem;
    justify-content: center;
    margin-top: .5rem;
}
.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-color); /* Darken to deep sage on hover */
    border: none;
}
.testimonial-dot.active { background: var(--primary-color); }

/* Recommends */
.recommends-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-3xl);
}

.recommend-card {
    background: var(--background-alt);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

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

.recommend-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--soft-sage);
}

.recommend-content {
    padding: var(--space-lg);
}

.recommend-title {
    font-weight: 400;
    margin-bottom: var(--space-sm);
    color: var(--primary-color);
}

.recommend-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Location CTA */
.location-cta {
    background: var(--soft-sage);
    color: white;
    padding: var(--space-4xl) 0;
    text-align: center;
}

.location-content {
    max-width: 800px;
    margin: 0 auto;
}

.location-cta h2 {
    color: white;
    margin-bottom: var(--space-xl);
}

.location-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-2xl);
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-2xl);
}

.cta-buttons .btn-secondary {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.cta-buttons .btn-secondary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

/* Ensure primary button is visible on the dark CTA background */
.location-cta .cta-buttons .btn-primary {
    background: #ffffff;
    color: var(--primary-color);
    border-color: #ffffff;
}
.location-cta .cta-buttons .btn-primary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
}

/* Contact & Forms */
.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form,
.booking-form {
    background: var(--background-alt);
    padding: var(--space-2xl);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: var(--space-xl);
}

.form-group label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 400;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: var(--space-md) var(--space-lg);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-family: var(--font-heading);
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--soft-sage);
    box-shadow: 0 0 0 3px rgba(59, 95, 86, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
}

.form-group.checkbox input {
    width: auto;
    margin-top: var(--space-xs);
}

.form-group.checkbox label {
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.5;
}

.form-error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: var(--space-sm);
}

.form-success {
    color: var(--primary-color);
    font-size: 0.875rem;
    margin-top: var(--space-sm);
}

/* ===================================
   PREMIUM FOOTER
   =================================== */

.footer {
    background: linear-gradient(180deg, #1E3A34 0%, #122521 100%);
    color: white;
    padding: 5rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(200, 169, 107, 0.5) 50%, 
        transparent
    );
}

/* New unified footer grid */
.footer-grid {
    max-width: 1360px; /* widen footer content area */
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.7fr 2.3fr 1.2fr; /* brand | nav (wider) | accreditation */
    gap: 3.5rem; /* more breathing room between columns */
    margin-bottom: 3rem;
}
/* Allow footer to exceed standard container width */
.footer > .container { max-width: 1360px; }

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: .75rem;
    color: #fff;
    text-decoration: none;
}

.footer-logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.5rem;
    letter-spacing: -0.01em;
}

.footer-tagline {
    color: rgba(255,255,255,.8) !important;
    margin: .25rem 0 0.5rem;
}

.footer-social { display: flex; gap: .75rem; margin-top: .25rem; }
.footer-social .social-link { 
    width: 38px; height: 38px; border-radius: 50%; display: inline-flex; 
    align-items: center; justify-content: center; color: #1F1F1F; background: #fff; 
    text-decoration: none; border: 1px solid rgba(255,255,255,.2);
}
.footer-social .social-link svg { width: 18px; height: 18px; color: #2B2B2B; }
.footer-social .social-link:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.2); }

/* Footer navigation columns */
.footer-nav { display: grid; grid-template-columns: repeat(3, minmax(200px, 1fr)); gap: 2.5rem; }
.footer-col h4 { color: #fff; margin-bottom: 1rem; font-family: var(--font-heading); font-weight: 400; font-size: 1.1rem; letter-spacing: .01em; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .85rem; }
.footer-col a { color: rgba(255,255,255,.8); text-decoration: none; transition: color .2s ease; }
.footer-col a:hover { color: var(--gold); }

/* Contact */
.footer-contact h4 { color: #fff; margin-bottom: 1rem; font-family: var(--font-heading); font-weight: 400; font-size: 1.05rem; }
.footer-contact p { margin: 0 0 .5rem; color: rgba(255,255,255,.8); }
.footer-contact a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }

/* Accreditation badge with light background so logo is visible */
.footer-accredit { align-self: start; }
.footer-accredit h4 { color: #fff; margin-bottom: .85rem; font-family: var(--font-heading); font-weight: 400; font-size: 1.1rem; letter-spacing: .08em; text-transform: uppercase; opacity: .95; }
.accreditation-badge { background: linear-gradient(180deg,#fff, #f6f6f6); border-radius: 16px; padding: 14px 16px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(0,0,0,.06); box-shadow: 0 10px 30px rgba(0,0,0,.18); }
.accreditation-logo { max-height: 72px; width: auto; display: block; object-fit: contain; filter: none; mix-blend-mode: normal; }

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    line-height: 1.6;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer-section a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-section a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.875rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-bottom-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-legal a::before {
    display: none;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.footer-legal a:hover {
    color: var(--gold);
    transform: none;
}

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

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

.divider {
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: var(--space-xl) auto;
    border-radius: 2px;
}

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

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

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
/* ===================================
   RESPONSIVE MOBILE STYLES
   =================================== */

@media (max-width: 768px) {
    /* Header & Navigation */
    .nav {
        padding: 1rem 0;
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-logo-text {
        display: none;
    }
    
    .nav-logo-img {
        height: 40px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 110px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
        box-shadow: 0 8px 32px rgba(59, 95, 86, 0.15);
        padding: 2rem 0;
        gap: 1.5rem;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-cta {
        width: 80%;
        max-width: 280px;
        margin: 1rem auto 0;
        text-align: center;
        justify-content: center;
    }

    /* Footer */
    .footer-grid { grid-template-columns: 1fr; gap: 2.25rem; }
    .footer-nav { grid-template-columns: 1fr 1fr; }
    .footer-accredit { margin-top: .5rem; }

    .footer-section.about {
        max-width: 100%;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.75rem;
    }

    /* General */
    .hero {
        padding: 6rem 0 4rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .services-grid,
    .about-grid,
    .testimonials-grid,
    .recommends-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: var(--space-3xl) 0;
    }

    .container {
        padding: 0 var(--space-lg);
    }

    .trust-content {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero {
        padding: 5rem 0 3rem;
    }

    .section {
        padding: var(--space-2xl) 0;
    }

    .service-content,
    .about-content,
    .testimonial-card,
    .contact-form,
    .booking-form {
        padding: var(--space-lg);
    }

    .footer {
        padding: var(--space-2xl) 0 var(--space-lg);
    }
}

/* Large screens */
@media (min-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .recommends-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Outline button (used for secondary actions like Ask a Question) */
.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--soft-sage);
}

.btn-outline:hover {
    background: var(--soft-sage);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Limit line length for service text on the services page for readability */
#services-list .service-content,
#services-list .service-description p,
#services-list .service-summary {
    max-width: 70ch;
}

/* Services TOC */
#services-list .services-toc {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

#services-list .services-toc a {
    font-size: 0.9rem;
}

/* Print styles */
@media print {
    .nav-toggle,
    .hero-buttons,
    .btn,
    .contact-form {
        display: none;
    }
    
    .hero {
        background: none;
        color: var(--text-primary);
    }
    
    body {
        background: white;
        color: black;
    }
}

/* ===============================
   PAGE SPECIFIC STYLES
   =============================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: white;
    padding: 6rem 0 4rem;
    margin-top: 88px;
    text-align: center;
}

/* Services Page Header with Parallax Background */
.services-page-header {
    background: 
        linear-gradient(135deg, rgba(59, 95, 86, 0.7) 0%, rgba(168, 192, 176, 0.6) 100%),
    url('../assets/images/spa.webp') center/cover;
    background-attachment: fixed;
    position: relative;
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 400;
    margin-bottom: var(--space-lg);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.page-subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: var(--space-xl);
    opacity: 0.95;
}

/* Services Detail Page */
.services-detail {
    padding: var(--space-5xl) 0;
    background: var(--background-color);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-4xl);
}

.service-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

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

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

/* Image overlay for "More about this treatment" */
#services-list .service-image { position: relative; }
#services-list .service-overlay {
    position: absolute;
    left: 0; right: 0; top: 0; bottom: 0;
    z-index: 5;
}
#services-list .service-overlay summary {
    position: absolute;
    bottom: var(--space-md);
    left: var(--space-md);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(43, 43, 43, 0.6);
    color: #fff;
    border-radius: 999px;
    font-weight: 400;
    cursor: pointer;
    list-style: none;
    backdrop-filter: blur(4px);
    z-index: 2;
}
#services-list .service-overlay summary::-webkit-details-marker { display: none; }
#services-list .service-overlay[open] summary { background: rgba(43, 43, 43, 0.8); }

#services-list .service-overlay .overlay-content {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.65) 100%);
    color: #fff;
    display: flex;
    align-items: center; /* center vertically */
    justify-content: center;
    padding: var(--space-2xl);
    z-index: 1;
}
#services-list .service-overlay[open] .overlay-content { display: flex !important; }
#services-list .service-overlay:not([open]) .overlay-content { display: none; }

#services-list .service-overlay .overlay-inner {
    max-width: 720px;
    width: 100%;
    background: rgba(0,0,0,0.35);
    padding: var(--space-xl) var(--space-2xl);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    position: relative;
    max-height: calc(100% - 64px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(0); /* ensure visible */
}
#services-list .service-overlay[open] summary { opacity: 0; pointer-events: none; }
#services-list .service-overlay h4,
#services-list .service-overlay h5,
#services-list .service-overlay p,
#services-list .service-overlay li { color: #fff; }
#services-list .service-overlay ul { list-style: disc; padding-left: 1.25rem; }

#services-list .service-overlay .overlay-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: none;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
}
#services-list .service-overlay .overlay-close:hover {
    background: rgba(255,255,255,0.25);
}

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

.service-content {
    padding: var(--space-3xl);
}

.service-header {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
        "title meta"
        "summary meta";
    align-items: start;
    column-gap: var(--space-lg);
    row-gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0;
    grid-area: title;
}

.service-meta {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-start;
    gap: var(--space-xs);
    grid-area: meta;
}

.service-duration {
    background: var(--primary-color); /* Darken to deep sage on hover */
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 500;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-color);
}

.service-summary {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    font-style: italic;
    grid-area: summary;
}

/* Condensed services */
.clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-clamp: 2; }
.clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; line-clamp: 3; }

.benefits-inline {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    list-style: none;
}

.benefit-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--background-alt);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 1rem;
}

/* Tick styling for benefits list */
.benefit-item .tick {
    color: var(--primary-color);
    font-weight: 800;
    line-height: 1;
}

/* Inline SVG icon styling */
.icon svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.meta-chip {
    background: var(--background);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 0.85rem;
    white-space: nowrap;
}

.meta-chip.price { color: var(--primary-color); border-color: var(--primary-color); font-weight: 400; }

.service-tags { margin: var(--space-lg) 0; }
.tags-title { font-size: 1.05rem; color: var(--text-secondary); margin-bottom: var(--space-sm); }

.service-details {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background: var(--background-alt);
    padding: var(--space-md) var(--space-lg);
    margin: var(--space-lg) 0;
}

.service-details summary {
    cursor: pointer;
    font-weight: 400;
    color: var(--primary-color);
    list-style: none;
}

.service-details summary::-webkit-details-marker { display: none; }

.service-details summary::after {
    content: '▾';
    margin-left: var(--space-sm);
    transition: transform 0.2s ease;
}

.service-details[open] summary::after { transform: rotate(180deg); }

.service-details .details-body { margin-top: var(--space-md); }

/* Service card image height alignment */
#services-list .service-image { height: 260px; }
#services-list .service-image img { height: 100%; object-fit: cover; }

/* Improve width usage with two-column card layout on larger screens */
@media (min-width: 992px) {
    #services-list .service-card {
        display: grid;
        grid-template-columns: 1.3fr 1.7fr;
        align-items: stretch;
    }
    #services-list .service-image { height: auto; min-height: 320px; }
    #services-list .service-content { max-width: none; }
}

.service-description {
    margin-bottom: var(--space-xl);
}

.service-description p {
    line-height: 1.7;
    color: var(--text-color);
}

.service-benefits,
.service-helps {
    margin-bottom: var(--space-xl);
}

.service-benefits h4,
.service-helps h4 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--primary-color);
    margin-bottom: var(--space-md);
}

.service-benefits ul,
.service-helps ul {
    list-style: disc;
    padding-left: 1.25rem;
    margin: 0 0 var(--space-md) 0;
}

.service-benefits li,
.service-helps li {
    margin-bottom: var(--space-sm);
    color: var(--text-color);
    line-height: 1.6;
}

/* Chip styling for "Who It Helps" so it reads better */
.helps-list li {
    padding-left: 0;
    position: static;
    margin-bottom: 0;
    background: var(--background-alt);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 1rem;
}

.helps-list li::before { content: none; }
.helps-list { list-style: none; padding-left: 0; }

/* Keep footer logo a sensible size */
.footer-logo-img {
    height: 36px;
    width: auto;
}

.helps-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm) var(--space-md);
}

.service-actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-color);
}

/* --- BOOK PAGE POLISH --- */
.book-hero-overlay {
    background: linear-gradient(135deg, rgba(59,95,86,0.55) 0%, rgba(168,192,176,0.35) 100%);
    color: #fff;
    padding: 3.5rem 0 2.5rem 0;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 4px 24px rgba(59,95,86,0.10);
}
.page-header-content h1, .page-header-content .page-title {
    color: #fff;
    text-shadow: 0 2px 8px rgba(59,95,86,0.18);
}
.page-header-content .page-subtitle {
    color: #f7f3ef;
    font-size: 1.15rem;
    text-shadow: 0 1px 4px rgba(59,95,86,0.12);
}

.book-services-grid {
    margin-top: 1.5rem;
    margin-bottom: 2.5rem;
}
.book-service-card {
    min-height: 340px;
    box-shadow: 0 2px 12px rgba(59,95,86,0.10);
    border-radius: 18px;
    border: 1px solid var(--border-color);
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
    overflow: hidden;
    position: relative;
}
.book-service-card:hover {
    box-shadow: 0 8px 32px rgba(59,95,86,0.16);
    transform: translateY(-4px) scale(1.01);
}
.book-service-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    box-shadow: 0 2px 8px rgba(59,95,86,0.08);
}
.book-service-info {
    padding: 1.5rem 1rem 1rem 1rem;
    text-align: center;
}
.book-service-info h4 {
    font-size: 1.18rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 400;
}
.book-service-info p {
    font-size: 1.01rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.booking-widget {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(59,95,86,0.10);
    padding: 2.5rem 1.5rem;
    margin: 2.5rem 0;
    text-align: center;
    border: 1px solid var(--border-color);
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.booking-widget .widget-header h3 {
    font-size: 1.35rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 400;
}
.booking-widget .widget-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}
.booking-button-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.booking-button img {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(59,95,86,0.10));
}
.booking-note {
    font-size: 0.98rem;
    color: var(--text-secondary);
    margin-top: 1rem;
}

/* Info Cards with Icons */
.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(59,95,86,0.08);
    border: 1px solid var(--border-color);
    padding: 1.2rem 1rem;
    margin-bottom: 1.2rem;
}
.info-icon {
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}
.info-card h4 {
    margin-bottom: 0.3rem;
    font-size: 1.08rem;
    color: var(--primary-color);
}
.info-card p {
    margin-bottom: 0;
    font-size: 0.98rem;
}

/* Footer Links & Layout */
.footer-section a, .footer-contact a, .footer-social a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.2s;
}
.footer-section a:hover, .footer-contact a:hover, .footer-social a:hover {
    color: var(--gold);
}

/* Footer Accreditation */
.footer-accreditation {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-accreditation h4 {
    font-size: 0.875rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
}

.footer-accreditation h4::after {
    display: none;
}

.footer-accreditation .accreditation-logo {
    max-width: 140px;
    height: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1);
}

.footer-accreditation .accreditation-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-bottom {
    color: #888;
    font-size: 0.95rem;
    padding-top: 1.2rem;
}

/* Spacing & Responsive Tweaks */
@media (max-width: 900px) {
    .book-services-grid { gap: 1.2rem; }
    .booking-widget { padding: 1.2rem 0.7rem; }
}
@media (max-width: 600px) {
    .book-hero-overlay { padding: 1.2rem 0.5rem; }
    .book-services-grid { grid-template-columns: 1fr; gap: 1rem; }
    .book-service-card { min-height: 220px; }
    .booking-widget { padding: 0.7rem 0.3rem; }
}