/* Empowering Hands Support Services - Main Stylesheet */

/* ===================================
   CSS VARIABLES - Brand Design System
   =================================== */
:root {
    /* Primary Brand Colors */
    --gold-primary: #C9A868;
    --gold-dark: #A68A50;
    --gold-light: #E5D4A8;
    --gold-pale: #F5EFE0;
    
    /* Neutrals */
    --black: #0A0A0A;
    --gray-900: #1A1A1A;
    --gray-800: #2D2D2D;
    --gray-700: #404040;
    --gray-600: #5C5C5C;
    --gray-500: #7A7A7A;
    --gray-400: #9E9E9E;
    --gray-300: #BDBDBD;
    --gray-200: #E0E0E0;
    --gray-100: #F5F5F5;
    --white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing Scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 5rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --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);
    
    /* Container Widths */
    --container-max: 1200px;
    --container-wide: 1400px;
}

/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul, ol {
    list-style-position: inside;
}

/* ===================================
   TYPOGRAPHY
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: var(--space-md);
}

.display {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    font-weight: 600;
}

h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    line-height: 1.2;
}

h2 {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    line-height: 1.3;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    line-height: 1.4;
    color: var(--gray-800);
}

h4 {
    font-size: 1.125rem;
    line-height: 1.4;
}

p {
    margin-bottom: var(--space-md);
}

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

.text-small {
    font-size: 0.875rem;
    line-height: 1.5;
}

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

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

strong {
    font-weight: 600;
}

/* ===================================
   LAYOUT UTILITIES
   =================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

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

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

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

.section-lg {
    padding: 5rem 0;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.site-header {
    background: var(--black);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gray-800);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    line-height: 1;
}

.site-logo img {
    height: 104px;
    width: auto;
    display: block;
}

.site-logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.site-logo-text .logo-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
}

.site-logo-text .logo-tagline {
    font-size: 0.75rem;
    color: var(--gold-primary);
    line-height: 1;
    font-style: italic;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-list {
    display: flex;
    gap: var(--space-lg);
    list-style: none;
}

.nav-list a {
    color: var(--gray-300);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color var(--transition-base);
    position: relative;
    padding: 0.5rem 0;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--gold-primary);
}

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

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--black);
    font-weight: 600;
    padding: 0.625rem 1.25rem;
    background: var(--gold-primary);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.header-phone:hover {
    background: var(--gold-light);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 5px 0;
    transition: all var(--transition-base);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
    min-height: 44px;
    min-width: 44px;
}

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

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: var(--gray-900);
    border-color: var(--gray-900);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--gold-primary);
    border-color: var(--gold-primary);
}

.btn-outline:hover {
    background: var(--gold-primary);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--gray-700);
    border-color: transparent;
    padding: 0.5rem 1rem;
}

.btn-ghost:hover {
    background: var(--gray-100);
    color: var(--black);
}

.btn-group {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* ===================================
   HERO SECTIONS
   =================================== */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding: var(--space-4xl) var(--space-lg);
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-900) 100%);
    background-image: url('assets/hero-home.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.5);
    z-index: 1;
}

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

.hero h1 {
    color: var(--white);
    margin-bottom: var(--space-lg);
    font-size: clamp(2rem, 5vw, 3.5rem);
}

.hero p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: var(--space-xl);
    color: var(--gray-200);
}

.hero-placeholder {
    background: var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 0.875rem;
    min-height: 400px;
}

/* Page Headers (smaller than hero) */
.page-header {
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-900) 100%);
    color: var(--white);
    padding: var(--space-3xl) var(--space-lg);
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

.page-header p {
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto;
    color: var(--gray-200);
}

/* ===================================
   CARDS
   =================================== */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin: var(--space-xl) 0;
}

.card-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

/* Service Areas Grid Layout */
.areas-grid-wrapper {
    margin: var(--space-2xl) 0;
}

.areas-row {
    display: grid;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.areas-row-three {
    grid-template-columns: repeat(3, 1fr);
}

.areas-row-two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.card-image {
    width: 100%;
    height: 240px;
    background: var(--gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 0.875rem;
    text-align: center;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: var(--space-xl);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: var(--space-md);
}

.card-text {
    color: var(--gray-600);
    margin-bottom: var(--space-md);
    flex-grow: 1;
}

.card ul {
    margin-bottom: var(--space-md);
    list-style: none;
}

.card ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: var(--space-sm);
    color: var(--gray-600);
}

.card ul li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: var(--gold-primary);
    font-weight: bold;
}

/* Feature Cards */
.card-feature {
    background: var(--gold-pale);
    border-left: 4px solid var(--gold-primary);
}

.card-feature:hover {
    background: var(--gold-light);
}

/* Service Cards (larger, two-column layout) */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    margin: var(--space-lg) 0;
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
}

.service-detail:nth-child(even) {
    background: var(--gray-100);
}

.service-detail:nth-child(even) .service-content {
    order: 2;
}

.service-detail:nth-child(even) .service-image {
    order: 1;
}

.service-image {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 3px solid var(--gold-primary);
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-content h2 {
    margin-bottom: var(--space-md);
}

.service-content h3 {
    font-size: 1.125rem;
    color: var(--gold-dark);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

/* ===================================
   FEATURE SECTIONS
   =================================== */
.feature-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    margin: var(--space-3xl) 0;
}

.feature-section:nth-child(even) .feature-content {
    order: 2;
}

.feature-section:nth-child(even) .feature-image {
    order: 1;
}

.feature-image {
    width: 100%;
    height: 400px;
    background: var(--gold-pale);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    font-size: 0.875rem;
    text-align: center;
    padding: var(--space-lg);
}

.feature-content h3 {
    font-size: 1.75rem;
    margin-bottom: var(--space-lg);
}

/* ===================================
   PROCESS STEPS
   =================================== */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--space-xl);
    margin: var(--space-2xl) 0;
}

.timeline-wrapper {
    margin: var(--space-2xl) 0;
}

.steps-row {
    display: grid;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.steps-row-three {
    grid-template-columns: repeat(3, 1fr);
}

.steps-row-two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    text-align: center;
    padding: var(--space-xl);
    position: relative;
}

.step-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: var(--space-2xl);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gold-primary);
    font-weight: 700;
    opacity: 0.7;
    margin-bottom: var(--space-md);
}

.step h3 {
    margin-bottom: var(--space-md);
}

.step p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

/* ===================================
   CTA SECTIONS
   =================================== */
.cta-section-wrapper {
    background-image: url('assets/cta-background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-section {
    background: linear-gradient(135deg, var(--black) 0%, var(--gray-900) 100%);
    color: var(--white);
    padding: var(--space-4xl) var(--space-lg);
    text-align: center;
    border-radius: var(--radius-lg);
    margin: var(--space-3xl) 0;
}

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

.cta-section p {
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto var(--space-xl) auto;
    color: var(--gray-200);
}

.cta-accent {
    background: var(--gold-pale);
    padding: var(--space-3xl) var(--space-lg);
    text-align: center;
    border-radius: var(--radius-lg);
    margin: var(--space-3xl) 0;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    flex-wrap: wrap;
    margin: var(--space-xl) 0;
    font-size: 1.125rem;
}

.contact-info a {
    color: var(--gold-dark);
    font-weight: 600;
    transition: color var(--transition-base);
}

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

/* ===================================
   FORMS
   =================================== */
.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: var(--space-2xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: var(--space-sm);
}

.form-group label.required::after {
    content: '*';
    color: #F44336;
    margin-left: 0.25rem;
}

.form-control {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-base);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(201, 168, 104, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235C5C5C' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.checkbox-group,
.radio-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.checkbox-group label,
.radio-group label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"],
.radio-group input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-note {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: var(--space-sm);
}

.form-privacy {
    font-size: 0.875rem;
    color: var(--gray-600);
    padding: var(--space-md);
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    margin-top: var(--space-lg);
}

/* ===================================
   BADGES
   =================================== */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-primary {
    background: var(--gold-light);
    color: var(--gray-900);
}

.badge-secondary {
    background: var(--gray-200);
    color: var(--gray-700);
}

/* ===================================
   LISTS
   =================================== */
.feature-list {
    list-style: none;
    margin: var(--space-md) 0;
}

.feature-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: var(--space-md);
    color: var(--gray-700);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold-primary);
    font-weight: bold;
    font-size: 1.25rem;
}

/* ===================================
   CALLOUT BOXES
   =================================== */
.callout {
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    margin: var(--space-md) 0;
}

.callout-primary {
    background: var(--gold-pale);
    border-left: 4px solid var(--gold-primary);
}

.callout-secondary {
    background: var(--gray-100);
    border-left: 4px solid var(--gray-600);
}

.callout h3 {
    margin-bottom: var(--space-md);
}

.callout ul {
    margin-bottom: var(--space-md);
}

.callout ul li {
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

/* ===================================
   FOOTER
   =================================== */
.site-footer {
    background: var(--black);
    color: var(--white);
    padding: var(--space-3xl) 0 var(--space-xl) 0;
    margin-top: 0;
}

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

.footer-section h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: var(--space-lg);
}

.footer-section p {
    color: var(--gray-300);
    line-height: 1.8;
}

.footer-section a {
    color: var(--gray-300);
    display: block;
    margin-bottom: var(--space-sm);
    transition: color var(--transition-base);
}

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

.footer-logo {
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.footer-logo img {
    height: 130px;
    width: auto;
    display: block;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-logo-text .logo-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
}

.footer-logo-text .logo-tagline {
    font-size: 0.875rem;
    color: var(--gold-primary);
    line-height: 1;
    font-style: italic;
}

.footer-tagline {
    color: var(--gold-primary);
    font-size: 0.9375rem;
    font-style: italic;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: var(--space-lg);
    text-align: center;
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* ===================================
   UTILITY CLASSES
   =================================== */
.text-center {
    text-align: center;
}

.mt-0 { margin-top: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

/* ===================================
   ACCESSIBILITY
   =================================== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:focus {
    outline: 2px solid var(--gold-primary);
    outline-offset: 2px;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid var(--gold-primary);
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--gold-primary);
    color: var(--black);
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-weight: 600;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* ===================================
   SERVICES QUICK NAVIGATION
   =================================== */
.services-nav-wrapper {
    position: sticky;
    top: 136px;
    z-index: 999;
    margin-bottom: var(--space-md);
}

.services-quick-nav {
    background: var(--white);
    border-top: 2px solid var(--gold-primary);
    border-bottom: 2px solid var(--gold-primary);
    box-shadow: var(--shadow-md);
    padding: var(--space-md) 0;
}

.services-quick-nav .container {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
}

/* Desktop Navigation - visible by default */
.services-nav-desktop {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    width: 100%;
}

/* Mobile Navigation - hidden by default */
.services-nav-mobile {
    display: none;
    width: 100%;
    gap: var(--space-sm);
    align-items: center;
}

.services-nav-label {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 0.9375rem;
    white-space: nowrap;
}

.services-nav-list {
    display: flex;
    gap: var(--space-md);
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    flex-grow: 1;
}

.services-nav-list li {
    margin: 0;
}

.services-nav-list a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gold-pale);
    color: var(--gray-900);
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    text-decoration: none;
}

.services-nav-list a:hover {
    background: var(--gold-primary);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.services-nav-list a:focus {
    outline: 2px solid var(--gold-primary);
    outline-offset: 2px;
}

.services-nav-list a.active {
    background: var(--gold-dark);
    color: var(--white);
}

/* Mobile Dropdown Styling */
.services-dropdown {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-900);
    background: var(--gold-pale);
    border: 2px solid var(--gold-primary);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-base);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23404040' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.services-dropdown:hover {
    background: var(--gold-light);
    border-color: var(--gold-dark);
}

.services-dropdown:focus {
    outline: 2px solid var(--gold-primary);
    outline-offset: 2px;
    border-color: var(--gold-dark);
}

/* ===================================
   SERVICE DROPDOWNS
   =================================== */
.service-dropdown {
    margin: var(--space-md) 0;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
}

.service-dropdown-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    background: var(--gold-pale);
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    transition: all var(--transition-base);
    text-align: left;
}

.service-dropdown-toggle:hover {
    background: var(--gold-light);
}

.service-dropdown-toggle:focus {
    outline: 2px solid var(--gold-primary);
    outline-offset: -2px;
}

.dropdown-icon {
    font-size: 0.875rem;
    transition: transform var(--transition-base);
    color: var(--gold-dark);
}

.service-dropdown-toggle[aria-expanded="true"] .dropdown-icon {
    transform: rotate(180deg);
}

.service-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 var(--space-lg);
}

.service-dropdown-toggle[aria-expanded="true"] + .service-dropdown-content {
    max-height: 1000px;
    padding: var(--space-lg);
    transition: max-height 0.4s ease-in, padding 0.4s ease-in;
}

.service-dropdown-content p {
    color: var(--gray-700);
    line-height: 1.7;
}

.service-dropdown-content ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-dropdown-content ul li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: var(--space-sm);
    color: var(--gray-700);
}

.service-dropdown-content ul li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: var(--gold-primary);
    font-weight: bold;
}

/* ===================================
   FAQ ACCORDION
   =================================== */
.faq-container {
    margin: var(--space-xl) 0;
}

.faq-item {
    margin-bottom: var(--space-md);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
    transition: all var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    background: var(--gray-100);
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    transition: all var(--transition-base);
    text-align: left;
}

.faq-toggle:hover {
    background: var(--gold-pale);
}

.faq-toggle:focus {
    outline: 2px solid var(--gold-primary);
    outline-offset: -2px;
}

.faq-toggle[aria-expanded="true"] {
    background: var(--gold-pale);
    border-bottom: 1px solid var(--gray-200);
}

.faq-toggle[aria-expanded="true"] .dropdown-icon {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    padding: 0 var(--space-lg);
    background: var(--white);
}

.faq-toggle[aria-expanded="true"] + .faq-content {
    max-height: 500px;
    padding: var(--space-lg);
    transition: max-height 0.4s ease-in, padding 0.4s ease-in;
}

.faq-content p {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 0;
}

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

/* Large screens - adjust team image positioning */
@media (min-width: 1025px) {
    /* About page team image - show more of the top on large screens */
    div[style*="height: 450px"] img {
        object-position: center top !important;
    }
}

@media (max-width: 1024px) {
    .feature-section,
    .service-detail {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    /* For feature sections on mobile: images first, then text */
    .feature-section .feature-content {
        order: 2;
    }
    
    .feature-section .feature-image {
        order: 1;
    }
    
    /* For service details: keep text first on mobile */
    .service-detail:nth-child(even) .service-content {
        order: 1;
    }
    
    .service-detail:nth-child(even) .service-image {
        order: 2;
    }
    
    /* About page two-column layouts */
    .section > .container > div[style*="grid-template-columns: 2fr 1fr"],
    .section > .container > div[style*="grid-template-columns: repeat(2, 1fr)"] {
        display: flex !important;
        flex-direction: column !important;
        gap: var(--space-xl) !important;
    }
    
    /* Remove sticky positioning on mobile */
    .callout[style*="position: sticky"] {
        position: relative !important;
        top: auto !important;
    }
}

@media (max-width: 768px) {
    .site-logo img {
        height: 72px;
    }
    
    .site-logo-text .logo-title {
        font-size: 1.125rem;
    }
    
    .site-logo-text .logo-tagline {
        font-size: 0.625rem;
    }
    
    .main-nav {
        display: none;
    }
    
    .main-nav.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--gray-900);
        padding: var(--space-lg);
        box-shadow: var(--shadow-lg);
        gap: var(--space-md);
    }
    
    .nav-list {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .footer-logo img {
        height: 91px;
    }
    
    .footer-logo-text .logo-title {
        font-size: 1.25rem;
    }
    
    .footer-logo-text .logo-tagline {
        font-size: 0.75rem;
    }
    
    .section {
        padding: var(--space-2xl) 0;
    }
    
    .hero {
        min-height: 500px;
        padding: var(--space-2xl) var(--space-md);
    }
    
    /* Page header mobile adjustments */
    .page-header {
        padding: 60px var(--space-md) !important;
    }
    
    .card-grid,
    .card-grid-3 {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .steps-row-three,
    .steps-row-two {
        grid-template-columns: 1fr;
    }
    
    .areas-row-three,
    .areas-row-two {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        flex-direction: column;
        gap: var(--space-md);
        text-align: left;
    }
    
    .contact-info div {
        font-size: 1rem;
    }
    
    .btn-group {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .feature-image {
        height: 300px;
    }
    
    /* About page director cards - force single column on mobile */
    .section .container > div[style*="grid-template-columns: repeat(auto-fit, minmax(400px, 1fr))"] {
        display: flex !important;
        flex-direction: column !important;
        gap: var(--space-xl) !important;
    }
    
    /* About page support team checkmarks - single column on mobile */
    div[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
    
    /* About page team image - adjust height on mobile */
    div[style*="height: 450px"] {
        height: 300px !important;
    }
    
    /* Services Quick Nav - Mobile */
    .services-nav-wrapper {
        top: 104px;
    }
    
    .services-quick-nav {
        padding: var(--space-md) 0;
    }
    
    /* Hide desktop navigation on mobile */
    .services-nav-desktop {
        display: none;
    }
    
    /* Show mobile dropdown on mobile */
    .services-nav-mobile {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }
    
    .services-nav-mobile .services-nav-label {
        font-size: 0.875rem;
        margin-bottom: var(--space-sm);
    }
    
    .services-dropdown {
        font-size: 1rem;
        padding: 0.875rem 1rem;
        width: 100%;
    }
    
    /* Service Areas - Mobile responsive grids */
    div[style*="grid-template-columns: repeat(auto-fit, minmax(300px, 1fr))"] {
        display: flex !important;
        flex-direction: column !important;
        gap: var(--space-lg) !important;
    }
    
    /* Service Areas - Understanding Service Availability two-column grid */
    div[style*="grid-template-columns: 1fr 1fr"] {
        display: flex !important;
        flex-direction: column !important;
        gap: var(--space-lg) !important;
    }
    
    /* Service Areas - Make iframe responsive height */
    iframe[height="500"] {
        height: 300px !important;
    }
    
    /* Service Areas - Page header adjustments */
    .service-areas-header {
        padding: 60px var(--space-md) !important;
    }
    
    .service-areas-subtitle {
        font-size: 1rem !important;
    }
}

@media (max-width: 480px) {
    :root {
        --space-4xl: 3rem;
    }
    
    .container {
        padding: 0 var(--space-md);
    }
    
    /* Service Areas - Further reduce iframe height on very small screens */
    iframe[height="500"] {
        height: 250px !important;
    }
    
    /* Service Areas - Page header adjustments for very small screens */
    .service-areas-header {
        padding: 40px var(--space-md) !important;
    }
    
    /* Improve callout readability on small screens */
    .callout {
        padding: var(--space-lg);
    }
    
    .callout h3 {
        font-size: 1.125rem;
    }
    
    .callout p {
        font-size: 0.9375rem;
    }
    
    /* Better badge sizing on small screens */
    .badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.875rem;
    }
    
    /* Improve text sizing in sections */
    .text-large {
        font-size: 1rem;
    }
    
    /* CTA Section adjustments for small screens */
    .cta-section {
        padding: var(--space-2xl) var(--space-md);
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}

/* ===================================
   SCROLL REVEAL ANIMATIONS
   =================================== */
/* Elements start visible - animation is enhancement only */
.animate-ready {
    opacity: 0.97;
    transform: translateY(8px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Smooth font loading transition */
html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fonts-loaded body {
    font-family: var(--font-body);
}

.fonts-loaded h1, 
.fonts-loaded h2, 
.fonts-loaded h3, 
.fonts-loaded h4, 
.fonts-loaded h5, 
.fonts-loaded h6 {
    font-family: var(--font-heading);
}

/* Skeleton loading placeholder for images */
.card-image {
    background: linear-gradient(90deg, var(--gray-200) 0%, var(--gray-100) 50%, var(--gray-200) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

.card-image img {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-image img[src]:not([src=""]) {
    opacity: 1;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Feature images loading state */
.feature-image {
    background: linear-gradient(135deg, var(--gold-pale) 0%, var(--gray-100) 100%);
}

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    .site-header,
    .site-footer,
    .mobile-menu-toggle,
    .btn {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}

