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

:root {
    /* Color Variables */
    --background: hsl(45, 35%, 97%);
    --foreground: hsl(160, 15%, 25%);
    --primary: hsl(150, 20%, 45%);
    --primary-foreground: hsl(45, 35%, 97%);
    --secondary: hsl(15, 25%, 85%);
    --secondary-foreground: hsl(160, 15%, 25%);
    --muted: hsl(45, 25%, 92%);
    --muted-foreground: hsl(160, 10%, 50%);
    --accent: hsl(35, 25%, 88%);
    --accent-foreground: hsl(160, 15%, 25%);
    --border: hsl(45, 20%, 88%);
    --input: hsl(45, 20%, 88%);
    
    /* Custom Colors - Updated Brand Colors */
    --sage: #476B59;
    --sage-light: #738C84;
    --sage-dark: #334A3D;
    --rose: #DD9787;
    --rose-light: #E8B5A7;
    --rose-dark: #C27B67;
    --cream: hsl(45, 35%, 95%);
    --warm-beige: hsl(35, 25%, 82%);
    
    /* Spacing */
    --container-max: 1200px;
    --section-padding: 80px 0;
    --card-padding: 32px;
    
    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--foreground);
    background-color: var(--background);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Section */
.section {
    padding: var(--section-padding);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    color: var(--sage-dark);
    margin-bottom: 16px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
}

/* Divider */
.divider {
    width: 96px;
    height: 4px;
    background: linear-gradient(135deg, var(--sage-light), var(--rose-light));
    margin: 24px auto;
    border-radius: 2px;
}

/* Cards */
.card {
    background: white;
    border-radius: 8px;
    padding: var(--card-padding);
    box-shadow: 0 4px 20px -8px hsla(150, 25%, 55%, 0.25);
    border: 1px solid hsla(45, 20%, 88%, 0.3);
}

.card.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px -12px hsla(15, 30%, 75%, 0.3);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.card-header h3 {
    font-size: 1.5rem;
    color: var(--sage-dark);
    font-weight: 600;
}

.card-icon-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.card-icon-header h3 {
    font-size: 1.25rem;
    color: var(--sage-dark);
    margin-bottom: 8px;
}

/* Icon Circles */
.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gradient-healing {
    background: linear-gradient(135deg, #C5DAC1, #F0F7F4);
}

.gradient-sage {
    background: linear-gradient(180deg, #476B59, #6D597A);
}

.bg-sage {
    background-color: var(--sage);
}

.bg-rose {
    background-color: var(--rose);
}

.bg-white {
    background-color: white;
}

/* Backgrounds */
.bg-warm {
    background: linear-gradient(135deg, var(--cream), var(--warm-beige));
}

.bg-healing {
    background: linear-gradient(135deg, hsla(150, 30%, 85%, 0.3), hsla(15, 40%, 90%, 0.3));
}

.bg-sage-light {
    background-color: hsla(150, 30%, 85%, 0.2);
}

/* Text Utilities */
.text-muted {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.text-rose-dark {
    color: var(--rose-dark);
}

.text-rose-light {
    color: var(--rose-light);
}

.italic {
    font-style: italic;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-healing {
    background: linear-gradient(135deg, var(--sage-light), var(--rose-light));
    color: var(--foreground);
    border: 2px solid hsla(150, 25%, 55%, 0.3);
    font-weight: 500;
}

.btn-healing:hover {
    border-color: hsla(150, 25%, 55%, 0.5);
    box-shadow: 0 8px 30px -12px hsla(15, 30%, 75%, 0.3);
    transform: translateY(-2px);
}

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

.btn-sage:hover {
    background-color: var(--sage-dark);
    box-shadow: 0 4px 20px -8px hsla(150, 25%, 55%, 0.25);
}

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

.btn-outline:hover {
    background-color: hsla(150, 30%, 85%, 0.2);
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--sage), var(--sage-dark));
    color: white;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, var(--sage-dark), #2A3829);
    box-shadow: 0 4px 20px -8px hsla(150, 25%, 55%, 0.25);
}

.btn-sms {
    background-color: #6D597A;
    color: white;
}

.btn-sms:hover {
    background-color: #5A4865;
    box-shadow: 0 4px 20px -8px hsla(270, 25%, 45%, 0.25);
}

.btn-email {
    background-color: var(--rose);
    color: white;
}

.btn-email:hover {
    background-color: var(--rose-dark);
    box-shadow: 0 4px 20px -8px hsla(15, 55%, 70%, 0.25);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: hsla(45, 35%, 97%, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid hsla(150, 30%, 85%, 0.2);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--sage-dark);
}

.logo a {
    text-decoration: none;
    color: inherit;
}

.logo a:hover h1 {
    color: var(--sage);
    transition: color 0.3s ease;
}

.logo-ampersand,
.hero-ampersand {
    font-size: 1.875rem;
    color: var(--rose);
    font-style: italic;
}

.nav-menu {
    display: none; /* Disabled as requested */
}

.nav-link {
    color: var(--foreground);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--sage);
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 24px;
}

.location-info {
    display: none;
    align-items: center;
    gap: 4px;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

@media (min-width: 1024px) {
    .location-info {
        display: flex;
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--sage-dark);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav-menu,
    .header-contact .btn {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: none !important; /* Navigation disabled */
    }
}

/* Hero Section */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cream), var(--warm-beige));
    padding: 80px 0 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-title {
    overflow: hidden;
    text-align: center;
}

.hero-title h1 {
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 700;
    color: var(--sage-dark);
    margin-bottom: 16px;
}

.hero-ampersand {
    font-size: clamp(3.5rem, 8vw, 6rem);
}

.hero-tagline {
    font-size: 1.5rem;
    color: var(--sage);
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-subtitle {
    max-width: 600px;
    margin: 48px auto;
}

.hero-subtitle p {
    font-size: 1.125rem;
    line-height: 1.8;
}

.hero-services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.service-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: hsla(150, 30%, 85%, 0.3);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.service-badge svg {
    color: var(--rose);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 64px;
}

.hero-contact {
    padding-top: 64px;
    border-top: 1px solid hsla(150, 30%, 85%, 0.3);
}

.contact-intro {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 16px;
}

.hero-contact-cta {
    margin-bottom: 24px;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 0.875rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--sage);
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--sage-dark);
}

.separator {
    color: var(--muted-foreground);
    display: none;
}

@media (min-width: 640px) {
    .separator {
        display: inline;
    }
}

/* Animated Orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    pointer-events: none;
}

.orb-1 {
    width: 256px;
    height: 256px;
    background-color: hsla(150, 30%, 85%, 0.5);
    top: 25%;
    left: 25%;
    animation: float-slow 8s ease-in-out infinite;
}

.orb-2 {
    width: 384px;
    height: 384px;
    background-color: hsla(15, 40%, 90%, 0.4);
    top: 75%;
    right: 25%;
    animation: float-medium 6s ease-in-out infinite 2s;
}

.orb-3 {
    width: 192px;
    height: 192px;
    background-color: hsla(45, 35%, 95%, 0.6);
    bottom: 25%;
    left: 33%;
    animation: float-fast 4s ease-in-out infinite 1s;
}

.orb-4 {
    width: 128px;
    height: 128px;
    background-color: hsla(150, 25%, 55%, 0.3);
    top: 50%;
    right: 33%;
    animation: drift-left 12s linear infinite;
}

.orb-5 {
    width: 96px;
    height: 96px;
    background-color: hsla(15, 30%, 75%, 0.4);
    bottom: 33%;
    right: 25%;
    animation: drift-right 10s linear infinite;
}

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

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

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

@keyframes drift-left {
    0% { transform: translateX(100vw); }
    100% { transform: translateX(-100px); }
}

@keyframes drift-right {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(100vw); }
}

/* About Section */
.profile-photo-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 64px;
}

.profile-photo {
    position: relative;
    width: 256px;
    height: 256px;
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 8px 30px -12px hsla(15, 30%, 75%, 0.3);
}

.profile-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 4px solid hsla(150, 30%, 85%, 0.4);
}

.profile-badge {
    position: absolute;
    bottom: -8px;
    right: -8px;
    background: linear-gradient(135deg, var(--sage-light), var(--rose-light));
    padding: 12px;
    border-radius: 50%;
    box-shadow: 0 4px 20px -8px hsla(150, 25%, 55%, 0.25);
}

.profile-badge svg {
    color: var(--sage-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-bottom: 64px;
}

.about-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Charity Section */
.charity-section {
    margin-top: 24px;
}

.charity-section h4 {
    font-weight: 500;
    color: var(--sage-dark);
    margin-bottom: 12px;
}

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

.charity-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px;
    background-color: hsla(255, 255%, 255%, 0.5);
    border-radius: 8px;
}

.charity-icon {
    width: 48px;
    height: 48px;
    background-color: hsla(150, 30%, 85%, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-size: 1.5rem;
    padding: 8px;
    overflow: hidden;
}

.charity-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

picture.charity-icon {
    background-color: transparent;
    border-radius: 0;
}

.charity-item span {
    font-size: 0.75rem;
    color: var(--sage-dark);
    font-weight: 500;
}

/* Specialisation List */
.specialisation-list {
    list-style: none;
    padding: 0;
}

.specialisation-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}

.bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.bullet.sage {
    background-color: var(--sage);
}

.bullet.rose {
    background-color: var(--rose);
}

/* Why Section */
.why-section {
    margin-top: 64px;
}

.why-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 48px;
}

.why-content .icon-circle {
    margin: 0 auto 24px;
    width: 64px;
    height: 64px;
}

.why-content h3 {
    font-size: 2rem;
    color: var(--sage-dark);
    margin-bottom: 24px;
}

.quote {
    font-size: 1.125rem;
    line-height: 1.8;
    font-style: italic;
}

.attribution {
    margin-top: 24px;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    position: relative;
    overflow: visible;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-card.featured-primary {
    border: 2px solid var(--sage);
    box-shadow: 0 8px 32px rgba(71, 107, 89, 0.2);
}

/* Concessions Card Styles */
.concessions-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.concessions-header h3 {
    font-size: 1.5rem;
    font-family: var(--font-serif);
    color: var(--sage-dark);
    margin-bottom: 0.5rem;
}

.concessions-subtitle {
    font-size: 1rem;
    color: var(--muted-foreground);
    font-style: italic;
}

.concessions-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.concessions-info-box {
    background: rgba(71, 107, 89, 0.05);
    padding: 1.25rem;
    border-radius: 12px;
    border-left: 4px solid var(--sage);
}

.concessions-info-box h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--sage-dark);
    margin-bottom: 0.75rem;
}

.concessions-info-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--foreground);
}

.concessions-process h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--sage-dark);
    margin-bottom: 1rem;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--cream);
    border-radius: 8px;
}

.step-number {
    background: var(--sage);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.step p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--foreground);
    margin: 0;
}

.concessions-cta {
    text-align: center;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(71, 107, 89, 0.05) 0%, rgba(221, 151, 135, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(71, 107, 89, 0.1);
}

.cta-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--sage-dark);
    margin-bottom: 1rem;
    font-style: italic;
}

.pricing-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--sage-dark);
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    font-family: var(--font-serif);
    color: var(--sage-dark);
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--muted-foreground);
    font-weight: 500;
}


.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 1.5rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.pricing-card-cta {
    margin-top: 1.5rem;
    text-align: center;
}

.pricing-info {
    margin-bottom: 3rem;
}

.pricing-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.info-item p {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    line-height: 1.5;
}

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

.pricing-cta h3 {
    font-size: 1.75rem;
    font-family: var(--font-serif);
    color: var(--sage-dark);
    margin-bottom: 1rem;
}

.pricing-cta p {
    font-size: 1.1rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .concessions-header h3 {
        font-size: 1.3rem;
    }
    
    .process-steps {
        gap: 0.75rem;
    }
    
    .step {
        padding: 0.5rem;
        gap: 0.75rem;
    }
    
    .step-number {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .pricing-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

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

.expect-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.session-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.option-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: hsla(150, 30%, 85%, 0.2);
    padding: 12px;
    border-radius: 8px;
}

.option-badge span {
    font-size: 0.875rem;
    font-weight: 500;
}

.location-info-card {
    font-size: 0.875rem;
}

.location-info-card strong {
    color: var(--sage);
}

.approaches-title {
    text-align: center;
    font-size: 2rem;
    color: var(--sage-dark);
    margin-bottom: 48px;
}

.approaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 64px;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 16px;
}

.badge-rose {
    background-color: hsla(15, 40%, 90%, 0.5);
    color: var(--rose-dark);
}

.badge-sage {
    background-color: hsla(150, 30%, 85%, 0.5);
    color: var(--sage-dark);
}

.badge-beige {
    background-color: hsla(35, 25%, 82%, 0.5);
    color: var(--sage-dark);
}

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

.services-cta .card {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px;
}

.services-cta h3 {
    color: var(--sage-dark);
    margin-bottom: 16px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 48px;
    margin-bottom: 64px;
}

.contact-column h3 {
    font-size: 1.5rem;
    color: var(--sage-dark);
    margin-bottom: 24px;
}

.contact-column > p {
    margin-bottom: 32px;
    line-height: 1.8;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-card-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-card-content h4 {
    font-weight: 600;
    color: var(--sage-dark);
    margin-bottom: 8px;
}

.contact-number,
.contact-email {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 8px;
}

/* New Contact Section Styles */
.contact-methods-section {
    margin-bottom: 64px;
}

.contact-methods-section h3 {
    text-align: center;
    font-size: 1.75rem;
    color: var(--sage-dark);
    margin-bottom: 16px;
}

.contact-intro {
    text-align: center;
    color: var(--muted-foreground);
    margin-bottom: 24px;
}

.confidentiality-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, hsla(150, 30%, 85%, 0.3), hsla(15, 40%, 90%, 0.3));
    padding: 12px 24px;
    border-radius: 24px;
    margin: 0 auto 32px;
    max-width: fit-content;
    font-weight: 500;
    color: var(--sage-dark);
}

.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-method-card {
    text-align: center;
    padding: 32px;
}

.contact-method-card .icon-circle {
    margin: 0 auto 16px;
}

.contact-method-card h4 {
    font-size: 1.25rem;
    color: var(--sage-dark);
    margin-bottom: 8px;
}

.contact-method-card .text-muted {
    margin-bottom: 16px;
    min-height: 3em;
}

.contact-detail {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-top: 12px;
}

/* Horizontal Steps */
.steps-section {
    margin-bottom: 64px;
}

.steps-section h3 {
    text-align: center;
    font-size: 1.75rem;
    color: var(--sage-dark);
    margin-bottom: 48px;
}

.steps-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.step-item {
    flex: 1;
    text-align: center;
    padding: 0 16px;
    position: relative;
}

.step-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sage-dark);
}

.step-item h4 {
    font-size: 1.125rem;
    color: var(--sage-dark);
    margin-bottom: 8px;
}

.step-item .text-muted {
    font-size: 0.875rem;
    line-height: 1.6;
}

.step-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: hsla(150, 30%, 85%, 0.2);
    padding: 6px 12px;
    border-radius: 16px;
    margin-top: 12px;
    font-size: 0.75rem;
    color: var(--sage-dark);
    font-weight: 500;
}

.step-connector {
    flex: 0 0 auto;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--sage-light), var(--rose-light));
    align-self: flex-start;
    margin-top: 32px;
    position: relative;
}

.step-connector::before,
.step-connector::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--rose-light);
    border-radius: 50%;
    top: -3px;
}

.step-connector::before {
    left: -4px;
}

.step-connector::after {
    right: -4px;
}

/* Service Areas */
.service-areas-section {
    margin-bottom: 48px;
}

.service-areas-section h3 {
    text-align: center;
    font-size: 1.75rem;
    color: var(--sage-dark);
    margin-bottom: 32px;
}

.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
}

.service-area-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
}

.service-area-card h4 {
    font-size: 1.125rem;
    color: var(--sage-dark);
    margin-bottom: 4px;
}

.service-area-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin: 0;
}

.location-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

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

.location-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}

/* Steps */
.steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.step-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    color: white;
    flex-shrink: 0;
}

.step-content h4 {
    font-weight: 600;
    color: var(--sage-dark);
    margin-bottom: 8px;
}

/* Info Cards */
.info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-title {
    font-weight: 500;
    color: var(--sage-dark);
    font-size: 0.875rem;
}

.info-text {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

/* Contact CTA */
.contact-cta {
    text-align: center;
}

.contact-cta .card {
    max-width: 800px;
    margin: 0 auto;
    padding: 32px;
}

.contact-cta h3 {
    color: var(--sage-dark);
    margin-bottom: 16px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
}

/* Footer */
.footer {
    background-color: var(--sage-dark);
    color: white;
    padding: 48px 0;
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-description {
    color: var(--sage-light);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 16px;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--sage-light);
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: white;
}

.footer-contact {
    font-size: 0.875rem;
    color: var(--sage-light);
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--sage-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: white;
    text-decoration: underline;
}

.footer-divider {
    border-top: 1px solid hsla(150, 25%, 55%, 0.3);
    margin: 32px 0;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--sage-light);
}

.footer-made-with {
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-copyright {
    font-size: 0.75rem;
}

.footer-credentials {
    text-align: center;
    margin-top: 24px;
}

.bacp-logo {
    width: 32px;
    height: 32px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.footer-credentials p {
    font-size: 0.75rem;
    color: var(--sage-light);
}

.credentials-text {
    font-style: italic;
    margin-top: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title h1 {
        font-size: 2.5rem;
    }
    
    .hero-ampersand {
        font-size: 3rem;
    }
    
    .about-grid,
    .services-grid,
    .approaches-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .charity-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    /* Contact Section Mobile Styles */
    .contact-methods-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .steps-horizontal {
        flex-direction: column;
        gap: 40px;
        align-items: center;
        width: 100%;
    }
    
    .step-connector {
        display: none;
    }
    
    .step-item {
        padding: 0 20px;
        max-width: 280px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }
    
    .step-item h4 {
        margin-bottom: 12px;
    }
    
    .step-item .text-muted {
        max-width: 250px;
        text-align: center;
    }
    
    .step-badge {
        margin: 12px auto 0;
        max-width: fit-content;
    }
    
    /* Vertical connector lines between steps on mobile */
    .step-item:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        height: 20px;
        background: linear-gradient(180deg, var(--sage-light), var(--rose-light));
    }
    
    .service-areas-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .confidentiality-badge {
        font-size: 0.875rem;
        padding: 10px 20px;
    }
}

/* Mobile Menu Styles (Pure CSS - No JavaScript needed!) */
.mobile-menu-checkbox {
    display: none;
}

.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    border-bottom: 1px solid var(--border);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Show mobile menu when checkbox is checked */
.mobile-menu-checkbox:checked ~ .mobile-menu {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    animation: slideDown 0.3s ease;
}

.mobile-nav-link {
    padding: 12px 16px;
    color: var(--foreground);
    transition: background-color 0.3s ease;
    border-radius: 6px;
    text-decoration: none;
}

.mobile-nav-link:hover {
    background-color: var(--muted);
    color: var(--sage);
}

.mobile-menu .btn {
    margin-top: 8px;
}

/* Animate hamburger icon when checked */
.mobile-menu-checkbox:checked ~ .mobile-menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-checkbox:checked ~ .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-checkbox:checked ~ .mobile-menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Close menu when clicking outside (using :target pseudo-class trick) */
.mobile-menu-checkbox:checked ~ .mobile-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

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

/* Cookie Consent Custom Styles */
.cc-window {
    font-family: var(--font-sans) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
    border-top: 2px solid var(--rose-light) !important;
    padding: 24px !important;
}

.cc-message {
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: var(--foreground) !important;
    margin-right: 20px !important;
}

.cc-compliance {
    display: flex !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
}

.cc-compliance .cc-btn {
    border-radius: 8px !important;
    padding: 12px 24px !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    text-transform: none !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
}

.cc-compliance .cc-btn.cc-allow {
    background-color: var(--sage) !important;
    color: white !important;
}

.cc-compliance .cc-btn.cc-allow:hover {
    background-color: var(--sage-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(156, 175, 136, 0.3);
}

.cc-compliance .cc-btn.cc-deny {
    background-color: var(--muted) !important;
    color: var(--foreground) !important;
}

.cc-compliance .cc-btn.cc-deny:hover {
    background-color: var(--border) !important;
}

.cc-link {
    color: var(--sage) !important;
    text-decoration: underline !important;
    font-weight: 500 !important;
}

.cc-link:hover {
    color: var(--sage-dark) !important;
}

/* Revoke button styles */
.cc-revoke {
    background-color: var(--sage) !important;
    color: white !important;
    padding: 8px 16px !important;
    border-radius: 0 8px 8px 0 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    border: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
}

.cc-revoke:hover {
    background-color: var(--sage-dark) !important;
    transform: translateX(5px);
}

/* Mobile responsive for cookie consent */
@media (max-width: 768px) {
    .cc-window {
        padding: 20px 16px !important;
    }
    
    .cc-message {
        margin-right: 0 !important;
        margin-bottom: 16px !important;
        font-size: 14px !important;
    }
    
    .cc-compliance {
        width: 100% !important;
    }
    
    .cc-compliance .cc-btn {
        flex: 1 !important;
        min-width: 120px !important;
    }
}

/* Policy Pages Styles */
.policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 24px;
}

.policy-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.policy-content h1 {
    color: var(--sage-dark);
    margin-bottom: 16px;
}

.policy-content h2 {
    color: var(--sage);
    margin-top: 32px;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.policy-content h3 {
    color: var(--foreground);
    margin-top: 24px;
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.policy-content p, 
.policy-content li {
    line-height: 1.8;
    color: var(--foreground);
}

.policy-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.policy-content li {
    margin-bottom: 8px;
}

.last-updated {
    color: var(--muted-foreground);
    font-style: italic;
    margin-bottom: 32px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sage);
    margin-bottom: 24px;
    transition: color 0.3s;
    padding: 8px 16px;
    background-color: var(--sage);
    color: white;
    border-radius: 5px;
    text-decoration: none;
}

.back-link:hover {
    color: white;
    background-color: #8a9d76;
    text-decoration: none;
}

/* Privacy Policy Specific Styles */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.privacy-content h2 {
    color: var(--sage-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.privacy-content h3 {
    color: var(--sage);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.privacy-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.privacy-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.privacy-intro {
    background-color: var(--warm);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.contact-box {
    background-color: var(--sage-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.contact-box h3 {
    margin-top: 0;
}

/* Email protection styling */
.email-link {
    unicode-bidi: bidi-override;
    direction: rtl;
    display: inline-block;
}

.email-link span {
    display: inline-block;
    unicode-bidi: bidi-override;
    direction: ltr;
}

.email-protected {
    color: var(--sage);
    text-decoration: none;
}

.email-protected:hover {
    text-decoration: underline;
}

/* Cookie Policy Specific Styles */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.cookie-table th,
.cookie-table td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid var(--border);
}

.cookie-table th {
    background: var(--sage-light);
    font-weight: 600;
}

.cookie-table tr:hover {
    background: var(--cream);
}

.consent-button {
    display: inline-block;
    padding: 12px 24px;
    background: var(--sage);
    color: white;
    border-radius: 8px;
    margin-top: 16px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.consent-button:hover {
    background: var(--sage-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(156, 175, 136, 0.3);
}

.cookie-category {
    background: var(--cream);
    padding: 20px;
    border-radius: 8px;
    margin: 16px 0;
    border-left: 4px solid var(--sage);
}

/* Mobile responsive for policy pages */
@media (max-width: 768px) {
    .policy-container {
        padding: 20px 16px;
    }
    
    .policy-content {
        padding: 24px 20px;
    }
    
    .cookie-table {
        font-size: 14px;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: 8px;
    }
}
/* Navigation disabled - override styles */
.mobile-menu {
    display: none !important;
}
.mobile-menu-checkbox {
    display: none !important;
}

/* Logo styles */
.header-logo {
    height: 40px;
    width: auto;
}

.hero-logo {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 300px;
    margin-bottom: 24px;
    object-fit: contain;
    display: block;
}

/* Rose gradient and button styles */
.gradient-rose {
    background: linear-gradient(135deg, #DD9787, #6D597A);
}

.btn-rose {
    background-color: var(--rose);
    color: white;
}

.btn-rose:hover {
    background-color: var(--rose-dark);
    box-shadow: 0 4px 20px -8px hsla(15, 55%, 70%, 0.25);
}

/* BACP logo styles */
.hero-bacp {
    display: flex;
    justify-content: center;
    margin: 24px 0;
}

.hero-bacp-logo {
    max-width: 200px;
    height: auto;
    opacity: 0.9;
}

.bacp-logo {
    max-width: 100%;
    height: auto;
}

/* Professional credentials styling */
.hero-credentials {
    display: flex;
    justify-content: center;
    margin: 24px 0;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    border: 1px solid var(--sage-light);
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.credential-text {
    font-size: 0.875rem;
    color: var(--sage-dark);
    font-weight: 500;
    margin: 0;
}

/* Remove old BACP logo styles */
.hero-bacp,
.hero-bacp-logo,
.bacp-logo {
    display: none !important;
}

/* Footer logo styles */
.footer-logo-img {
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
}
