/* ================================
   2025 Modern Design System
   Gadsden Recovery Website
   ================================ */

/* CSS Variables - Design Tokens */
:root {
    /* Primary Colors - Deep Blue/Teal Palette */
    --primary: #1e40af;
    --primary-light: #3b82f6;
    --primary-dark: #1e3a8a;
    --primary-gradient: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);

    /* Secondary Colors */
    --secondary: #0d9488;
    --secondary-light: #14b8a6;
    --secondary-dark: #115e59;

    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Functional Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Poppins', '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: 6rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows - Layered depth */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-neumorphic: 8px 8px 16px rgba(0, 0, 0, 0.1), -8px -8px 16px rgba(255, 255, 255, 0.7);

    /* Animations */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ================================
   Reset & Base Styles
   ================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-900);
    background: var(--white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ================================
   Container & Layout
   ================================ */

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

/* ================================
   Header & Navigation
   ================================ */

.header {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: var(--white);
    padding: var(--space-lg) 0;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-xl);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    position: relative;
    transition: all var(--transition-base);
}

.nav a:hover,
.nav a.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--space-xs);
}

.header-phone {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.phone-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    transition: all var(--transition-base);
}

.phone-number:hover {
    transform: scale(1.05);
}

.info-btn,
.info-btn-footer {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    border-radius: var(--radius-full);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.info-btn:hover,
.info-btn-footer:hover {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.confidential-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: var(--space-sm);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

/* ================================
   Hero Section with Animated Gradient
   ================================ */

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(30, 64, 175, 0.95) 0%,
        rgba(59, 130, 246, 0.9) 50%,
        rgba(13, 148, 136, 0.85) 100%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%,
        rgba(59, 130, 246, 0.2) 0%,
        transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    color: var(--white);
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-badge {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-lg);
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle-text {
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
    opacity: 0.95;
    max-width: 700px;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.trust-badges {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 500;
    opacity: 0.95;
}

.badge-item svg {
    opacity: 0.9;
}

/* ================================
   Buttons - Modern & Interactive
   ================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn > * {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

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

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-lg);
}

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

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

.btn-info {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

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

.btn-danger {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-link {
    padding: var(--space-sm) 0;
    font-size: 0.875rem;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* ================================
   Sections - Base Styles
   ================================ */

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

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

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

/* ================================
   Bento Grid - Apple-style Layout
   ================================ */

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

.bento-item {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
}

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

.bento-item.large {
    grid-column: span 2;
}

.bento-item.medium {
    grid-column: span 1;
}

.bento-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    color: var(--primary);
}

.bento-item h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

.bento-item p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ================================
   Success Story Section
   ================================ */

.success-story {
    background: var(--gray-50);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.story-image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.image-badge {
    position: absolute;
    bottom: var(--space-lg);
    left: var(--space-lg);
    background: rgba(255, 255, 255, 0.95);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-full);
    font-weight: 700;
    color: var(--primary);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}

.story-text h2 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
}

.story-text p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: var(--space-lg);
}

.disclaimer-text {
    font-size: 0.875rem;
    color: var(--gray-500);
    font-style: italic;
}

/* ================================
   Gallery Section
   ================================ */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-disclaimer {
    text-align: center;
    margin-top: var(--space-xl);
    font-size: 0.875rem;
    color: var(--gray-500);
    font-style: italic;
}

/* ================================
   Timeline - Journey Section
   ================================ */

.timeline {
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-3xl);
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 31px;
    top: 70px;
    width: 2px;
    height: calc(100% + var(--space-3xl));
    background: linear-gradient(to bottom, var(--primary-light), transparent);
}

.timeline-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

.timeline-content p {
    color: var(--gray-600);
    line-height: 1.7;
}

.journey-cta {
    text-align: center;
    margin-top: var(--space-3xl);
}

/* ================================
   Map Section
   ================================ */

.map-section {
    background: var(--gray-50);
}

.map-container {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin-bottom: var(--space-xl);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.map-info {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.map-text {
    font-size: 1.0625rem;
    color: var(--gray-700);
    line-height: 1.7;
}

/* ================================
   FAQ Section
   ================================ */

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--transition-base);
}

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

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform var(--transition-base);
    color: var(--primary);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--space-xl) var(--space-xl);
    color: var(--gray-700);
    line-height: 1.7;
}

/* ================================
   Final CTA Section
   ================================ */

.final-cta {
    position: relative;
    padding: var(--space-4xl) 0;
    overflow: hidden;
    color: var(--white);
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #0d9488 100%);
}

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

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--space-lg);
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: var(--space-2xl);
    opacity: 0.95;
}

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

.cta-confidential {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* ================================
   Footer
   ================================ */

.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: var(--space-4xl) 0 var(--space-xl);
}

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

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.footer-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: var(--space-lg);
}

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

.footer-phone a {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
}

.footer-confidential {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.footer-section h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    color: var(--gray-400);
    transition: all var(--transition-base);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: var(--space-sm);
}

.footer-disclaimer {
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--gray-800);
    border-bottom: 1px solid var(--gray-800);
    margin-bottom: var(--space-lg);
}

.footer-disclaimer p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--gray-400);
}

.footer-disclaimer a {
    color: var(--primary-light);
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ================================
   Modal - Disclaimer Popup
   ================================ */

.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    z-index: 10;
    background: var(--white);
    border-radius: var(--radius-2xl);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: var(--space-2xl);
    box-shadow: var(--shadow-2xl);
    animation: modalSlideIn 0.3s ease-out;
}

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

.modal-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    color: var(--gray-700);
    transition: all var(--transition-base);
}

.modal-close:hover {
    background: var(--gray-200);
    transform: rotate(90deg);
}

.modal-content h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-xl);
    padding-right: var(--space-3xl);
}

.modal-body {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.modal-body p {
    margin-bottom: var(--space-lg);
}

.modal-body a {
    color: var(--primary);
    text-decoration: underline;
}

/* ================================
   Page Hero - Internal Pages
   ================================ */

.page-hero {
    position: relative;
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: var(--white);
    text-align: center;
}

.page-hero-content h1 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.page-hero-content p {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* ================================
   About Page - Specific Styles
   ================================ */

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.mission-badge {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

.mission-content h2 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
    line-height: 1.2;
}

.mission-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: var(--space-lg);
}

.mission-cta {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-top: var(--space-xl);
}

.mission-visual {
    display: grid;
    gap: var(--space-lg);
}

.visual-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.visual-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
}

.visual-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.visual-card h3 {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

.visual-card p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.what-we-do {
    background: var(--gray-50);
}

.service-explanation {
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
}

.explanation-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.explanation-card.important {
    border: 2px solid var(--primary);
    background: rgba(30, 64, 175, 0.02);
}

.card-icon {
    flex-shrink: 0;
    color: var(--primary);
}

.explanation-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

.explanation-card p {
    color: var(--gray-700);
    line-height: 1.7;
}

.services-we-provide {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.provide-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-xl);
}

.provide-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: var(--primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    flex-shrink: 0;
}

.provide-content h3 {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

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

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

.value-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid var(--gray-200);
}

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

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: var(--primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.value-card h3 {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

.value-card p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.process-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-xl);
}

.step-circle {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: var(--shadow-lg);
}

.step-text h3 {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

.step-text p {
    color: var(--gray-700);
    line-height: 1.7;
}

.process-cta {
    text-align: center;
    margin-top: var(--space-3xl);
    padding: var(--space-3xl);
    background: var(--gray-50);
    border-radius: var(--radius-2xl);
}

.process-cta h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

.process-cta p {
    color: var(--gray-600);
    margin-bottom: var(--space-xl);
}

.transparency {
    background: rgba(30, 64, 175, 0.05);
}

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

.transparency-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xl);
}

.transparency-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
}

.transparency-content p {
    font-size: 1.0625rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

/* ================================
   Contact Page - Specific Styles
   ================================ */

.contact-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.contact-intro h2 {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

.contact-intro p {
    font-size: 1.125rem;
    color: var(--gray-700);
    line-height: 1.7;
}

.contact-methods {
    display: grid;
    gap: var(--space-2xl);
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    box-shadow: var(--shadow-xl);
    text-align: center;
    border: 2px solid var(--primary);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xl);
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

.contact-description {
    font-size: 1.0625rem;
    color: var(--gray-700);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.contact-badges {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-xl);
}

.contact-badges .badge {
    padding: var(--space-sm) var(--space-lg);
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

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

.alt-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    text-align: center;
}

.alt-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: var(--primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}

.alt-card h4 {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

.alt-card p {
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

.hours-badge,
.privacy-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

.what-to-expect {
    background: var(--gray-50);
}

.expect-timeline {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: var(--space-xl);
}

.expect-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-lg);
}

.expect-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: var(--primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.expect-content h3 {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-sm);
}

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

.crisis-resources {
    background: rgba(239, 68, 68, 0.05);
}

.crisis-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.crisis-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    color: var(--white);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xl);
}

.crisis-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

.crisis-content p {
    font-size: 1.0625rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.crisis-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

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

.resource-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
}

.resource-card h3 {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

.resource-card p {
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

/* ================================
   Legal Pages - Privacy & Terms
   ================================ */

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

.legal-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
}

.legal-header h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

.legal-date {
    font-size: 1rem;
    color: var(--gray-600);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--gray-700);
}

.legal-intro {
    font-size: 1.0625rem;
    margin-bottom: var(--space-xl);
    color: var(--gray-800);
}

.legal-section {
    margin-bottom: var(--space-3xl);
}

.legal-section h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
}

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

.legal-section ul {
    margin-left: var(--space-xl);
    margin-bottom: var(--space-md);
}

.legal-section li {
    margin-bottom: var(--space-sm);
}

.legal-section a {
    color: var(--primary);
    text-decoration: underline;
}

.contact-info-box {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin: var(--space-lg) 0;
}

.legal-note {
    font-style: italic;
    color: var(--gray-600);
    margin-top: var(--space-md);
}

.final-notice {
    background: rgba(30, 64, 175, 0.05);
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
}

.legal-footer {
    max-width: 900px;
    margin: var(--space-3xl) auto 0;
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================
   Responsive Design
   ================================ */

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .story-content,
    .mission-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

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

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }

    .nav {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: var(--space-sm);
    }

    .nav.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle-text {
        font-size: 1.125rem;
    }

    .bento-grid,
    .gallery-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .bento-item.large,
    .bento-item.medium {
        grid-column: span 1;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .timeline-item::after {
        display: none;
    }

    .provide-item,
    .process-step,
    .expect-item {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .contact-alternatives,
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons,
    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ================================
   Accessibility
   ================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

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

/* Focus styles for accessibility */
*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* ================================
   Print Styles
   ================================ */

@media print {
    .header,
    .footer,
    .modal,
    .cta-gradient,
    .btn {
        display: none !important;
    }
}