/* ============================================
   LANSING RECOVERY SPECIALISTS - 2025 CSS
   Fluid Morphism + Emerald Gradient Theme
   ============================================ */

/* CSS Variables - Emerald Theme */
:root {
    /* Emerald Green Gradient Colors */
    --emerald-900: #064e3b;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --emerald-500: #10b981;
    --emerald-400: #34d399;
    --emerald-300: #6ee7b7;
    --emerald-100: #d1fae5;
    --emerald-50: #ecfdf5;

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

    /* Functional Colors */
    --white: #ffffff;
    --black: #000000;
    --red-600: #dc2626;
    --amber-500: #f59e0b;

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 12px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    /* Typography */
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Fraunces', Georgia, serif;
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    --font-size-2xl: 24px;
    --font-size-3xl: 30px;
    --font-size-4xl: 36px;
    --font-size-5xl: 48px;
    --font-size-6xl: 60px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-800);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: var(--space-lg);
}

h1 {
    font-size: clamp(36px, 5vw, 60px);
}

h2 {
    font-size: clamp(30px, 4vw, 48px);
}

h3 {
    font-size: clamp(24px, 3vw, 36px);
}

h4 {
    font-size: clamp(20px, 2.5vw, 28px);
}

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

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

ul, ol {
    list-style: none;
}

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

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

/* ============================================
   NAVIGATION - FLUID MORPHISM
   ============================================ */

.nav-fluid {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.nav-wrapper-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg) 0;
    gap: var(--space-xl);
}

.brand-fluid {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.brand-icon-fluid {
    flex-shrink: 0;
}

.brand-text-fluid {
    display: flex;
    flex-direction: column;
}

.brand-name-fluid {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1;
}

.brand-tag-fluid {
    font-size: 13px;
    font-weight: 500;
    color: var(--emerald-600);
    line-height: 1;
    margin-top: 4px;
}

.nav-toggle-fluid {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
}

.nav-toggle-fluid span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--gray-700);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

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

.nav-link-fluid {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-700);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
}

.nav-link-fluid:hover,
.nav-link-fluid.active {
    color: var(--emerald-600);
    background: var(--emerald-50);
}

.nav-link-fluid.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 3px;
    background: linear-gradient(90deg, var(--emerald-500), var(--emerald-600));
    border-radius: var(--radius-full);
}

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

.phone-btn-fluid {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.phone-btn-fluid:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, var(--emerald-600), var(--emerald-700));
}

.phone-text-fluid {
    display: inline-block;
}

.info-btn-fluid {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--emerald-50);
    color: var(--emerald-600);
    border-radius: var(--radius-full);
    border: 2px solid var(--emerald-200);
    transition: var(--transition);
}

.info-btn-fluid:hover {
    background: var(--emerald-600);
    color: var(--white);
    border-color: var(--emerald-600);
    transform: scale(1.05);
}

/* ============================================
   HERO SECTION - FLUID
   ============================================ */

.hero-fluid {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg-fluid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-image-fluid {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-gradient-fluid {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(16, 185, 129, 0.95) 0%,
        rgba(5, 150, 105, 0.9) 50%,
        rgba(4, 120, 87, 0.85) 100%);
    mix-blend-mode: multiply;
}

.hero-mesh-fluid {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-content-fluid {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.hero-badge-fluid {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: var(--space-xl);
}

.badge-pulse-emerald {
    width: 10px;
    height: 10px;
    background: var(--white);
    border-radius: var(--radius-full);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}

.hero-title-fluid {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.title-primary {
    font-size: clamp(42px, 6vw, 72px);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.title-secondary {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.1;
}

.title-tertiary {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
}

.hero-description-fluid {
    font-size: 19px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--space-2xl);
    max-width: 700px;
}

.hero-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.trust-item-fluid {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
}

.trust-item-fluid svg {
    flex-shrink: 0;
    stroke: currentColor;
}

.hero-cta-group-fluid {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.btn-primary-fluid {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 16px 32px;
    background: var(--white);
    color: var(--emerald-600);
    font-size: 18px;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.btn-primary-fluid:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
    background: var(--emerald-50);
}

.btn-secondary-fluid {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.btn-secondary-fluid:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--white);
}

.hero-note-fluid {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

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

.section-label-emerald {
    display: inline-block;
    padding: 8px 20px;
    background: var(--emerald-50);
    color: var(--emerald-700);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.section-title-fluid {
    font-size: clamp(32px, 4vw, 48px);
    color: var(--gray-900);
    margin-bottom: var(--space-md);
}

.section-description-fluid {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ============================================
   SERVICES BENTO GRID
   ============================================ */

.services-bento {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

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

.bento-card {
    padding: var(--space-2xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald-500), var(--emerald-600));
    opacity: 0;
    transition: var(--transition);
}

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

.bento-card:hover::before {
    opacity: 1;
}

.bento-card.large {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
    color: var(--white);
}

.bento-card.large h3,
.bento-card.large p {
    color: var(--white);
}

.bento-card.wide {
    grid-column: span 2;
}

.bento-icon-emerald {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--emerald-50);
    color: var(--emerald-600);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
}

.bento-card.large .bento-icon-emerald {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.bento-card h3 {
    font-size: 24px;
    margin-bottom: var(--space-md);
}

.bento-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
}

.bento-card.large p {
    opacity: 0.95;
}

.bento-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

/* ============================================
   MASONRY GALLERY
   ============================================ */

.gallery-masonry {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.masonry-grid-fluid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
    grid-auto-rows: 250px;
}

.masonry-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.masonry-item.tall {
    grid-row: span 2;
}

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

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

.masonry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg);
    opacity: 0;
    transition: var(--transition);
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

.masonry-label {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    background: rgba(16, 185, 129, 0.9);
    border-radius: var(--radius-full);
}

/* ============================================
   TIMELINE - FLUID
   ============================================ */

.timeline-fluid {
    padding: var(--space-4xl) 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

.timeline-wrapper-fluid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-item-fluid {
    text-align: center;
}

.timeline-number-emerald {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
    color: var(--white);
    font-size: 32px;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin: 0 auto var(--space-lg);
    box-shadow: var(--shadow-lg);
}

.timeline-content-fluid h3 {
    font-size: 22px;
    margin-bottom: var(--space-sm);
}

.timeline-content-fluid p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.6;
}

.timeline-connector-emerald {
    display: none;
}

/* ============================================
   MAP CTA SECTION
   ============================================ */

.map-cta-fluid {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.map-grid-fluid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--space-3xl);
    align-items: center;
}

.map-content-fluid h2 {
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: var(--space-lg);
}

.map-content-fluid p {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.map-features-fluid {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.map-feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--emerald-600);
    font-weight: 600;
}

.map-feature-item svg {
    flex-shrink: 0;
    fill: currentColor;
}

.map-container-fluid {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-fluid {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

.faq-wrapper-fluid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item-fluid {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

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

.faq-question-fluid:hover {
    color: var(--emerald-600);
}

.faq-question-fluid svg {
    flex-shrink: 0;
    stroke: var(--gray-600);
    transition: var(--transition);
}

.faq-item-fluid.active .faq-question-fluid svg {
    transform: rotate(180deg);
    stroke: var(--emerald-600);
}

.faq-answer-fluid {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item-fluid.active .faq-answer-fluid {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

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

/* ============================================
   PAGE HERO (About/Contact)
   ============================================ */

.page-hero-emerald {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--emerald-600), var(--emerald-700));
    color: var(--white);
    text-align: center;
}

.page-hero-content h1 {
    color: var(--white);
    font-size: clamp(36px, 5vw, 54px);
    margin-bottom: var(--space-md);
}

.page-hero-content p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   ABOUT PAGE - CONTENT GRID
   ============================================ */

.about-content-fluid {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

.about-grid-fluid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: var(--space-3xl);
}

.about-main-fluid {
    display: flex;
    flex-direction: column;
    gap: var(--space-3xl);
}

.mission-card-fluid {
    padding: var(--space-3xl);
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
    color: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.mission-icon-emerald {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
}

.mission-card-fluid h2 {
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.mission-text {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.content-block-fluid {
    padding: var(--space-2xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.content-block-fluid h2 {
    font-size: 32px;
    margin-bottom: var(--space-lg);
}

.content-block-fluid p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-700);
}

.values-section-fluid {
    padding: var(--space-2xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.values-section-fluid h2 {
    margin-bottom: var(--space-2xl);
}

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

.value-card-fluid {
    padding: var(--space-xl);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.value-card-fluid:hover {
    background: var(--emerald-50);
    transform: translateY(-4px);
}

.value-icon-emerald {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--emerald-600);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-sm);
}

.value-card-fluid h3 {
    font-size: 20px;
    margin-bottom: var(--space-sm);
}

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

.process-steps-fluid {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.process-step-fluid {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.step-number-emerald {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.step-content-fluid h3 {
    font-size: 20px;
    margin-bottom: var(--space-xs);
}

.step-content-fluid p {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.6;
}

.info-boxes-fluid {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.info-box-positive,
.info-box-neutral {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
}

.info-box-positive {
    background: var(--emerald-50);
    border-left: 4px solid var(--emerald-600);
}

.info-box-neutral {
    background: var(--gray-100);
    border-left: 4px solid var(--gray-600);
}

.info-box-positive svg,
.info-box-neutral svg {
    flex-shrink: 0;
}

.info-box-positive svg {
    stroke: var(--emerald-600);
}

.info-box-neutral svg {
    stroke: var(--gray-600);
}

.info-box-positive h3,
.info-box-neutral h3 {
    font-size: 18px;
    margin-bottom: var(--space-xs);
}

.info-box-positive p,
.info-box-neutral p {
    font-size: 15px;
    margin: 0;
}

/* ============================================
   ABOUT SIDEBAR
   ============================================ */

.about-sidebar-fluid {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.sidebar-cta-emerald {
    padding: var(--space-2xl);
    background: linear-gradient(135deg, var(--emerald-600), var(--emerald-700));
    color: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.sidebar-cta-emerald h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: var(--space-md);
}

.sidebar-cta-emerald p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: var(--space-xl);
}

.btn-sidebar-primary-emerald {
    display: block;
    width: 100%;
    padding: 14px;
    background: var(--white);
    color: var(--emerald-600);
    font-size: 17px;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

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

.btn-sidebar-info-emerald {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.btn-sidebar-info-emerald:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--white);
}

.sidebar-note-emerald {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: var(--space-md);
    margin-bottom: 0;
}

.sidebar-facts-emerald,
.sidebar-resources-emerald {
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.sidebar-facts-emerald h3,
.sidebar-resources-emerald h3 {
    font-size: 18px;
    margin-bottom: var(--space-lg);
}

.fact-item-emerald {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid var(--gray-200);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
}

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

.fact-item-emerald svg {
    flex-shrink: 0;
    stroke: var(--emerald-600);
}

.resource-link-emerald {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--emerald-600);
    transition: var(--transition);
}

.resource-link-emerald:hover {
    color: var(--emerald-700);
    transform: translateX(4px);
}

.resource-link-emerald svg {
    flex-shrink: 0;
    stroke: currentColor;
}

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

.cta-emerald {
    padding: var(--space-4xl) 0;
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
    text-align: center;
}

.cta-content-emerald h2 {
    color: var(--white);
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: var(--space-lg);
}

.cta-content-emerald p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 19px;
    margin-bottom: var(--space-xl);
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-methods-fluid {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

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

.contact-card-primary-emerald {
    grid-column: span 2;
    padding: var(--space-3xl);
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
    color: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.contact-primary-icon {
    margin: 0 auto var(--space-lg);
}

.contact-card-primary-emerald h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: var(--space-md);
}

.contact-card-primary-emerald p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    margin-bottom: var(--space-xl);
}

.btn-contact-primary-emerald {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 16px 36px;
    background: var(--white);
    color: var(--emerald-600);
    font-size: 22px;
    font-weight: 700;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-xl);
    margin-bottom: var(--space-md);
    transition: var(--transition);
}

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

.btn-contact-info-emerald {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.btn-contact-info-emerald:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--white);
}

.contact-card-secondary-emerald {
    padding: var(--space-2xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.contact-icon-emerald {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--emerald-50);
    color: var(--emerald-600);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
}

.contact-card-secondary-emerald h3 {
    font-size: 22px;
    margin-bottom: var(--space-md);
}

.contact-email-emerald {
    display: block;
    color: var(--emerald-600);
    font-size: 18px;
    font-weight: 600;
    word-break: break-word;
}

.contact-info-grid {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

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

.info-card-emerald {
    padding: var(--space-2xl);
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.info-card-emerald:hover {
    background: var(--emerald-50);
    transform: translateY(-4px);
}

.info-card-emerald svg {
    margin: 0 auto var(--space-lg);
    stroke: var(--emerald-600);
}

.info-card-emerald h3 {
    font-size: 20px;
    margin-bottom: var(--space-md);
}

.info-highlight-emerald {
    font-size: 22px;
    font-weight: 700;
    color: var(--emerald-600);
    margin-bottom: var(--space-sm);
}

.info-card-emerald p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

.contact-process-fluid {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

.process-timeline-fluid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.process-item-emerald {
    text-align: center;
}

.process-num-emerald {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--emerald-500), var(--emerald-600));
    color: var(--white);
    font-size: 28px;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin: 0 auto var(--space-lg);
    box-shadow: var(--shadow-lg);
}

.process-text-emerald h3 {
    font-size: 20px;
    margin-bottom: var(--space-sm);
}

.process-text-emerald p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

.process-line-emerald {
    display: none;
}

.emergency-alert-fluid {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

.emergency-card-fluid {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    padding: var(--space-3xl);
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.emergency-icon-fluid {
    flex-shrink: 0;
}

.emergency-icon-fluid svg {
    stroke: var(--white);
}

.emergency-content-fluid h3 {
    color: var(--white);
    font-size: 26px;
    margin-bottom: var(--space-sm);
}

.emergency-content-fluid p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 17px;
    line-height: 1.6;
    margin: 0;
}

.map-section-fluid {
    padding: var(--space-4xl) 0;
    background: var(--gray-50);
}

.map-wrapper-fluid {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.map-wrapper-fluid iframe {
    width: 100%;
    height: 500px;
    border: none;
}

/* ============================================
   MODAL - DISCLAIMER
   ============================================ */

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

.modal-fluid.active {
    display: flex;
}

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

.modal-card-fluid {
    position: relative;
    z-index: 2;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
}

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

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

.modal-header-fluid {
    padding: var(--space-3xl);
    text-align: center;
}

.modal-header-fluid svg {
    margin: 0 auto var(--space-lg);
}

.modal-header-fluid h3 {
    font-size: 28px;
    margin: 0;
}

.modal-body-fluid {
    padding: 0 var(--space-3xl);
}

.modal-alert-fluid {
    padding: var(--space-lg);
    background: #fef3c7;
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
}

.modal-alert-fluid p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-800);
    margin-bottom: var(--space-sm);
}

.modal-alert-fluid p:last-child {
    margin-bottom: 0;
}

.modal-disclosure-fluid {
    padding: var(--space-lg);
    background: var(--gray-50);
    border-left: 4px solid var(--emerald-600);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.modal-disclosure-fluid ul {
    list-style: disc;
    padding-left: var(--space-lg);
}

.modal-disclosure-fluid li {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-700);
    margin-bottom: var(--space-sm);
}

.modal-terms-fluid {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: var(--space-lg);
}

.modal-resources-fluid {
    padding: var(--space-md);
    background: var(--emerald-50);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-lg);
}

.modal-resources-fluid p {
    font-size: 13px;
    text-align: center;
    margin-bottom: var(--space-xs);
}

.modal-resources-fluid a {
    color: var(--emerald-600);
    font-weight: 600;
    text-decoration: underline;
}

.modal-footer-fluid {
    padding: 0 var(--space-3xl) var(--space-3xl);
    text-align: center;
}

.btn-modal-confirm-fluid {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    border-radius: var(--radius-full);
    border: 3px solid #15803d;
    box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    transition: var(--transition);
}

.btn-modal-confirm-fluid:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.4);
}

/* ============================================
   FOOTER
   ============================================ */

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

.footer-content-fluid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand-fluid {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.footer-logo-fluid {
    margin-bottom: var(--space-sm);
}

.footer-brand-fluid h3 {
    color: var(--white);
    font-size: 22px;
    margin: 0;
}

.footer-phone-fluid {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--emerald-400);
    font-size: 20px;
    font-weight: 600;
    transition: var(--transition);
}

.footer-phone-fluid:hover {
    color: var(--emerald-300);
}

.footer-links-fluid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-xl);
}

.footer-column-fluid h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.footer-column-fluid a {
    display: block;
    font-size: 15px;
    color: var(--gray-400);
    margin-bottom: var(--space-sm);
    transition: var(--transition);
}

.footer-column-fluid a:hover {
    color: var(--emerald-400);
    transform: translateX(4px);
}

.footer-bottom-fluid {
    padding-top: var(--space-xl);
    border-top: 1px solid var(--gray-800);
    text-align: center;
}

.footer-bottom-fluid p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: var(--space-xs);
}

.footer-disclaimer-fluid {
    font-size: 13px;
    font-style: italic;
    color: var(--gray-600);
}

/* ============================================
   LEGAL PAGES
   ============================================ */

.legal-page {
    padding: 120px 0 var(--space-4xl);
    background: var(--gray-50);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-3xl);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.legal-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    padding-bottom: var(--space-xl);
    border-bottom: 2px solid var(--gray-200);
}

.legal-header h1 {
    font-size: clamp(32px, 4vw, 44px);
    margin-bottom: var(--space-md);
}

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

.legal-intro {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: var(--space-3xl);
}

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

.legal-section h2 {
    font-size: 24px;
    margin-bottom: var(--space-lg);
    color: var(--gray-900);
}

.legal-section p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: var(--space-md);
}

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

.legal-section li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: var(--space-sm);
}

.legal-highlight {
    padding: var(--space-lg);
    background: var(--emerald-50);
    border-left: 4px solid var(--emerald-600);
    border-radius: var(--radius-md);
    margin: var(--space-lg) 0;
}

.legal-warning {
    padding: var(--space-lg);
    background: #fef3c7;
    border-left: 4px solid var(--amber-500);
    border-radius: var(--radius-md);
    margin: var(--space-lg) 0;
}

.legal-section a {
    color: var(--emerald-600);
    font-weight: 600;
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--emerald-700);
}

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

@media (max-width: 1024px) {
    .nav-links-fluid {
        display: none;
    }

    .nav-toggle-fluid {
        display: flex;
    }

    .about-grid-fluid {
        grid-template-columns: 1fr;
    }

    .contact-bento-grid .contact-card-primary-emerald {
        grid-column: span 1;
    }

    .footer-content-fluid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --space-4xl: 64px;
        --space-3xl: 48px;
    }

    .container {
        padding: 0 var(--space-md);
    }

    .hero-fluid {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-cta-group-fluid {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary-fluid,
    .btn-secondary-fluid {
        width: 100%;
        justify-content: center;
    }

    .bento-grid-fluid {
        grid-template-columns: 1fr;
    }

    .bento-card.large,
    .bento-card.wide {
        grid-column: span 1;
    }

    .masonry-grid-fluid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }

    .masonry-item.tall {
        grid-row: span 1;
    }

    .timeline-wrapper-fluid {
        grid-template-columns: 1fr;
    }

    .map-grid-fluid {
        grid-template-columns: 1fr;
    }

    .values-grid-fluid {
        grid-template-columns: 1fr;
    }

    .process-timeline-fluid {
        grid-template-columns: 1fr;
    }

    .contact-bento-grid {
        grid-template-columns: 1fr;
    }

    .info-cards-grid-fluid {
        grid-template-columns: 1fr;
    }

    .emergency-card-fluid {
        flex-direction: column;
        text-align: center;
    }

    .modal-card-fluid {
        max-width: 100%;
        border-radius: 0;
    }

    .phone-text-fluid {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-trust-grid {
        grid-template-columns: 1fr;
    }

    .legal-container {
        padding: var(--space-lg);
    }
}
