/* ==========================================
   Fontana Forklift Repair - Lead Gen Site
   ========================================== */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #1a1a2e;
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #1a1a2e;
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.logo h1 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.tagline {
    font-size: 0.8rem;
    color: #aaa;
}

.cta-header {
    text-align: right;
}

.phone-number {
    color: #f0c040;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
}

.phone-number:hover {
    color: #ffd866;
}

.availability {
    font-size: 0.75rem;
    color: #888;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    padding: 80px 0 60px;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.highlight {
    color: #f0c040;
}

.hero-sub {
    font-size: 1.15rem;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #f0c040;
    color: #1a1a2e;
}

.btn-primary:hover {
    background: #ffd866;
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #f0c040;
}

.btn-secondary:hover {
    background: rgba(240, 192, 64, 0.1);
}

.btn-block {
    width: 100%;
}

.hero-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #ddd;
}

/* Sections */
section {
    padding: 60px 0;
}

section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #1a1a2e;
}

/* Services */
.services {
    background: #f8f9fa;
}

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

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: transform 0.2s;
}

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

.service-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.service-card h3 {
    margin-bottom: 10px;
    color: #0f3460;
}

.service-card p {
    color: #555;
    font-size: 0.95rem;
}

/* Area */
.area {
    text-align: center;
}

.area-intro {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #555;
}

.area-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 15px;
}

.area-item {
    background: #eef2f7;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.95rem;
    color: #1a1a2e;
}

.area-zip {
    color: #888;
    font-size: 0.85rem;
}

/* Contact / Form */
.contact {
    background: #1a1a2e;
    color: #fff;
}

.contact h2 {
    color: #fff;
}

.contact p {
    text-align: center;
    margin-bottom: 30px;
    color: #ccc;
}

.contact-form {
    max-width: 550px;
    margin: 0 auto;
}

.form-row {
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #444;
    border-radius: 6px;
    background: #2a2a3e;
    color: #fff;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: #f0c040;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888;
}

.contact-form select option {
    background: #1a1a2e;
}

/* Why Us */
.why-us {
    background: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.why-item {
    text-align: center;
    padding: 20px;
}

.why-item strong {
    display: block;
    font-size: 1.2rem;
    color: #0f3460;
    margin-bottom: 8px;
}

.why-item p {
    color: #666;
    font-size: 0.95rem;
}

/* Footer */
.footer {
    background: #111;
    color: #888;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-info h3,
.footer-hours h3 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 1rem;
}

.footer-phone {
    margin-top: 10px;
}

.footer-phone a {
    color: #f0c040;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-phone a:hover {
    text-decoration: underline;
}

.footer-hours p {
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #222;
    font-size: 0.8rem;
}

/* Thanks Page */
.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
}

.thanks-page h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.thanks-page p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

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

    .hero h2 {
        font-size: 1.8rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 40px 0;
    }
}
