/*
Theme Name: DMW Relational Counselling
Description: Professional counselling website theme for DMW Relational Counselling. Features responsive design, mental health focus, and comprehensive service pages. Designed for individuals, couples, families, and young people seeking professional mental health support.
Version: 1.0.0
Author: DMW Relational Counselling
Author URI: https://dmw-relationalcounselling.co.uk
Text Domain: dmw
Domain Path: /languages
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: counselling, mental-health, professional, responsive, accessibility-ready, custom-colors, custom-logo, custom-menu, featured-images, flexible-header, post-formats, rtl-language-support, theme-options, threaded-comments, translation-ready
*/

/* ==========================================================================
   CSS CUSTOM PROPERTIES (DESIGN SYSTEM)
   ========================================================================== */

:root {
    /* Colors */
    --primary-color: #4A7C59;
    /* Lighter forest green */
    --secondary-color: #6B9B7A;
    /* Soft sage green */
    --accent-color: #A4C3A2;
    /* Light sage accent */
    --text-dark: #1A202C;
    /* Dark text */
    --text-medium: #4A5568;
    /* Medium text */
    --text-light: #718096;
    /* Light text */
    --background-light: #F4F7F4;
    /* Very light green background */
    --background-white: #FFFFFF;
    /* Pure white */
    --border-color: #E2E8F0;
    /* Borders */
    --success-color: #48BB78;
    /* Success green */
    --danger-color: #E53E3E;
    /* Danger red */
    --warning-color: #ED8936;
    /* Warning orange */

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-full: 50%;

    /* Container */
    --container-max-width: 1200px;
    --content-max-width: 800px;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--background-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0 !important;
    padding: 0 !important;
}

/* Site Header Styles */
.site-header {
    background: var(--background-white);
    box-shadow: none;
    /* Remove shadow to eliminate any visual separation */
    position: fixed;
    top: 0;
    /* Default position without crisis bar */
    left: 0;
    right: 0;
    z-index: 1001;
    transition: all 0.3s ease;
}

.site-header.scrolled {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-md);
}

.header-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0.75rem 0;
    min-height: 60px;
    gap: 2rem;
}

/* Site Branding */
.site-branding {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none !important;
    margin: 0;
}

.site-title:hover {
    color: var(--secondary-color);
    text-decoration: none !important;
}

.site-description {
    display: none;
}

/* Hide header contact info */
.header-contact-info {
    display: none !important;
}

/* Fix any link underlines in header */
.site-branding a {
    text-decoration: none !important;
}

.site-branding a:hover {
    text-decoration: none !important;
}

/* Navigation Styles */
.main-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

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

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color var(--transition-base);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.current-menu-item {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width var(--transition-base);
}

.nav-menu a:hover::after,
.nav-menu a.current-menu-item::after {
    width: 100%;
}

/* Header Contact Info */
.header-contact-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}

.header-contact-item:hover {
    color: var(--primary-color);
}

.header-contact-icon {
    color: var(--primary-color);
}

/* Header CTA */
.header-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.desktop-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Crisis Alert */
.crisis-alert {
    background: var(--danger-color);
    color: white;
    padding: 0.5rem 0;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1002;
    display: none;
    /* Hide crisis bar by default */
}

/* Promotional Bar */
.promo-bar {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: var(--text-dark);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.promo-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="promo-dots" patternUnits="userSpaceOnUse" width="10" height="10"><circle fill="rgba(255,255,255,0.1)" cx="5" cy="5" r="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23promo-dots)"/></svg>');
    opacity: 0.3;
}

.promo-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.promo-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.promo-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.promo-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.promo-btn {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.promo-btn:hover {
    background: var(--text-dark);
    transform: translateY(-1px);
    color: white;
}

.promo-btn-secondary {
    background: transparent;
    color: var(--primary-color);
    padding: 0.5rem 1.25rem;
    border: 2px solid var(--primary-color);
    border-radius: 0.375rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.promo-btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Show crisis bar when specifically enabled */
body.show-crisis-bar .crisis-alert {
    display: block;
}

/* Adjust header position based on crisis bar visibility */
body.show-crisis-bar .site-header {
    top: 40px;
}

body:not(.show-crisis-bar) .site-header {
    top: 0;
}

body.show-crisis-bar .hero-section {
    margin-top: 120px;
    /* Crisis bar + header */
}

body:not(.show-crisis-bar) .hero-section {
    margin-top: 80px;
    /* Header only */
}

.crisis-alert a {
    color: white;
    text-decoration: underline;
    font-weight: 700;
    transition: opacity 0.3s ease;
}

.crisis-alert a:hover {
    opacity: 0.8;
    text-decoration: none;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.heading-xl {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
}

.heading-lg {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.2;
}

.heading-md {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.7;
}

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

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

.section-light {
    background: var(--background-light);
}

.section-white {
    background: var(--background-white);
}

.section-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.section-header {
    margin-bottom: var(--spacing-2xl);
}

.section-cta {
    margin-top: var(--spacing-2xl);
}

/* Text Alignment */
.text-center {
    text-align: center;
}

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

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

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

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

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

.btn-white:hover {
    background: var(--background-light);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

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

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

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-icon {
    font-size: 1.2em;
}

/* ==========================================================================
   HERO SECTION (Exact Signed-off Design Match)
   ========================================================================== */

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 8rem 0 6rem;
    margin-top: -10px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="dots" patternUnits="userSpaceOnUse" width="20" height="20"><circle fill="rgba(255,255,255,0.1)" cx="10" cy="10" r="2"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    color: white;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
}

.hero-text .text-accent {
    color: var(--accent-color);
    font-weight: 600;
    /* Keep bold like rest of title */
}

.hero-text p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn-primary {
    background: rgba(164, 195, 162, 0.9);
    color: var(--text-dark);
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-buttons .btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.hero-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    text-align: center;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-card h3 {
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.hero-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.85;
    flex-wrap: wrap;
}

.hero-features span {
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

/* Trust Indicators Section (Exact Match) */
.trust-section {
    background: #f4f5f6;
    padding: 2.5rem 0;
    /* Reduced from 4rem to match design */
    border-top: 1px solid #e8eaed;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    text-align: center;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
}

.trust-icon-wrapper {
    margin-bottom: 1.5rem;
}

.trust-icon {
    width: 72px;
    /* Reduced from 80px - 10% smaller */
    height: 72px;
    /* Reduced from 80px - 10% smaller */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    /* Reduced from 2rem */
    color: white;
    margin: 0 auto;
    background: var(--primary-color);
    /* All icons same green background */
}

/* Remove individual color classes - all icons are now green */
.trust-icon.graduate,
.trust-icon.lock,
.trust-icon.laptop,
.trust-icon.heart {
    background: var(--primary-color);
}

.trust-item h4 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-primary);
    /* Use primary font, not heading font */
}

.trust-item p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
    font-family: var(--font-primary);
}

/* ==========================================================================
   SERVICES SECTION (Exact Signed-Off Design Match)
   ========================================================================== */

.services-section {
    padding: 6rem 0;
    background: var(--background-white);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 2.5rem;
    font-weight: 700;
    /* Bolder to match mockup */
    font-family: var(--font-heading);
    /* Use heading font family */
}

.section-header .text-accent {
    color: var(--accent-color);
}

.section-header p {
    color: var(--text-medium);
    font-size: 1.125rem;
    line-height: 1.6;
}

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

.service-card {
    background: var(--background-white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    /* Increased lift for more noticeable effect */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 10px 20px -5px rgba(0, 0, 0, 0.1);
    border-color: rgba(164, 195, 162, 0.3);
    /* Subtle accent border on hover */
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.service-card p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.service-link:hover {
    color: var(--accent-color);
    text-decoration: none;
}

/* Service Meta (for prices, durations) */
.service-meta {
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-price,
.service-duration {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 600;
    background: var(--background-light);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    border: 1px solid var(--accent-color);
}

.service-price::before {
    content: '💰 ';
    margin-right: 0.25rem;
}

.service-duration::before {
    content: '⏱️ ';
    margin-right: 0.25rem;
}

/* Legacy hero-section class for compatibility */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 8rem 0 4rem;
    margin-top: -10px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-trust-indicators {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* ==========================================================================
   QUICK CONTACT BAR
   ========================================================================== */

.quick-contact-section {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
}

.quick-contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.contact-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-details strong {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-details span,
.contact-details a {
    color: var(--text-medium);
    font-size: 0.9rem;
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--primary-color);
}

/* ==========================================================================
   SERVICES SECTION (Enhanced)
   ========================================================================== */

.services-section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-medium);
    font-size: 1.125rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-base);
    border: 1px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}


.service-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    display: block;
    padding-left: 4px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-primary)'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-meta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.service-price {
    color: var(--primary-color);
    font-weight: 600;
}

.service-duration {
    color: var(--text-medium);
}

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

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

/* ==========================================================================
   STATISTICS SECTION
   ========================================================================== */

.stats-section {
    background: var(--primary-color);
    color: white;
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.stat-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-item p {
    opacity: 0.9;
    line-height: 1.5;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */

.about-section {
    background: var(--background-light);
    padding: 4rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-placeholder {
    width: 300px;
    height: 300px;
    background: white;
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 2px dashed var(--border-color);
    box-shadow: var(--shadow-sm);
}

.about-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text .text-lg {
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    line-height: 1.7;
}

.about-btn {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.qualifications {
    margin: 2rem 0;
}

.qualifications h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.25rem;
}

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

.qualifications-list li {
    margin-bottom: 0.75rem;
    color: var(--text-medium);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.testimonials-section {
    background: var(--background-white);
    padding: 4rem 0;
}

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

.testimonial-card {
    background: var(--background-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
    transition: all var(--transition-base);
}

.testimonial-card p {
    font-style: italic;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--primary-color);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

/* ==========================================================================
   BLOG PREVIEW SECTION
   ========================================================================== */

.blog-section {
    background: var(--background-light);
    padding: 4rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.blog-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--border-color);
}

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

.blog-image,
.blog-image-placeholder {
    width: 100%;
    height: 200px;
    background: var(--background-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    color: var(--text-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.blog-title {
    margin-bottom: 1rem;
}

.blog-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color var(--transition-base);
}

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-base);
}

.read-more:hover {
    color: var(--secondary-color);
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
}

.cta-buttons .btn-primary {
    background: var(--accent-color);
    color: var(--text-dark);
    border-color: var(--accent-color);
}

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

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

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

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */

/* About Preview Section */
.about-preview {
    background: #F4F7F4;
    padding: 6rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-photo {
    width: 100%;
    height: 400px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.credentials-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: var(--background-white);
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.about-text h2 {
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}




/* ==========================================================================
   TESTIMONIALS SECTION - Exact Design Match
   ========================================================================== */

.testimonials-section {
    background: white;
    padding: 6rem 0;
}

.testimonials-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.testimonials-section .section-header h2 {
    color: var(--text-dark);
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
}

.testimonials-section .section-header .text-accent {
    color: var(--accent-color);
}

.testimonials-section .section-header p {
    color: var(--text-medium);
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #f8f9fa;
    border-radius: 1.5rem;
    padding: 3rem 2.5rem;
    border: 1px solid #e9ecef;
    position: relative;
    border-left: 4px solid var(--accent-color);
}

.testimonial-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-quote {
    color: #6c757d;
    font-size: 1.125rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 2rem;
    flex: 1;
}

.testimonial-attribution {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
    font-style: normal;
}

/* Responsive */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 0;
    }

    .testimonials-section .section-header h2 {
        font-size: 2.5rem;
    }

    .testimonial-quote {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

/* ==========================================================================
   WHY CHOOSE SECTION
   ========================================================================== */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid var(--border-color);
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* ==========================================================================
   LATEST INSIGHTS SECTION - Exact Design Match
   ========================================================================== */

.blog-section {
    background: white;
    padding: 6rem 0;
    background: #f4f5f6;
    border-top: 1px solid #e8eaed;
}

.blog-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.blog-section .section-header h2 {
    color: var(--text-dark);
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
}

.blog-section .section-header .text-accent {
    color: var(--accent-color);
}

.blog-section .section-header p {
    color: var(--text-medium);
    font-size: 1.125rem;
    line-height: 1.6;
    margin: 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-image-placeholder {
    width: 100%;
    height: 200px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
    font-weight: 500;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.blog-category {
    color: #6b7280;
    font-weight: 500;
}

.blog-separator {
    color: #6b7280;
}

.blog-read-time {
    color: #6b7280;
}

.blog-title {
    margin-bottom: 1rem;
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.3;
}

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

.blog-title a:hover {
    color: var(--primary-color);
}

.blog-excerpt {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: var(--accent-color);
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 4rem 0;
    }

    .blog-section .section-header h2 {
        font-size: 2.5rem;
    }

    .blog-content {
        padding: 1.5rem;
    }

    .blog-title {
        font-size: 1.25rem;
    }
}

/* ==========================================================================
   CONTACT CTA SECTION
   ========================================================================== */

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-btn {
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.cta-whatsapp {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* ==========================================================================
   CRISIS SUPPORT SECTION
   ========================================================================== */

.crisis-support-section {
    background: var(--background-light);
    padding: 3rem 0;
    border-radius: var(--radius-lg);
    margin: 2rem 0;
}

.crisis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.crisis-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.crisis-card.emergency {
    border-color: var(--danger-color);
    background: linear-gradient(135deg, var(--danger-color), #ff6b6b);
    color: white;
}

.crisis-card.support {
    border-color: var(--primary-color);
}

.crisis-card.help {
    border-color: var(--secondary-color);
}

.crisis-card h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.crisis-card p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.crisis-number {
    display: inline-block;
    font-weight: 700;
    font-size: 1.1rem;
}

/* ==========================================================================
   MOBILE MENU STYLES (Enhanced from Header)
   ========================================================================== */

.mobile-header-controls {
    display: none;
    align-items: center;
    justify-self: end;
}

.mobile-cta {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    white-space: nowrap;
}

.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger-box {
    width: 24px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 24px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -8px;
}

.hamburger-inner::after {
    bottom: -8px;
}

.mobile-menu-toggle.active .hamburger-inner {
    transform: rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-inner::before {
    top: 0;
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 90vw;
    height: 100vh;
    background: var(--background-white);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu-container {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--background-light);
}

.mobile-menu-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

.mobile-menu-content {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0 0 2rem 0;
    padding: 0;
}

.mobile-nav-menu li {
    margin-bottom: 0.5rem;
}

.mobile-nav-menu a {
    display: block;
    padding: 1rem 0;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu a.current {
    color: var(--primary-color);
    padding-left: 1rem;
}

.mobile-contact-section {
    margin: 1rem 0 2rem;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: 1rem;
}

.mobile-contact-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.mobile-contact-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
}

.mobile-contact-item:hover {
    background: var(--background-white);
}

.mobile-menu-cta {
    margin-top: auto;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.mobile-cta-subtitle {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-medium);
}

/* Extra small screens (very narrow Android phones) */
@media (max-width: 360px) {
    .header-content {
        padding: 0 0.75rem !important;
        gap: 0rem !important;
    }

    .mobile-header-controls {
        gap: 0.25rem !important;
    }

    .mobile-cta {
        font-size: 0.8rem !important;
        padding: 0.4rem 0.6rem !important;
    }

    .mobile-menu-toggle {
        padding: 0.5rem 0.25rem !important;
    }

    .site-title {
        font-size: 1.1rem !important;
    }

    .site-header {
        position: sticky !important;
        top: 0 !important;
    }
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 1024px) {
    .header-contact-info {
        display: none;
    }

    .hero-content,
    .about-homepage-grid,
    .cta-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero,
    .hero-section {
        padding: 7rem 0 3rem;
        margin-top: -8px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-card {
        max-width: 100%;
        margin: 0 auto;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .trust-icon {
        width: 63px;
        /* 10% smaller than 70px */
        height: 63px;
        font-size: 1.6rem;
    }

    /* Services responsive */
    .services-section {
        padding: 5rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .services-grid,
    .benefits-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .promo-text {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        grid-template-columns: 1fr auto;
        gap: 1rem;
    }

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

    .mobile-header-controls {
        display: flex !important;
    }

    .main-navigation {
        display: none;
    }

    .nav-menu {
        display: none;
    }

    .hero,
    .hero-section {
        padding: 6rem 0 2rem;
        text-align: center;
        margin-top: -5px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .trust-icon {
        width: 54px;
        /* 10% smaller than 60px */
        height: 54px;
        font-size: 1.35rem;
    }

    .hero-card {
        max-width: 100%;
        margin: 0 auto;
        padding: 2rem 1.5rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    /* Services mobile responsive */
    .services-section {
        padding: 4rem 0;
    }

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

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-header {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .service-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hero-trust-indicators {
        justify-content: center;
    }

    .quick-contact-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .services-grid,
    .testimonials-grid,
    .benefits-grid,
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .about-placeholder {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }

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

    .cta-buttons .btn {
        min-width: 250px;
    }

    .promo-content {
        padding: 0 1rem;
    }

    .promo-actions {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }

    .promo-btn,
    .promo-btn-secondary {
        width: 100%;
        text-align: center;
    }

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

    .hero-trust-indicators {
        flex-direction: column;
        gap: 0.75rem;
    }

    /* Section padding adjustments for mobile */
    .services-section,
    .about-section,
    .testimonials-section,
    .blog-section,
    .cta-section,
    .footer {
        padding: 3rem 0;
    }

    .stats-section {
        padding: 2rem 0;
    }

    /* Footer mobile adjustments */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

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

    .cta-contact-options {
        flex-direction: column;
        gap: 1rem;
    }

    .crisis-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) {
    .mobile-header-controls {
        display: none !important;
    }

    .desktop-nav {
        display: flex !important;
    }

    .desktop-cta {
        display: flex !important;
    }

    .nav-menu {
        display: flex !important;
    }

    .main-navigation {
        display: flex !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .section {
        padding: 2rem 0;
    }

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

    .hero-trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .mobile-menu-container {
        width: 100vw;
    }

    .service-card,
    .benefit-card,
    .testimonial-card {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   ANIMATIONS & INTERACTIONS
   ========================================================================== */

@media (prefers-reduced-motion: no-preference) {

    .service-card,
    .benefit-card,
    .testimonial-card,
    .blog-preview-card {
        transition: transform var(--transition-base), box-shadow var(--transition-base);
    }

    .btn {
        transition: all var(--transition-base);
    }

    .hero-section {
        animation: fadeInUp 0.8s ease-out;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */

.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.skip-link {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    position: absolute;
    top: -40px;
    left: 6px;
    z-index: 999999;
    border-radius: var(--radius-sm);
}

.skip-link:focus {
    top: 6px;
}

/* Focus styles for better accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ==========================================================================
   PRINT STYLES
   ========================================================================== */

@media print {

    .site-header,
    .mobile-menu-overlay,
    .hero-buttons,
    .cta-buttons,
    .crisis-support-section {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    h1,
    h2,
    h3 {
        page-break-after: avoid;
    }
}

/* ==========================================================================
   FOOTER STYLES (Signed-off Design Match)
   ========================================================================== */

.footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-size: 1.25rem;
    font-weight: 600;
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    text-align: center;
    color: #999;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
    color: white;
    padding: 1rem;
    border-radius: var(--radius-full);
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

.whatsapp-icon {
    font-size: 1.5rem;
}

.whatsapp-text {
    font-weight: 600;
    display: none;
}

@media (min-width: 768px) {
    .whatsapp-float:hover .whatsapp-text {
        display: block;
    }
}

/* Breadcrumb */
.breadcrumb {
    background: var(--background-light);
    padding: 1rem 0;
    margin-top: 80px;
}

.breadcrumb ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb a {
    color: var(--text-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

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

/* ==========================================================================
   BOOKINGPRESS TEMPLATES - DMW THEME STYLING
   ========================================================================== */

/* ==========================================================================
   SHARED BOOKINGPRESS STYLES
   ========================================================================== */

.bookingpress-page,
.bookingpress-confirmation-page,
.bookingpress-dashboard-page {
    background: var(--background-white);
    min-height: 100vh;
}

/* Page Hero Sections */
.page-hero,
.confirmation-hero,
.dashboard-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-hero-content,
.confirmation-hero-content,
.dashboard-hero-content {
    max-width: 800px;
    margin: 2rem auto;
}

.page-title,
.confirmation-title,
.dashboard-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.page-subtitle,
.confirmation-subtitle,
.dashboard-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Hero Trust Indicators */
.hero-trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-icon {
    font-size: 1.2rem;
}

/* Success Icon for Confirmation */
.success-icon {
    background: var(--success-color);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.checkmark {
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

/* ==========================================================================
   MAIN BOOKING FORM PAGE
   ========================================================================== */

.bookingpress-main-section {
    padding: 4rem 0;
}

.bookingpress-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Form Column */
.bookingpress-form-column {
    background: white;
}

.bookingpress-form-container {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

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

.form-header h2 {
    color: var(--text-dark);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-medium);
    font-size: 1rem;
}

/* BookingPress Wrapper */
.bookingpress-wrapper {
    margin-top: 2rem;
}

.bookingpress-notice {
    background: var(--background-light);
    border: 1px solid var(--accent-color);
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: center;
    color: var(--text-medium);
}

/* Information Sidebar */
.bookingpress-info-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.info-card h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

/* Counsellors Card */
.counsellor-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.counsellor-item:last-child {
    margin-bottom: 0;
}

.counsellor-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.counsellor-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.counsellor-details h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.counsellor-title {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.counsellor-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--background-light);
    color: var(--primary-color);
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-weight: 500;
}

/* What to Expect Card */
.expect-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.expect-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.expect-list li:last-child {
    margin-bottom: 0;
}

.expect-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.expect-list strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.25rem;
}

.expect-list p {
    color: var(--text-medium);
    margin: 0;
    font-size: 0.9rem;
}

/* Contact Card */
.contact-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
}

.contact-option:hover {
    background: var(--background-light);
    color: var(--primary-color);
}

.contact-icon {
    font-size: 1.2rem;
}

/* Crisis Support */
.crisis-support-booking {
    background: var(--danger-color);
    color: white;
    padding: 2rem 0;
}

.crisis-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.crisis-card h3 {
    color: white;
    margin-bottom: 1rem;
}

.crisis-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.crisis-contacts {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.crisis-link {
    background: white;
    color: var(--danger-color);
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.crisis-link:hover {
    background: var(--background-light);
    transform: translateY(-1px);
}

/* ==========================================================================
   BOOKING CONFIRMATION PAGE
   ========================================================================== */

.confirmation-details-section {
    padding: 4rem 0;
}

.confirmation-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Booking Details */
.details-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.details-card h2 {
    color: var(--text-dark);
    font-size: 1.75rem;
    margin-bottom: 2rem;
}

/* Appointment Summary */
.appointment-summary {
    background: var(--background-light);
    border-radius: 0.75rem;
    padding: 2rem;
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.summary-item strong {
    color: var(--text-dark);
}

.summary-item span {
    color: var(--text-medium);
}

/* Booking Actions */
.booking-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Next Steps */
.steps-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    gap: 1rem;
}

.step-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.step-content h4 {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-medium);
    margin: 0;
    font-size: 0.9rem;
}

/* Preparation List */
.preparation-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.preparation-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.preparation-list li:last-child {
    margin-bottom: 0;
}

.prep-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

/* Support Options */
.support-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.support-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.2s;
}

.support-option:hover {
    background: var(--background-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.support-icon {
    font-size: 1.2rem;
}

/* Confirmation Testimonial */
.confirmation-testimonial {
    background: var(--background-light);
    padding: 3rem 0;
}

.testimonial-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-content blockquote {
    color: var(--text-dark);
    font-size: 1.125rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1rem;
    padding: 0;
    border: none;
}

.testimonial-content cite {
    color: var(--text-medium);
    font-style: normal;
    font-weight: 600;
}

/* ==========================================================================
   CUSTOMER DASHBOARD PAGE
   ========================================================================== */

.dashboard-main-section {
    padding: 4rem 0;
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Dashboard Sidebar */
.dashboard-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dashboard-nav-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.dashboard-nav-card h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.dashboard-nav {
    display: flex;
    flex-direction: column;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    color: var(--text-medium);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.2s;
    margin-bottom: 0.25rem;
}

.nav-item:hover,
.nav-item.active {
    background: var(--background-light);
    color: var(--primary-color);
}

.nav-item.book-new {
    background: var(--primary-color);
    color: white;
    margin-top: 0.5rem;
}

.nav-item.book-new:hover {
    background: var(--secondary-color);
    color: white;
}

.nav-icon {
    font-size: 1.1rem;
}

/* Quick Actions */
.dashboard-actions-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.quick-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    border: 1px solid transparent;
}

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

.action-btn.primary:hover {
    background: var(--secondary-color);
}

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

.action-btn.secondary:hover {
    background: var(--background-light);
    border-color: var(--primary-color);
}

.action-icon {
    font-size: 1.1rem;
}

/* Dashboard Content */
.dashboard-content {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.dashboard-section {
    margin-bottom: 3rem;
}

.dashboard-section:last-child {
    margin-bottom: 0;
}

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

.section-header h2 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-medium);
    margin: 0;
}

/* Appointments Grid */
.appointments-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.appointment-card {
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.2s;
}

.appointment-card.upcoming {
    border-left: 4px solid var(--primary-color);
}

.appointment-card.completed {
    border-left: 4px solid var(--success-color);
}

.appointment-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.appointment-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.appointment-date {
    text-align: center;
    background: var(--background-light);
    border-radius: 0.5rem;
    padding: 0.75rem;
    min-width: 60px;
}

.date-day {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.date-month {
    font-size: 0.8rem;
    color: var(--text-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.appointment-details h3 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.counsellor {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.time {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.session-type {
    color: var(--text-medium);
    font-size: 0.85rem;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.completed {
    background: rgba(72, 187, 120, 0.1);
    color: var(--success-color);
}

/* Appointment Actions */
.appointment-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-sm {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
}

/* Profile Notice */
.profile-card {
    background: var(--background-light);
    border-radius: 0.75rem;
    padding: 2rem;
    text-align: center;
}

.profile-notice p {
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.profile-notice p:last-child {
    margin-bottom: 0;
}

/* Dashboard Support */
.dashboard-support {
    background: var(--background-light);
    padding: 3rem 0;
}

.support-card {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.support-card h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.support-card > p {
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.support-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.support-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
}

.support-item .support-icon {
    font-size: 2rem;
    color: var(--primary-color);
}

.support-item strong {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.support-item p {
    margin: 0;
}

.support-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.support-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .bookingpress-layout,
    .confirmation-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .dashboard-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .dashboard-sidebar {
        order: 2;
    }

    .dashboard-content {
        order: 1;
    }

    .support-contacts {
        grid-template-columns: 1fr;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .page-hero,
    .confirmation-hero,
    .dashboard-hero {
        padding: 3rem 0 2rem;
    }

    .page-title,
    .confirmation-title,
    .dashboard-title {
        font-size: 2rem;
    }

    .page-subtitle,
    .confirmation-subtitle,
    .dashboard-subtitle {
        font-size: 1.1rem;
    }

    .hero-trust-indicators {
        gap: 1rem;
    }

    .trust-item {
        font-size: 0.85rem;
    }

    .bookingpress-main-section,
    .confirmation-details-section,
    .dashboard-main-section {
        padding: 3rem 0;
    }

    .bookingpress-form-container,
    .details-card,
    .dashboard-content {
        padding: 1.5rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .crisis-contacts {
        flex-direction: column;
        align-items: center;
    }

    .booking-actions {
        flex-direction: column;
    }

    .appointment-header {
        flex-direction: column;
        gap: 0.75rem;
    }

    .appointment-date {
        align-self: flex-start;
        min-width: auto;
    }

    .appointment-actions {
        flex-direction: column;
    }

    .dashboard-nav {
        gap: 0.25rem;
    }

    .quick-actions {
        flex-direction: row;
        justify-content: space-between;
    }

    .action-btn {
        flex: 1;
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .bookingpress-form-container,
    .details-card,
    .dashboard-content,
    .info-card {
        padding: 1rem;
    }

    .crisis-card {
        padding: 1.5rem;
    }

    .support-card {
        padding: 1.5rem;
    }

    .quick-actions {
        flex-direction: column;
    }
}