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

:root {
    --sticky-header-height: 140px; /* fallback when JS not yet run */
    /* Spacing scale – consistent rhythm */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 2.5rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 5rem;
    /* Readable content width */
    --content-narrow:  min(680px, 92vw);
    --content-wide:    min(960px, 94vw);
    /* Typography */
    --text-body:      1rem;
    --text-lead:      1.125rem;
    --text-small:    0.9375rem;
    --line-body:     1.7;
    --line-tight:    1.4;
    /* Colors – refined, classy */
    --color-text:    #2d2a2c;
    --color-text-muted: #5c5560;
    --color-brand:   #C2185B;
    --color-brand-light: #E91E63;
    --radius-sm:     8px;
    --radius-md:     12px;
    --radius-lg:     16px;
    --shadow-soft:   0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-card:   0 4px 24px rgba(0, 0, 0, 0.08);
}

html {
    font-size: 100%;
    -webkit-text-size-adjust: 100%;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: var(--text-body);
    line-height: var(--line-body);
    color: var(--color-text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #ffffff;
}

/* Editorial headline font - Esther Perel style */
.block-headline,
.hero-headline,
.name-line {
    font-family: 'DM Serif Display', Georgia, serif;
}

/* Skip to main content - visible on focus for keyboard users */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    padding: 0.75rem 1.25rem;
    background: #C2185B;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    z-index: 2001;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 1rem;
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #E91E63;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 0.875rem 1rem;
    z-index: 1001;
    font-size: 0.9rem;
    font-weight: 500;
    flex-wrap: wrap;
    min-height: 50px;
    box-sizing: border-box;
}

.announcement-bar p {
    margin: 0;
}

.announcement-button {
    background-color: #ffffff;
    color: #C2185B;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 2px solid #ffffff;
}
.announcement-button:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.announcement-button:hover {
    background-color: transparent;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Nav top is set by nav-spacing.js to match announcement bar height */
.main-nav {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    margin-right: auto;
    z-index: 1002;
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #2c3e50;
    border-radius: 1px;
    transition: transform 0.3s, opacity 0.3s;
}

.main-nav.nav-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.main-nav.nav-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}
.main-nav.nav-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    display: block;
}

.nav-menu a:hover {
    color: #E91E63;
}

.nav-button {
    background-color: #E91E63;
    color: #ffffff !important;
    padding: 0.6rem 1.5rem !important;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-button:hover {
    background-color: #C2185B;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(233, 30, 99, 0.3);
}

.language-toggle {
    margin-left: 1rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid #E91E63;
    color: #E91E63;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: inherit;
}

.lang-btn:hover {
    background-color: #E91E63;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
}

.lang-text {
    pointer-events: none;
}

.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: ' ▼';
    font-size: 0.7rem;
    vertical-align: middle;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    list-style: none;
    min-width: 180px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 0.75rem 1.5rem;
    display: block;
    color: #2c3e50;
    font-weight: 400;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f0f0f0;
    color: #E91E63;
}

/* Site-wide: content below fixed header uses consistent top spacing */
.hero-section {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: calc(var(--sticky-header-height, 140px) + 2rem);
    background-image: url('Stock/counselling picture without people.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 2rem 1rem;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.hero-content {
    /* Individual elements animate separately via animation classes */
    display: block;
}

.hero-image-container {
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease-out 0.2s both;
    text-align: center;
}

.hero-image {
    max-width: 200px;
    width: auto;
    height: auto;
    max-height: 200px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.hero-headline {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    animation: fadeInUp 0.8s ease-out 0.4s both;
    max-width: 24em;
    margin-left: auto;
    margin-right: auto;
}

.hero-tagline {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.6;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-lg);
    letter-spacing: 0.01em;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease-out 0.5s both;
    max-width: 32em;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-container {
    margin-bottom: 2rem;
    animation: fadeInScale 0.8s ease-out 0.8s both;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    background-color: #E91E63;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    letter-spacing: 0.01em;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    background-color: #C2185B;
}
.cta-button:focus-visible {
    outline: 2px solid #C2185B;
    outline-offset: 3px;
}

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.hero-reassurance {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 300;
    font-style: italic;
    margin-top: 1rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 1s both;
}

/* Impactful block sections – consistent spacing, breathing room */
.block-section {
    position: relative;
    z-index: 2;
    padding: calc(var(--sticky-header-height, 140px) + var(--space-2xl)) var(--space-md) var(--space-4xl);
    margin: 0 auto;
}

.block-inner {
    max-width: var(--content-narrow);
    margin: 0 auto;
    padding: 0 var(--space-xs);
}

.block-inner--wide {
    max-width: var(--content-wide);
}

.block-inner--narrow {
    max-width: 520px;
    text-align: center;
}

.block-headline {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
    line-height: var(--line-tight);
}

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

.block-lead {
    font-size: var(--text-lead);
    line-height: var(--line-body);
    color: var(--color-text-muted);
}

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

/* Welcome pop-up modal */
.welcome-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.welcome-modal[hidden] {
    display: none;
}

.welcome-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.welcome-modal-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    max-width: 440px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.welcome-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2.25rem;
    height: 2.25rem;
    border: none;
    background: #F5F0F2;
    color: #3d3539;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s;
}

.welcome-modal-close:hover {
    background: #E91E63;
    color: #fff;
}

.welcome-modal-content {
    padding: 2rem 2rem 2.25rem;
    text-align: center;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.welcome-modal-image {
    width: 100px;
    height: auto;
    margin: 0 auto 1.25rem;
    display: block;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.welcome-modal-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: #3d3539;
    margin: 0 0 1rem;
}

.welcome-modal-intro {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0 0 1.5rem;
}

.welcome-modal-btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    background: #E91E63;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.welcome-modal-btn:hover {
    background: #C2185B;
    transform: translateY(-1px);
}

@media (max-width: 480px) {
    .welcome-modal {
        padding: 0.75rem;
        align-items: flex-start;
    }
    .welcome-modal-card {
        max-height: 85vh;
        margin-top: 2rem;
    }
    .welcome-modal-content {
        padding: 1.25rem 1.25rem 1.5rem;
    }
    .welcome-modal-image {
        width: 72px;
        margin-bottom: 1rem;
    }
    .welcome-modal-title {
        font-size: 1.35rem;
        margin-bottom: 0.75rem;
    }
    .welcome-modal-intro {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }
}

/* Who are you here for? path section */
.path-section {
    background-color: #FCE4EC;
    padding-top: calc(var(--sticky-header-height, 140px) + 2rem);
    padding-bottom: 2.5rem;
}

.path-section .block-headline {
    margin-bottom: 0.75rem;
}

.path-section .block-lead {
    margin-bottom: 0;
}

.path-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.path-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 1rem;
    background: #fff;
    border: 2px solid #e8e4e6;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    font-family: inherit;
}

.path-option:hover {
    border-color: #E91E63;
    background: #FCE4EC;
}

.path-option--active {
    border-color: #E91E63;
    background: #FCE4EC;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.15);
}

.path-option-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #3d3539;
}

.path-option-desc {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.25rem;
}

.path-panels {
    margin-top: 1.25rem;
}

.path-panel {
    padding: var(--space-md) var(--space-lg);
    background: #fff;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-brand-light);
    box-shadow: var(--shadow-soft);
}

.path-panel[hidden] {
    display: none;
}

.path-panel-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 var(--space-sm);
    line-height: var(--line-tight);
}

.path-panel-text {
    font-size: var(--text-body);
    line-height: var(--line-body);
    color: var(--color-text-muted);
    margin: 0 0 var(--space-sm);
}

.path-panel-cta {
    display: inline-block;
    font-weight: 600;
    color: #E91E63;
    text-decoration: none;
}

.path-panel-cta:hover {
    text-decoration: underline;
}

/* Testimonials - carousel, minimal design */
.testimonials-section {
    background: linear-gradient(to bottom, #FAFAFA 0%, #F5F2F3 100%);
    padding: 3.5rem 1.5rem 4rem;
}

.testimonials-section .block-headline {
    margin-bottom: 0.5rem;
}

.testimonials-inner {
    max-width: 640px;
    margin: 0 auto;
}

.testimonials-lead,
.testimonials-section .block-lead--center {
    font-size: var(--text-lead);
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
}

.testimonials-carousel {
    margin-top: 1.5rem;
}

.testimonials-track {
    position: relative;
    min-height: 140px;
}

.testimonial-slide {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
}

.testimonial-slide[hidden] {
    display: none;
}

.testimonial-quote {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    line-height: 1.55;
    color: var(--color-text);
    margin: 0 0 var(--space-sm);
    font-style: italic;
}

.testimonial-by {
    font-size: var(--text-small);
    color: #6B4E5C;
    font-weight: 500;
    margin: 0;
    font-style: normal;
}

.testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(107, 78, 92, 0.3);
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}

.testimonial-dot:hover {
    background: rgba(107, 78, 92, 0.5);
}

.testimonial-dot[aria-selected="true"] {
    background: #6B4E5C;
    transform: scale(1.2);
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #3d3539;
    margin: 0 0 1.25rem;
    font-style: normal;
    position: relative;
    z-index: 1;
    padding-left: 0.5rem;
    overflow: visible;
    word-wrap: break-word;
}

.testimonial-attribution {
    font-size: 0.9rem;
    font-weight: 500;
    color: #6B4E5C;
    margin: 0;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
}

.block-lead {
    font-size: var(--text-lead);
    line-height: var(--line-body);
    color: var(--color-text-muted);
    margin-bottom: var(--space-sm);
}

.block-sublead {
    font-size: var(--text-lead);
    line-height: var(--line-body);
    color: var(--color-text-muted);
    margin-bottom: var(--space-lg);
    max-width: 56ch;
}

.block-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.block-link {
    display: inline-block;
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: #E91E63;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease;
}
.block-link:hover { border-bottom-color: #E91E63; }

.about-block {
    background-color: #F5F0F2;
    background-image: linear-gradient(to bottom, rgba(245,240,242,0.72) 0%, rgba(245,240,242,0.88) 100%), url('Stock/counselling.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.expect-block {
    background-color: #F0EDF0;
    background-image: linear-gradient(to bottom, rgba(240,237,240,0.7) 0%, rgba(240,237,240,0.88) 100%), url('Stock/counselling safe space.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-details {
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.about-details summary {
    cursor: pointer;
    color: #E91E63;
    font-weight: 500;
    list-style: none;
}

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

.about-details[open] summary { margin-bottom: 0.75rem; }

.about-list {
    list-style: none;
    color: #555;
    line-height: 1.8;
}

.about-list li { margin-bottom: 0.25rem; }

.block-topics-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #666;
    margin-bottom: 1rem;
}

.topic-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.pill {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: #fff;
    color: #3d3539;
    border: 1px solid #e0e0e0;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.pill:hover {
    border-color: #E91E63;
    color: #E91E63;
}

.cta-block {
    background-color: #5a4351;
    background-image: linear-gradient(145deg, #6B4E5C 0%, #5a4351 35%, #4a3845 100%);
    color: #fff;
    position: relative;
    z-index: 2;
    padding-top: calc(var(--sticky-header-height, 140px) + 0.75rem);
    padding-bottom: 3rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-top: 5px solid rgba(233, 30, 99, 0.65);
    border-bottom: 5px solid rgba(233, 30, 99, 0.5);
    box-shadow: inset 0 2px 0 rgba(255,255,255,0.08), inset 0 -1px 0 rgba(0,0,0,0.15), 0 6px 24px rgba(0,0,0,0.12);
}

.cta-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 90% 60% at 50% 0%, rgba(233, 30, 99, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.cta-block .block-inner {
    position: relative;
    z-index: 1;
}

.cta-block-inner {
    text-align: center;
}

.cta-block-inner .cta-block-lead {
    margin-bottom: 1rem;
}

.cta-block-inner .cta-button {
    display: inline-block;
}

.cta-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1.25rem;
}

.cta-social .cta-footer-link {
    color: rgba(255,255,255,0.9);
}
.cta-social .cta-footer-link:first-child:hover { color: #25D366; }
.cta-social .cta-footer-link:last-child:hover { color: #1877F2; }

.cta-footer {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem 1.25rem;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.cta-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.95);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s;
}

.cta-footer-link:hover {
    color: #fff;
}

.cta-footer-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

/* Social icon-only links in footer */
.cta-footer-social .cta-footer-icon {
    width: 1.35rem;
    height: 1.35rem;
}
.cta-footer-link:nth-child(3):hover { color: #25D366; }   /* WhatsApp */
.cta-footer-link:nth-child(4):hover { color: #1877F2; }  /* Facebook */

/* Standalone minimal footer (same look on other pages) */
.site-footer-minimal {
    background-color: #5a4351;
    background-image: linear-gradient(145deg, #6B4E5C 0%, #5a4351 35%, #4a3845 100%);
    color: #fff;
    padding: 1rem 1.25rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.75rem 1.25rem;
    border-top: 5px solid rgba(233, 30, 99, 0.5);
}

.site-footer-minimal .cta-footer-link {
    color: rgba(255,255,255,0.95);
}

.site-footer-minimal .cta-footer-link:hover {
    color: #fff;
}
.site-footer-minimal .cta-footer-link:nth-child(4):hover { color: #25D366; }
.site-footer-minimal .cta-footer-link:nth-child(5):hover { color: #1877F2; }

.cta-block-lead {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.cta-block-contact {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.cta-block-contact a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.4);
}

.cta-block-contact a:hover { border-bottom-color: #fff; }

.cta-button--secondary {
    background: #fff;
    color: #5D4A54;
}

.cta-button--secondary:focus-visible {
    outline: 2px solid #5D4A54;
    outline-offset: 3px;
}
.cta-button--secondary:hover {
    background: #F8F7F4;
    color: #6B4E5C;
    box-shadow: 0 4px 14px rgba(107,78,92,0.25);
}

/* Footer logo asset: white background so it’s visible on dark footer, looks intentional */
.footer-logo-wrap {
    background: #fff;
    padding: 0.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}
.footer-logo-img {
    display: block;
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.name-block {
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #FDF8F9;
}

.name-line {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    color: #3d3539;
    margin: 0;
    letter-spacing: 0.03em;
}

.name-line--accent {
    color: #E91E63;
    font-size: clamp(1.15rem, 2.5vw, 1.5rem);
    margin-top: 0.15rem;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Page banners (service subpages) */
.page-banner {
    position: relative;
    min-height: 26vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--sticky-header-height, 140px) + 2rem) 2rem 2rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.32) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 0;
}

.page-banner-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 720px;
}

.page-banner-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: #fff;
    margin: 0 0 0.35rem;
    text-shadow: 0 2px 14px rgba(0,0,0,0.35);
}

.page-banner-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.95);
    margin: 0;
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}

.page-banner--individual {
    background-image: url('c.png');
}

.page-banner--couples {
    background-image: url('counselling.jpg');
}

.page-banner--children {
    background-image: url('smile.jpg');
}

.page-banner--family {
    background-image: url('Stock/family-counselling.png');
}

.service-page .page-section {
    padding-top: 2rem;
}

/* About & What to expect: no banner, so need full top spacing so text isn't under sticky header */
.content-page .page-section {
    padding-top: calc(var(--sticky-header-height, 140px) + 4rem);
}

/* Subpages (individual, couples, children, family, contact) */
.page-section {
    padding: calc(var(--sticky-header-height, 140px) + var(--space-3xl)) var(--space-md) var(--space-4xl);
    max-width: var(--content-narrow);
    margin: 0 auto;
}

.section-inner { width: 100%; padding: 0 var(--space-xs); }
.section-inner--wide { max-width: 720px; margin: 0 auto; }

.section-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
    line-height: var(--line-tight);
}

.subsection-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.page-lead {
    font-size: var(--text-lead);
    line-height: var(--line-body);
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
    max-width: 42rem;
}

.page-cta { margin-top: var(--space-xl); }

.about-section { background-color: #F8F5F6; }

/* About page: soft background image - more visible */
.about-page .page-section.about-section {
    background-image: linear-gradient(to bottom, rgba(248,245,246,0.65) 0%, rgba(248,245,246,0.85) 100%), url('counselling (1).jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* What to expect page: soft background image - more visible */
.what-to-expect-page .page-section.about-section {
    background-image: linear-gradient(to bottom, rgba(248,245,246,0.65) 0%, rgba(248,245,246,0.85) 100%), url('counselling safe space (1).jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-content p {
    margin-bottom: var(--space-md);
    font-size: var(--text-body);
    line-height: var(--line-body);
    color: var(--color-text);
}

.contact-snippet-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #3d3539;
    margin: 1.5rem 0 0.5rem;
}

.contact-snippet {
    margin-bottom: 0.35rem;
}

.contact-snippet a {
    color: #E91E63;
    text-decoration: none;
}

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

/* Footer */
.site-footer {
    background: linear-gradient(165deg, #5a4351 0%, #4a3a45 50%, #3d3038 100%);
    color: rgba(255,255,255,0.95);
    padding: 2.5rem 1.5rem 2rem;
    text-align: center;
    border-top: 3px solid rgba(233, 30, 99, 0.4);
}

.footer-inner {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.footer-brand {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: opacity 0.2s ease;
}

.footer-brand:hover {
    opacity: 0.9;
    color: #fff;
}

.footer-meta {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.75);
    margin: 0;
}

.footer-contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem 0.75rem;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: rgba(255,255,255,0.9);
    text-decoration: underline;
}

.footer-sep {
    color: rgba(255,255,255,0.5);
    font-weight: 300;
    user-select: none;
}

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.footer-copyright a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.footer-copyright a:hover { color: #fff; text-decoration: underline; }

/* Legacy footer structure (if any page still uses it) */
.footer-tagline { font-size: 0.95rem; margin: 0.25rem 0; }
.footer-tagline a { color: #fff; text-decoration: none; }
.footer-tagline a:hover { text-decoration: underline; }
.footer-line { margin: 0.25rem 0; }

.contact-section {
    background: #F5F2F3;
    padding: 0 0 4rem;
    min-height: auto;
    margin-bottom: 0;
}

.contact-banner {
    position: relative;
    min-height: 28vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--sticky-header-height, 140px) + 4rem) 2rem 3rem;
    background: linear-gradient(to bottom, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.15) 100%), url('counselling safe space.jpg') center/cover no-repeat;
    margin-bottom: 2rem;
}

.contact-banner-inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    text-align: center;
}

.contact-banner .contact-headline {
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.contact-banner .contact-intro {
    color: rgba(255,255,255,0.95);
    text-shadow: 0 1px 6px rgba(0,0,0,0.25);
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 0 var(--space-lg);
}

.contact-content {
    width: 100%;
}

.contact-header {
    text-align: center;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.contact-headline {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 600;
    color: #E91E63;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.contact-intro {
    font-size: var(--text-lead);
    color: rgba(255, 255, 255, 0.95);
    line-height: var(--line-body);
    font-weight: 400;
    letter-spacing: 0.01em;
    padding: 0 var(--space-sm);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.contact-form-section {
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.contact-form-section .section-heading {
    margin-bottom: 0.5rem;
}

.form-intro {
    color: #5a6c7d;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-form {
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-form-step {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-form-rest {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e8e4e6;
}

.contact-form-rest[hidden] {
    display: none;
}

.contact-form label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 0.5rem;
}

.contact-form label:first-of-type { margin-top: 0; }

.contact-form input,
.contact-form textarea {
    font-family: inherit;
    font-size: 1rem;
    padding: 0.875rem 1rem;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    background: #fff;
    color: #2c3e50;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #E91E63;
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.15);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.cta-button--form {
    margin-top: 1rem;
    align-self: flex-start;
    min-height: 48px;
    padding: 0.875rem 2rem;
    cursor: pointer;
    font-size: 1rem;
}

.contact-methods-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    padding-top: 0.5rem;
}

.contact-main {
    margin-bottom: 2.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 0 auto 4rem;
    border-top: 1px solid #e0e0e0;
    width: 100%;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.contact-method {
    display: flex;
    align-items: center;
    padding: 2.5rem 1.5rem;
    text-decoration: none;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background-color: #ffffff;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.contact-method:hover {
    padding-left: 2rem;
    background-color: #fff5f8;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.1);
    transform: translateX(4px);
}

.contact-method:hover .method-line {
    width: 4px;
    background: linear-gradient(to bottom, #E91E63, #C2185B);
}

.contact-method:hover .method-arrow {
    opacity: 1;
    transform: translateX(0);
}

.method-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background-color: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.method-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.method-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #5a6c7d;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.method-value {
    font-size: 1.5rem;
    font-weight: 400;
    color: #2c3e50;
    letter-spacing: -0.01em;
}

.contact-method:hover .method-value {
    color: #E91E63;
}

.method-arrow {
    font-size: 1.5rem;
    color: #E91E63;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 300;
}



.map-container {
    margin: 2.5rem auto;
    padding: 2rem;
    background: linear-gradient(135deg, #FDF8F9 0%, #F5F0F2 100%);
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    max-width: 1000px;
    width: 100%;
    animation: fadeInUp 0.8s ease-out 1.2s both;
}

.map-heading {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    color: #3d3539;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
}

.contact-map {
    display: block;
    width: 100%;
    border: none;
}

.locations-section {
    margin: var(--space-2xl) auto;
    padding: var(--space-lg) var(--space-lg);
    background: linear-gradient(135deg, #F5F2F4 0%, #FAF8F9 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid #e8e8e8;
    max-width: 1000px;
    width: 100%;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-heading {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
    line-height: var(--line-tight);
    letter-spacing: -0.02em;
}

.locations-note {
    font-size: 0.95rem;
    color: #5a6c7d;
    font-weight: 300;
    font-style: italic;
}

.locations-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

.location-block {
    text-align: left;
    padding: var(--space-lg);
    background-color: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-block:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.location-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
    line-height: 1.3;
    padding-bottom: 1rem;
    border-bottom: 2px solid #E91E63;
    display: inline-block;
}

.location-address {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.location-address p {
    font-size: var(--text-body);
    color: var(--color-text-muted);
    line-height: var(--line-body);
    margin: 0;
}

.location-divider {
    width: 1px;
    background-color: #e0e0e0;
    align-self: stretch;
}

.faq-section {
    margin: var(--space-2xl) auto var(--space-lg);
    padding: var(--space-lg) var(--space-lg) var(--space-2xl);
    background: linear-gradient(135deg, #F5F2F4 0%, #FDFBFC 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0,0,0,0.06);
    max-width: 1000px;
    width: 100%;
    animation: fadeInUp 0.8s ease-out 1.4s both;
}

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

.accordion-item {
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    margin-bottom: var(--space-sm);
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.accordion-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #e8e8e8;
}

.accordion-item.active {
    box-shadow: 0 4px 16px rgba(233, 30, 99, 0.15);
    border-color: #f0d0d8;
}

.accordion-item:first-child {
    border-top: 1px solid #e0e0e0;
}

.accordion-header {
    width: 100%;
    min-height: 56px;
    padding: var(--space-md) var(--space-lg);
    background-color: #ffffff;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    font-weight: 600;
    color: var(--color-text);
    transition: all 0.3s ease;
    border-radius: var(--radius-md);
    letter-spacing: -0.01em;
    gap: var(--space-sm);
}

.accordion-header:focus-visible {
    outline: 2px solid #E91E63;
    outline-offset: 2px;
}

.accordion-header:hover {
    color: #E91E63;
    background-color: #fff5f8;
}

.accordion-item.active .accordion-header {
    color: #E91E63;
}

.accordion-icon {
    font-size: 1.75rem;
    font-weight: 300;
    color: #E91E63;
    transition: transform 0.3s ease;
    line-height: 1;
}

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

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: #fafafa;
}

.accordion-content p {
    padding: var(--space-md) var(--space-lg) var(--space-lg);
    margin: 0;
    font-size: var(--text-body);
    line-height: var(--line-body);
    color: var(--color-text-muted);
    font-weight: 400;
}

.accordion-content p:first-of-type { padding-top: 1.5rem; }
.accordion-content p:last-child { padding-bottom: 2rem; }

.accordion-list {
    margin: 0 var(--space-lg) var(--space-md);
    padding: 0 0 var(--space-sm);
    list-style: none;
    font-size: var(--text-body);
    line-height: var(--line-body);
    color: var(--color-text-muted);
}
.accordion-list li { margin-bottom: var(--space-xs); padding-left: 0; }
.accordion-list--two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem 2rem;
}
@media (max-width: 600px) {
    .accordion-list--two-col { grid-template-columns: 1fr; }
}
.accordion--page .accordion { margin-top: 0; }

.fees-list {
    padding: var(--space-md) var(--space-lg) var(--space-lg);
}

.fees-list p {
    margin-bottom: var(--space-md);
    font-size: var(--text-body);
    line-height: var(--line-body);
    color: var(--color-text-muted);
    font-weight: 400;
    padding: var(--space-sm) var(--space-md);
    background-color: #ffffff;
    border-left: 3px solid var(--color-brand-light);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft);
    transition: all 0.2s ease;
}

.fees-list p:hover {
    box-shadow: 0 2px 6px rgba(233, 30, 99, 0.1);
    transform: translateX(2px);
}

.fees-list p:last-child {
    margin-bottom: 0;
}

.fees-list strong {
    color: #2c3e50;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

.fees-list span {
    color: #E91E63;
    font-weight: 600;
    font-size: 1.15rem;
    display: inline-block;
    margin-top: 0.25rem;
}

.fees-note {
    margin-top: 2rem;
    padding: 1.5rem 1.25rem;
    border-top: 2px solid #f0f0f0;
    border-left: 3px solid #f0f0f0;
    background-color: #f8f8f8;
    border-radius: 4px;
    font-style: italic;
    color: #5a6c7d;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.8;
}

.block-section.services-showcase {
    background-color: #FAF7F8;
}

.services-showcase-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    min-height: 280px;
}

.service-card-large {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.8s ease-out both;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-card-large::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 0;
    transition: opacity 0.4s ease;
}

.service-card-large:hover::before {
    background: rgba(0, 0, 0, 0.35);
}

.service-card-large:nth-child(1) {
    animation-delay: 1.2s;
    background-image: url('smile.jpg');
}

.service-card-large:nth-child(2) {
    animation-delay: 1.3s;
    background-image: url('Stock/family-counselling.png');
}

.service-card-large:nth-child(3) {
    animation-delay: 1.4s;
    background-image: url('Stock/counselling safe space.jpg');
}

.service-card-large:nth-child(4) {
    animation-delay: 1.5s;
    background-image: url('c.png');
}

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

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

.service-card-large:hover {
    transform: scale(1.02);
}

.service-card-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    max-width: 400px;
}

.service-card-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.service-card-large:hover .service-card-title {
    transform: translateY(-5px);
}

.service-card-description {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.service-card-link {
    display: inline-block;
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    padding: 0.75rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 30px;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.service-card-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    transform: translateX(5px);
}

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive – tablet and mobile: readability and spacing */
@media (max-width: 768px) {
    :root {
        --space-2xl: 2.5rem;
        --space-3xl: 3rem;
        --space-4xl: 3.5rem;
    }

    body {
        font-size: 1rem; /* min 16px for comfortable reading, avoid zoom */
    }

    .block-section {
        padding: calc(var(--sticky-header-height, 140px) + var(--space-xl)) var(--space-sm) var(--space-3xl);
    }

    .block-inner {
        padding: 0 var(--space-sm);
    }

    .block-headline {
        font-size: clamp(1.5rem, 5vw, 2.25rem);
        margin-bottom: var(--space-sm);
    }

    .page-section {
        padding: calc(var(--sticky-header-height, 140px) + var(--space-2xl)) var(--space-sm) var(--space-3xl);
    }

    .section-inner,
    .section-inner--wide {
        padding: 0 var(--space-sm);
    }

    .page-lead {
        font-size: 1.0625rem;
        margin-bottom: var(--space-lg);
    }

    .announcement-bar {
        font-size: 0.875rem;
        padding: 0.625rem 0.75rem;
        min-height: 45px;
        gap: 1rem;
    }

    .main-nav {
        top: 45px;
    }

    /*
     * Mobile menu: vertical dropdown pop-over only.
     * Do not change to horizontal layout, full-screen overlay, or row/grid.
     * Menu is position: absolute below the hamburger, flex-direction: column.
     */
    .nav-container {
        padding: 0 var(--space-sm);
        justify-content: center;
        position: relative;
        z-index: 1002;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        /* Pop-over centered below nav; vertical only */
        position: absolute;
        top: 100%;
        left: 50%;
        margin-top: 0.25rem;
        min-width: 220px;
        max-width: 280px;
        width: max-content;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 0 2px 10px rgba(0, 0, 0, 0.08);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem 0;
        list-style: none;
        font-size: 1rem;
        z-index: 1001;
        overflow: hidden;
        border: 1px solid rgba(0, 0, 0, 0.06);
        /* Closed state: fade + slide up; no pointer events when hidden */
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%) translateY(-8px);
        pointer-events: none;
        transition: opacity 0.1s ease, transform 0.1s ease, visibility 0.1s;
    }

    .main-nav.nav-open .nav-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
        pointer-events: auto;
    }

    .nav-menu > li {
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .nav-menu > li:last-child {
        border-bottom: none;
    }

    .nav-menu a,
    .nav-menu .dropdown-toggle {
        display: block;
        width: 100%;
        padding: 0.75rem 1.25rem;
        text-align: left;
        text-decoration: none;
        color: #2c3e50;
        font: inherit;
        font-weight: 500;
        background: none;
        border: none;
        cursor: pointer;
        box-sizing: border-box;
    }

    .nav-menu a:hover,
    .nav-menu .dropdown-toggle:hover {
        background: rgba(233, 30, 99, 0.08);
        color: #E91E63;
    }

    .nav-menu .nav-button {
        margin: 0.5rem 0.75rem 0.25rem;
        text-align: center;
        border-radius: 8px;
        background: #E91E63;
        color: #fff !important;
    }

    .nav-menu .nav-button:hover {
        background: #C2185B;
        color: #fff !important;
    }

    .nav-menu .language-toggle {
        margin: 0.25rem 0.75rem 0.5rem;
        padding: 0;
    }

    .nav-menu .language-toggle .lang-btn {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    /* Submenu: always visible when menu is open so "Counselling services" can be a direct link (no toggle lag). */
    .nav-menu .dropdown-menu {
        position: static;
        display: block;
        box-shadow: none;
        background: rgba(248, 245, 246, 0.9);
        padding: 0.25rem 0 0.5rem 0;
        margin: 0;
        margin-left: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: none;
        list-style: none;
    }

    .main-nav.nav-open .nav-menu .dropdown-menu {
        max-height: 320px;
        opacity: 1;
    }

    .nav-menu .dropdown-menu a {
        display: block;
        width: 100%;
        padding: 0.6rem 1.25rem 0.6rem 2rem;
        font-size: 0.9375rem;
        color: #555;
        box-sizing: border-box;
    }

    .nav-menu .dropdown-menu a:hover {
        background: rgba(233, 30, 99, 0.06);
        color: #E91E63;
    }

    .language-toggle {
        margin-left: 0.5rem;
    }

    .lang-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }

    .dropdown-menu {
        left: 0;
        transform: none;
    }

    .path-options {
        grid-template-columns: 1fr;
    }

    .path-option {
        padding: var(--space-md) var(--space-sm);
    }

    .path-panel {
        padding: var(--space-md) var(--space-sm);
    }

    .testimonials-section {
        padding: var(--space-2xl) var(--space-sm) var(--space-3xl);
    }

    .testimonials-lead,
    .testimonials-section .block-lead--center {
        font-size: 1rem;
        margin-bottom: var(--space-lg);
    }

    .testimonial-quote {
        font-size: clamp(1.125rem, 4vw, 1.35rem);
    }

    .site-footer {
        padding: var(--space-lg) var(--space-md);
    }

    .site-footer-minimal {
        padding: 0.875rem var(--space-md);
    }

    .footer-brand {
        font-size: 1.25rem;
    }

    .footer-contact {
        flex-direction: column;
        gap: 0.25rem;
    }

    .footer-sep {
        display: none;
    }

    .hero-section {
        padding-top: calc(var(--sticky-header-height, 140px) + var(--space-md));
        padding-left: var(--space-sm);
        padding-right: var(--space-sm);
        background-attachment: scroll;
    }

    .hero-image {
        max-width: 160px;
    }

    .hero-headline {
        margin-bottom: var(--space-sm);
    }

    .hero-tagline {
        margin-bottom: var(--space-md);
        padding: 0 var(--space-xs);
    }

    .hero-cta-container {
        margin-bottom: var(--space-lg);
    }

    .services-showcase-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .service-card-large {
        padding: var(--space-2xl) var(--space-lg);
        min-height: 320px;
    }

    .service-card-content {
        max-width: 100%;
    }

    .hero-image-container {
        margin-bottom: var(--space-md);
    }

    .cta-button {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
        min-height: 48px;
        width: 100%;
        max-width: 300px;
    }

    .cta-block {
        padding-left: var(--space-sm);
        padding-right: var(--space-sm);
        padding-bottom: var(--space-2xl);
    }

    .cta-block-lead {
        font-size: 1.2rem;
        margin-bottom: var(--space-sm);
    }

    .cta-footer {
        margin-top: 0.75rem;
        padding-top: 0.5rem;
    }

    .hero-reassurance {
        font-size: 0.9375rem;
        padding: 0 var(--space-sm);
    }

    .accordion-header {
        padding: var(--space-sm) var(--space-md);
    }

    .accordion-content p {
        padding: var(--space-sm) var(--space-md) var(--space-lg);
    }

    .contact-banner {
        padding: calc(var(--sticky-header-height, 140px) + var(--space-2xl)) var(--space-md) var(--space-xl);
    }

    .contact-form-section {
        padding: var(--space-lg) 0;
        margin-bottom: var(--space-2xl);
    }

    .form-intro {
        margin-bottom: var(--space-md);
    }
}

@media (max-width: 480px) {
    .block-section {
        padding-left: var(--space-sm);
        padding-right: var(--space-sm);
    }

    .page-section {
        padding-left: var(--space-sm);
        padding-right: var(--space-sm);
    }

    .announcement-bar {
        font-size: 0.8125rem;
        padding: 0.5rem 0.625rem;
        gap: 0.5rem;
        min-height: auto;
    }

    .announcement-bar p {
        font-size: 0.8125rem;
        line-height: 1.4;
        margin: 0;
    }

    .announcement-button {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }

    .main-nav {
        top: 60px;
        padding: 0.875rem 0;
    }
    
    /* Vertical dropdown only; no horizontal layout */
    .nav-menu {
        gap: 0.5rem;
        font-size: 0.9375rem;
        min-width: 200px;
    }

    .nav-menu a,
    .nav-menu .dropdown-toggle {
        padding: 0.6rem 1.25rem;
    }

    .language-toggle {
        margin-left: 0.25rem;
    }
    
    .lang-btn {
        padding: 0.35rem 0.7rem;
        font-size: 0.8rem;
    }
    
    .hero-section {
        padding-top: calc(var(--sticky-header-height, 140px) + 1rem);
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
    }
    
    .service-card-large {
        padding: 2.5rem 1.5rem;
        min-height: 350px;
    }
    
    .service-card-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .service-card-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-section {
        padding: calc(var(--sticky-header-height, 140px) + 2rem) 1.5rem 4rem;
    }
    
    .contact-header {
        margin-bottom: 4rem;
        padding: 2rem 0;
    }
    
    .contact-headline {
        margin-bottom: 1.5rem;
    }
    
    .contact-methods {
        max-width: 100%;
        margin-bottom: 3rem;
    }
    
    .contact-method {
        padding: 1.75rem 1rem;
    }
    
    .contact-method:hover {
        padding-left: 1.25rem;
    }
    
    .method-value {
        font-size: 1.15rem;
    }
    
    .contact-container {
        padding-bottom: 200px;
    }
    
    .locations-section {
        padding: 2.5rem 1.5rem;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .location-divider {
        width: 100%;
        height: 1px;
    }
    
    .map-container {
        padding: 2rem 1.5rem;
    }
    
    .faq-section {
        padding: 3rem 1.5rem;
    }
}

/* Decorative fixed image (index only). Smaller on mobile so it doesn’t cover text. */
.fixed-image {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 5;
    pointer-events: none;
    width: auto;
    max-width: 315px;
    display: flex;
    align-items: flex-end;
    height: auto;
}

@media (max-width: 768px) {
    .fixed-image {
        max-width: 140px;
        z-index: 5;
    }
}

.fixed-azy-image {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.95;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.2));
    transition: opacity 0.3s ease;
    object-fit: contain;
}

.fixed-azy-image:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .contact-note {
        padding: 2rem 1.5rem;
    }

    .map-heading {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .map-container {
        margin: 3rem 0;
    }

    .contact-header {
        padding: 2rem 1rem;
        margin-bottom: 3rem;
    }

    .contact-headline {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .contact-intro {
        font-size: 1rem;
        padding: 0;
    }

    .locations-section,
    .map-container,
    .faq-section {
        margin: 3rem auto;
        padding: 2.5rem 1.5rem;
    }

    .locations-section {
        padding: 3rem 1.5rem;
        margin: 3rem 0;
    }

    .accordion-header {
        padding: 1rem 1.25rem;
        min-height: 48px;
        font-size: 1.05rem;
        word-wrap: break-word;
        hyphens: auto;
    }

    .accordion-content p {
        padding: 1.25rem 1.5rem 1.75rem;
        font-size: 1rem;
    }

    .fees-list {
        padding: 1.25rem 1.5rem 1.75rem;
    }

    .fees-list p {
        padding: 0.875rem 1rem;
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .fees-list strong {
        font-size: 1rem;
    }

    .fees-list span {
        font-size: 1.05rem;
    }

    .locations-section {
        padding: 2.5rem 1rem;
    }
}

