/* AUTOMOTIVE DESIGN SYSTEM - GAME-STORIA */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    line-height: 1.4;
    color: #1a1a1a;
    background-color: #0a0a0a;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* GRID SYSTEM - TECHNICAL PRECISION */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.grid-8 { grid-column: span 8; }
.grid-4 { grid-column: span 4; }
.grid-6 { grid-column: span 6; }
.grid-3 { grid-column: span 3; }

/* SPACING SYSTEM - ENGINEERED */
.space-xs { padding: 8px; }
.space-sm { padding: 16px; }
.space-md { padding: 24px; }
.space-lg { padding: 48px; }
.space-xl { padding: 96px; }

.margin-xs { margin: 8px; }
.margin-sm { margin: 16px; }
.margin-md { margin: 24px; }
.margin-lg { margin: 48px; }
.margin-xl { margin: 96px; }

.margin-y-xs { margin: 8px 0; }
.margin-y-sm { margin: 16px 0; }
.margin-y-md { margin: 24px 0; }
.margin-y-lg { margin: 48px 0; }
.margin-y-xl { margin: 96px 0; }

/* COLOR SYSTEM - AUTOMOTIVE TECHNICAL */
:root {
    --color-bg-primary: #0a0a0a;
    --color-bg-secondary: #1a1a1a;
    --color-bg-surface: #2a2a2a;
    --color-bg-panel: #333333;
    --color-text-primary: #ffffff;
    --color-text-secondary: #cccccc;
    --color-text-muted: #888888;
    --color-accent-primary: #2563eb;
    --color-accent-secondary: #1d4ed8;
    --color-border: #404040;
    --color-border-light: #555555;
    --color-success: #10b981;
    --color-warning: #f59e0b;
}

/* TYPOGRAPHY SYSTEM - ENGINEERING PRECISION */
.display-xl {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.display-lg {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.display-md {
    font-size: 2.25rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.heading-xl {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.heading-lg {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.005em;
}

.heading-md {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

.body-lg {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6;
}

.body-md {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
}

.body-sm {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
}

.caption {
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

/* NAVIGATION - TECHNICAL DASHBOARD */
.navbar {
    background: var(--color-bg-secondary);
    border-bottom: 1px solid var(--color-border);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 16px 0;
    gap: 48px;
}

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

.nav-brand h1 {
    color: var(--color-text-primary);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0;
}

.nav-subtitle {
    color: var(--color-text-muted);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 4px 0 0 0;
}

.nav-menu {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.nav-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: all 0.2s;
    position: relative;
}

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

.nav-link.active {
    color: var(--color-accent-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-accent-primary);
    transition: width 0.2s;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-toggle {
    display: none;
    position: relative;
    width: 32px;
    height: 32px;
    background: none;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    overflow: hidden;
}

.mobile-menu-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-accent-primary), var(--color-accent-secondary));
    opacity: 0;
    transition: opacity 0.2s;
}

.mobile-menu-toggle:hover {
    border-color: var(--color-accent-primary);
    transform: scale(1.05);
}

.mobile-menu-toggle:hover::before {
    opacity: 0.1;
}

.mobile-menu-toggle.active {
    border-color: var(--color-accent-primary);
    background: rgba(37, 99, 235, 0.1);
}

.mobile-menu-toggle.active::before {
    opacity: 0.2;
}

.mobile-menu-toggle span {
    position: relative;
    width: 18px;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
}

.mobile-menu-toggle span:nth-child(1) {
    transform: translateY(-6px);
}

.mobile-menu-toggle span:nth-child(2) {
    opacity: 1;
}

.mobile-menu-toggle span:nth-child(3) {
    transform: translateY(6px);
}

/* HERO SECTION - TECHNICAL DASHBOARD */
.hero {
    min-height: 100vh;
    background: var(--color-bg-primary);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 600px;
    gap: 80px;
    align-items: center;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.hero-text-panel {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    padding: 8px 16px;
    border-radius: 24px;
    width: fit-content;
}

.hero-badge::before {
    content: '●';
    color: var(--color-success);
    font-size: 8px;
}

.hero-badge span {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-title {
    color: var(--color-text-primary);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin: 0;
}

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

.hero-subtitle {
    color: var(--color-text-secondary);
    font-size: 1.125rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

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

.stat-number {
    display: block;
    color: var(--color-accent-primary);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    color: var(--color-text-muted);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container {
    position: relative;
    width: 500px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 20px 40px rgba(0,0,0,0.3),
        0 0 0 1px var(--color-border);
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--color-accent-primary), var(--color-success));
    border-radius: 14px;
    z-index: -1;
    opacity: 0.3;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.hero-image-container:hover .hero-image {
    transform: scale(1.02);
}

.hero-frame {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 80px;
    background: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* BUTTONS - TECHNICAL COMPONENTS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    transition: all 0.2s;
    cursor: pointer;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--color-accent-primary);
    color: var(--color-text-primary);
    border-color: var(--color-accent-primary);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    background: var(--color-accent-secondary);
    border-color: var(--color-accent-secondary);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-primary);
    border-color: var(--color-border);
}

.btn-secondary:hover {
    background: var(--color-bg-surface);
    border-color: var(--color-border-light);
    transform: translateY(-1px);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

/* TECHNICAL PANELS & COMPONENTS */
.panel {
    background: var(--color-bg-surface);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 32px;
    position: relative;
}

.panel-header {
    margin-bottom: 24px;
}

.panel-title {
    color: var(--color-text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.panel-subtitle {
    color: var(--color-text-muted);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.5;
}

.data-grid {
    display: grid;
    gap: 24px;
}

.data-card {
    background: var(--color-bg-panel);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 24px;
    transition: all 0.2s;
}

.data-card:hover {
    border-color: var(--color-border-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.data-card-icon {
    width: 48px;
    height: 48px;
    background: var(--color-accent-primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.5rem;
}

.data-card-title {
    color: var(--color-text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.data-card-text {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    line-height: 1.5;
}

.divider {
    height: 1px;
    background: var(--color-border);
    margin: 48px 0;
}

.section-spacer {
    padding: 96px 0;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.about-content h3 {
    color: #1a365d;
    margin: 2rem 0 1rem 0;
}

.about-content h3:first-child {
    margin-top: 0;
}

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #f8fafc;
}

.services-grid {
    display: grid;
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

/* How We Work Section */
.how-we-work {
    padding: 80px 0;
}

.process-grid {
    display: grid;
    gap: 2rem;
}

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

/* Vehicles Section */
.vehicles {
    padding: 80px 0;
    background: #f8fafc;
}

.vehicles-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.vehicle-type h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.vehicle-type ul {
    list-style: none;
    padding: 0;
}

.vehicle-type li {
    padding: 0.5rem 0;
    color: #555;
}

.vehicle-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Why Choose Us Section */
.why-choose {
    padding: 80px 0;
}

.reasons-grid {
    display: grid;
    gap: 2rem;
}

.reason-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.reason-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.reason-card h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #1a365d;
    color: white;
}

.contact-grid {
    display: grid;
    gap: 3rem;
    align-items: start;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.contact-item p,
.contact-item a {
    color: #cbd5e1;
    text-decoration: none;
}

.contact-item a:hover {
    color: #2563eb;
}

.contact-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.map-placeholder {
    background: #2d3748;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.map-placeholder p {
    margin: 0.5rem 0;
    color: #cbd5e1;
}

/* Footer - Technical Design */
.footer {
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    padding: 64px 0 32px;
    margin-top: 96px;
}

/* MOBILE DESIGN SYSTEM - INTENTIONAL NOT RESPONSIVE */

/* Mobile Navigation - Full Screen Overlay */
@media (max-width: 768px) {
    .nav-content {
        grid-template-columns: auto 1fr auto;
        gap: 16px;
    }

    .nav-menu {
        display: none;
    }

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

    .nav-menu.mobile-open {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--color-bg-primary);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 1001;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        padding: env(safe-area-inset-top, 20px) 24px env(safe-area-inset-bottom, 40px) 24px;
        padding-top: max(80px, env(safe-area-inset-top, 20px) + 60px);
        box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.1);
        min-height: 100vh;
        min-height: 100dvh;
    }

    .nav-menu.mobile-open::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(37, 99, 235, 0.03), rgba(16, 185, 129, 0.03));
        pointer-events: none;
    }

    .nav-menu.mobile-open .nav-link {
        font-size: 1.125rem;
        font-weight: 500;
        letter-spacing: 0.02em;
        padding: 16px 24px;
        width: 100%;
        max-width: 280px;
        text-align: center;
        border: 1px solid var(--color-border);
        border-radius: 8px;
        background: var(--color-bg-surface);
        transition: all 0.2s;
        color: var(--color-text-primary);
        text-decoration: none;
        display: block;
        touch-action: manipulation;
    }

    .nav-menu.mobile-open .nav-link:hover {
        border-color: var(--color-accent-primary);
        background: rgba(37, 99, 235, 0.05);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
    }

    .nav-menu.mobile-open .nav-link.active {
        border-color: var(--color-accent-primary);
        background: rgba(37, 99, 235, 0.1);
        color: var(--color-accent-primary);
        font-weight: 600;
    }

    /* Header behavior when mobile menu is open */
    .mobile-menu-open .navbar {
        background: var(--color-bg-primary);
        border-bottom: 1px solid var(--color-border);
    }

    /* Hide CTA button when mobile menu is open */
    .mobile-menu-open .nav-cta {
        display: none !important;
    }

    /* Close button for mobile menu */
    .mobile-menu-close {
        position: absolute;
        top: max(16px, env(safe-area-inset-top, 16px));
        right: max(16px, env(safe-area-inset-right, 16px));
        width: 44px;
        height: 44px;
        background: var(--color-bg-surface);
        border: 1px solid var(--color-border);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s;
        z-index: 1002;
        touch-action: manipulation;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .mobile-menu-close:hover {
        border-color: var(--color-accent-primary);
        background: rgba(37, 99, 235, 0.1);
        transform: scale(1.05);
    }

    .mobile-menu-close::before,
    .mobile-menu-close::after {
        content: '';
        position: absolute;
        width: 18px;
        height: 2px;
        background: var(--color-text-primary);
        border-radius: 1px;
        transition: all 0.2s;
    }

    .mobile-menu-close::before {
        transform: rotate(45deg);
    }

    .mobile-menu-close::after {
        transform: rotate(-45deg);
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(4px, 4px) scaleX(0.8);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -4px) scaleX(0.8);
    }
}

/* Mobile Hero - Stacked Technical Layout */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 80px 0;
    }

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

    .hero-text-panel {
        align-items: center;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 32px;
    }

    .hero-visual {
        height: auto;
        order: -1;
    }

    .hero-image-container {
        width: 100%;
        max-width: 400px;
        height: 300px;
    }

    .hero-frame {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 16px;
        align-self: center;
    }
}

/* Mobile Panels - Technical Stack */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .grid-8, .grid-4, .grid-6, .grid-3 {
        grid-column: span 1;
    }

    .panel {
        padding: 24px;
    }

    .data-grid {
        gap: 16px;
    }

    .data-card {
        padding: 20px;
    }

    .section-spacer {
        padding: 64px 0;
    }
}

/* Mobile Typography - Engineered Hierarchy */
@media (max-width: 768px) {
    .display-xl { font-size: 2.5rem; }
    .display-lg { font-size: 2rem; }
    .display-md { font-size: 1.75rem; }
    .heading-xl { font-size: 1.5rem; }
    .heading-lg { font-size: 1.25rem; }
    .panel-title { font-size: 1.25rem; }
    .hero-title { font-size: 2rem; }
}

/* Mobile Technical Touches */
@media (max-width: 768px) {
    .btn {
        padding: 14px 20px;
        font-size: 0.875rem;
    }

    .panel-header {
        margin-bottom: 20px;
    }

    .data-card-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .divider {
        margin: 32px 0;
    }
}

/* Mobile Menu - Clean Implementation */

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px) scaleX(0.8);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px) scaleX(0.8);
}

/* About Page Specific Styles */
.about-detailed {
    padding: 80px 0;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    color: #1a365d;
    margin-bottom: 2rem;
    text-align: center;
}

.team-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: center;
}

.team-role {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.feature-item h4 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.commitments-list {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    max-width: 600px;
    margin: 2rem auto;
}

.commitments-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.commitments-list li:last-child {
    border-bottom: none;
}

.about-cta {
    text-align: center;
    background: #f8fafc;
    padding: 3rem;
    border-radius: 8px;
    margin-top: 3rem;
}

.about-cta h2 {
    color: #1a365d;
    margin-bottom: 1rem;
}

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

/* Active nav link */
.nav-link.active {
    color: #2563eb;
    font-weight: 600;
}

/* Services Page Specific Styles */
.services-detailed {
    padding: 80px 0;
}

.service-detail {
    margin-bottom: 6rem;
}

.service-detail:nth-child(even) .service-content {
    flex-direction: row-reverse;
}

.service-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.service-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.service-description {
    flex: 1;
}

.service-description h3 {
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.service-description h4 {
    color: #1a365d;
    margin: 2rem 0 1rem 0;
    font-size: 1.1rem;
}

.service-description ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.service-description li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.services-cta {
    text-align: center;
    background: #f8fafc;
    padding: 3rem;
    border-radius: 8px;
    margin-top: 4rem;
}

.services-cta h2 {
    color: #1a365d;
    margin-bottom: 1rem;
}

/* Contact Page Specific Styles */
.contact-detailed {
    padding: 80px 0;
}

.contact-main {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-info-section h2,
.location-section h2 {
    color: #1a365d;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-info-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: 2rem;
}

.contact-info-card h3 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.contact-info-card p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.phone-link,
.emergency-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.phone-link:hover,
.emergency-link:hover {
    text-decoration: underline;
}

.contact-note {
    color: #718096;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

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

.day {
    font-weight: 600;
    color: #1a365d;
}

.time {
    color: #4a5568;
}

.map-container {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.map-placeholder-large {
    height: 400px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content {
    text-align: center;
    padding: 2rem;
}

.map-content h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.map-details {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
    text-align: left;
}

.map-info h4,
.map-directions h4 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.map-info ul,
.map-directions p {
    color: #4a5568;
    line-height: 1.6;
}

.map-info li {
    margin-bottom: 0.5rem;
}

.additional-info {
    margin-bottom: 4rem;
}

.info-section {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.info-section h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.info-section ul {
    padding-left: 1.5rem;
}

.info-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-cta-final {
    text-align: center;
    background: #1a365d;
    color: white;
    padding: 3rem;
    border-radius: 8px;
}

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