/* ===========================
   CSS Variables & Reset
   =========================== */

:root {
    /* Color Palette - Modern Blues */
    --navy-dark: #0a1628;
    --navy-primary: #152238;
    --navy-medium: #1e3a5f;
    --blue-primary: #2563eb;
    --blue-light: #3b82f6;
    --blue-bright: #60a5fa;
    --steel-blue: #475569;
    --slate-light: #64748b;
    --slate-lighter: #cbd5e1;
    --gray-bg: #f8fafc;
    --gray-light: #f1f5f9;
    --white: #ffffff;
    --text-dark: #0f172a;
    --text-medium: #334155;
    --text-light: #64748b;
    
    /* Typography */
    --font-primary: 'Archivo', sans-serif;
    --font-mono: 'Space Mono', monospace;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.1);
    --shadow-lg: 0 8px 24px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 16px 48px rgba(15, 23, 42, 0.15);
}

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

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

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===========================
   Typography
   =========================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--navy-dark);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

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

a {
    color: var(--blue-primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--blue-light);
}

.lead {
    font-size: 1.25rem;
    color: var(--text-medium);
    line-height: 1.8;
}

/* ===========================
   Layout Utilities
   =========================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

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

.section-header p {
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

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

/* ===========================
   Navigation
   =========================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--slate-lighter);
    z-index: 1000;
    transition: all var(--transition-smooth);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--navy-dark);
    transition: opacity var(--transition-fast);
}

.logo:hover {
    opacity: 0.8;
}

.logo-main {
    color: var(--navy-dark);
}

.logo-sub {
    color: var(--blue-primary);
    font-family: var(--font-mono);
    font-size: 1.125rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color var(--transition-fast);
    position: relative;
}

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--blue-primary);
}

.nav-cta {
    background: var(--blue-primary);
    color: var(--white) !important;
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    transition: all var(--transition-fast);
}

.nav-cta:hover {
    background: var(--blue-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy-dark);
    transition: all var(--transition-fast);
}

/* ===========================
   Buttons
   =========================== */

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 8px;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--blue-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--navy-dark);
    border-color: var(--slate-lighter);
}

.btn-secondary:hover {
    background: var(--gray-light);
    border-color: var(--slate-light);
    color: var(--navy-dark);
}

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

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

.btn-large {
    padding: 1.125rem 2.25rem;
    font-size: 1.0625rem;
}

/* ===========================
   Hero Section
   =========================== */

.hero {
    margin-top: 80px;
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(37, 99, 235, 0.03) 35px, rgba(37, 99, 235, 0.03) 70px);
    pointer-events: none;
}

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

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--blue-primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
    font-family: var(--font-mono);
}

.hero-title {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease;
}

.hero-title .highlight {
    color: var(--blue-primary);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 700px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-stats {
    display: flex;
    gap: 4rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy-dark);
    font-family: var(--font-mono);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===========================
   Value Proposition
   =========================== */

.value-prop {
    background: var(--white);
}

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

.value-card {
    padding: 2rem;
    background: var(--gray-bg);
    border-radius: 12px;
    border: 1px solid var(--slate-lighter);
    transition: all var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-bright);
}

.value-icon {
    width: 48px;
    height: 48px;
    color: var(--blue-primary);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

/* ===========================
   Services Preview
   =========================== */

.services-preview {
    background: var(--gray-bg);
}

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

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--slate-lighter);
    transition: all var(--transition-smooth);
}

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.service-header h3 {
    font-size: 1.375rem;
}

.service-tag {
    background: var(--blue-primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.service-card > p {
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue-primary);
    font-weight: 700;
}

.service-link {
    color: var(--blue-primary);
    font-weight: 600;
    transition: all var(--transition-fast);
}

.service-link:hover {
    color: var(--blue-light);
    transform: translateX(4px);
    display: inline-block;
}

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

/* ===========================
   Locations Preview
   =========================== */

.locations-preview {
    background: var(--white);
}

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

.location-card {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-medium) 100%);
    color: var(--white);
    border-radius: 12px;
    transition: all var(--transition-smooth);
}

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

.location-header {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.location-label {
    font-size: 0.875rem;
    color: var(--blue-bright);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    font-family: var(--font-mono);
}

.location-card p {
    color: rgba(255, 255, 255, 0.9);
}

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

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

.final-cta {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-medium) 100%);
    color: var(--white);
    text-align: center;
}

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

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

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

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

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

.footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

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

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-main {
    color: var(--white);
}

.footer-logo .logo-sub {
    color: var(--blue-bright);
    font-family: var(--font-mono);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* ===========================
   Page Hero (Internal Pages)
   =========================== */

.page-hero {
    margin-top: 80px;
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-medium) 100%);
    color: var(--white);
    text-align: center;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.page-hero .lead {
    color: rgba(255, 255, 255, 0.9);
}

/* ===========================
   About Page
   =========================== */

.about-story,
.team-approach,
.mission,
.values,
.why-texas {
    background: var(--white);
}

.about-story:nth-child(even),
.team-approach:nth-child(even) {
    background: var(--gray-bg);
}

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

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

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

.content-text p {
    margin-bottom: 1.5rem;
}

.visual-box {
    background: linear-gradient(135deg, var(--blue-primary) 0%, var(--blue-light) 100%);
    padding: 3rem;
    border-radius: 12px;
    color: var(--white);
}

.visual-stat {
    margin-bottom: 2rem;
}

.visual-stat:last-child {
    margin-bottom: 0;
}

.visual-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-mono);
}

.visual-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

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

.mission-card,
.value-item {
    padding: 2rem;
    background: var(--gray-bg);
    border-radius: 12px;
    border-left: 4px solid var(--blue-primary);
}

.mission-card h3,
.value-item h3 {
    margin-bottom: 1rem;
}

.value-number {
    font-family: var(--font-mono);
    font-size: 2rem;
    color: var(--blue-primary);
    margin-bottom: 0.5rem;
}

.approach-box {
    background: var(--gray-bg);
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid var(--slate-lighter);
}

.approach-box h3 {
    margin-bottom: 1rem;
}

.approach-divider {
    height: 1px;
    background: var(--slate-lighter);
    margin: 1.5rem 0;
}

.approach-highlight {
    color: var(--blue-primary);
    font-weight: 600;
}

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

.texas-text {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

/* ===========================
   Services Page
   =========================== */

.service-detail {
    padding: var(--spacing-lg) 0;
}

.service-detail.alt {
    background: var(--gray-bg);
}

.service-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-badge {
    display: inline-block;
    background: var(--blue-primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-detail h2 {
    margin-bottom: 1.5rem;
}

.service-intro {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

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

.feature-block h3 {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.feature-block p {
    color: var(--text-medium);
}

.service-includes,
.service-good-for {
    background: var(--gray-bg);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.service-detail.alt .service-includes,
.service-detail.alt .service-good-for {
    background: var(--white);
}

.service-includes h3,
.service-good-for h3 {
    margin-bottom: 1rem;
}

.service-includes ul {
    list-style: none;
}

.service-includes li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--text-medium);
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue-primary);
    font-weight: 700;
}

.services-cta {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-medium) 100%);
    color: var(--white);
    text-align: center;
}

.services-cta .cta-content h2 {
    color: var(--white);
}

/* ===========================
   Process Page
   =========================== */

.process-intro {
    background: var(--gray-bg);
}

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

.intro-content h2 {
    margin-bottom: 1rem;
}

.intro-content p {
    font-size: 1.125rem;
}

.process-steps {
    background: var(--white);
}

.process-step {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid var(--slate-lighter);
}

.process-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.step-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--blue-primary);
    font-family: var(--font-mono);
    line-height: 1;
}

.step-content h2 {
    margin-bottom: 1rem;
}

.step-intro {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.step-details,
.step-outcome {
    margin-bottom: 2rem;
}

.step-details h3,
.step-outcome h3 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.step-details ul {
    list-style: none;
}

.step-details li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--text-medium);
}

.step-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--blue-primary);
    font-weight: 700;
}

.step-duration {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gray-bg);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-family: var(--font-mono);
}

.duration-label {
    color: var(--text-light);
    font-size: 0.875rem;
}

.duration-value {
    color: var(--navy-dark);
    font-weight: 600;
}

.process-principles {
    background: var(--gray-bg);
}

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

.principle-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--blue-primary);
}

.principle-card h3 {
    margin-bottom: 0.75rem;
}

.process-faq {
    background: var(--white);
}

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

.faq-item {
    padding: 2rem;
    background: var(--gray-bg);
    border-radius: 12px;
}

.faq-item h3 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

/* ===========================
   Locations Page
   =========================== */

.locations-overview {
    background: var(--gray-bg);
}

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

.overview-content h2 {
    margin-bottom: 1rem;
}

.overview-content p {
    font-size: 1.125rem;
}

.location-details {
    background: var(--white);
}

.location-full {
    margin-bottom: 6rem;
    padding-bottom: 6rem;
    border-bottom: 2px solid var(--slate-lighter);
}

.location-full:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

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

.location-header-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.location-description {
    font-size: 1.125rem;
    color: var(--text-medium);
}

.location-content-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.location-info {
    background: var(--gray-bg);
    padding: 2rem;
    border-radius: 12px;
}

.location-info h3 {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.info-item {
    margin-bottom: 1.25rem;
}

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

.info-label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.info-value {
    color: var(--navy-dark);
    font-weight: 600;
}

.location-details-text h3 {
    margin-bottom: 1rem;
}

.location-details-text p {
    margin-bottom: 1.5rem;
}

.location-capabilities h3 {
    margin-bottom: 1.5rem;
}

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

.capability-item {
    background: var(--gray-bg);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: var(--navy-dark);
}

.service-area {
    background: var(--gray-bg);
}

.service-area-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-area-content p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.location-approach {
    background: var(--white);
}

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

.approach-card {
    padding: 2rem;
    background: var(--gray-bg);
    border-radius: 12px;
    border-left: 4px solid var(--blue-primary);
}

.approach-card h3 {
    margin-bottom: 1rem;
}

/* ===========================
   Contact Page
   =========================== */

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info > p {
    margin-bottom: 3rem;
}

.contact-methods {
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.method-content h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.method-content a {
    color: var(--text-medium);
}

.office-locations {
    background: var(--gray-bg);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.office-locations h3 {
    margin-bottom: 1.5rem;
}

.office-item {
    margin-bottom: 1.5rem;
}

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

.office-item strong {
    display: block;
    color: var(--navy-dark);
    margin-bottom: 0.25rem;
}

.office-item p {
    color: var(--text-light);
    margin: 0;
}

.contact-note {
    background: var(--blue-primary);
    color: var(--white);
    padding: 2rem;
    border-radius: 12px;
}

.contact-note h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.contact-note p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.contact-form {
    background: var(--gray-bg);
    padding: 3rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--navy-dark);
    font-weight: 600;
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--slate-lighter);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    display: block;
}

.contact-benefits {
    background: var(--gray-bg);
}

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

.benefit-card {
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    border-left: 4px solid var(--blue-primary);
}

.benefit-card h3 {
    margin-bottom: 1rem;
}

.contact-faq {
    background: var(--white);
}

/* ===========================
   Animations
   =========================== */

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

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 968px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        gap: 2rem;
    }
    
    .content-grid,
    .location-content-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-step {
        grid-template-columns: 80px 1fr;
        gap: 2rem;
    }
    
    .step-number {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        transition: transform var(--transition-smooth);
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    h1 {
        font-size: 2rem;
    }
    
    section {
        padding: var(--spacing-lg) 0;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .process-step {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    h1 {
        font-size: 1.75rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .btn-large {
        padding: 1rem 1.75rem;
        font-size: 1rem;
    }
}
