/* Hero */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: clamp(16px, 2vw, 20px);
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Stats */
.stats {
    background-color: var(--primary-color);
    color: var(--white);
}

.stat-item h2 {
    font-size: 40px;
    margin-bottom: 0;
    color: var(--secondary-color);
}

.stat-item p {
    font-weight: 600;
    opacity: 0.9;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: var(--border-color);
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 40px;
    position: relative;
    width: 50%;
    padding: 0 30px;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: -6px;
    width: 12px;
    height: 12px;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

.timeline-item:nth-child(even)::after {
    left: -6px;
}

/* Map Header (Placeholder) */
.map-placeholder {
    height: 400px;
    background-color: var(--bg-secondary);
    border-radius: var(--radius-card);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.map-placeholder::after {
    content: 'Google Maps Placeholder';
    color: var(--text-secondary);
}