/* ReloCrest - Original Working Version */

:root {
    --navy: #1a2332;
    --gold: #f4a261;
    --light: #f8f9fa;
    --white: #ffffff;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

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

/* Navigation */
.nav {
    background: var(--navy);
    padding: 16px 0;
}

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

.logo img {
    height: 50px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    margin-left: 24px;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, #2d3e50 100%);
    color: var(--white);
    padding: 120px 0 80px;
    min-height: 600px;
}

.hero-content {
    max-width: 700px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
}

.gradient-text {
    color: var(--gold);
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.btn {
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
}

/* Trust Section */
.trust-section {
    background: #f5f5f5;
    padding: 40px 0;
    text-align: center;
}

.trust-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 16px;
}

/* Content Sections */
.how-it-works,
.why-birmingham {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

/* Footer */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 60px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.footer a {
    color: var(--white);
    text-decoration: none;
}

/* Mobile */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
}
