
:root {

    --ford-blue: #00095b;

    --ford-blue-light: #1351d8;

    --ford-black: #1a1a1a;

    --ford-gray: #666;

    --ford-light: #f4f4f4;

    --ford-white: #fff;

}

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

body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: var(--ford-white); color: var(--ford-black); }

.gf-icon { width: 20px; height: 20px; vertical-align: middle; }

.gf-icon-lg { width: 24px; height: 24px; }

.header { background: var(--ford-white); padding: 15px 60px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #eee; }

.logo { font-size: 28px; font-weight: 700; color: var(--ford-blue); font-family: 'Times New Roman', serif; font-style: italic; }

.nav-main { display: flex; gap: 35px; }

.nav-main a { color: var(--ford-black); text-decoration: none; font-size: 15px; font-weight: 500; }

.nav-main a:hover { color: var(--ford-blue-light); }

.header-right { display: flex; align-items: center; gap: 20px; }

.header-right a { color: var(--ford-gray); text-decoration: none; font-size: 14px; display: flex; align-items: center; gap: 6px; }

.header-right a:hover { color: var(--ford-blue-light); }

.hero { height: 85vh; background: linear-gradient(135deg, #1a1a1a 0%, #333 50%, #1a1a1a 100%); display: flex; align-items: center; justify-content: center; position: relative; }

.hero-bg { position: absolute; inset: 0; background: url('https://neuraweb-storage.s3.us-east-2.amazonaws.com/ni/2025/12/traxxas/608606b87349490c.jpg') center/cover; opacity: 0.3; }

.hero-content { text-align: center; color: white; z-index: 2; max-width: 800px; padding: 40px; }

.hero-title { font-size: 64px; font-weight: 300; line-height: 1.1; margin-bottom: 30px; }

.hero-title strong { font-weight: 700; }

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

.hero-buttons { display: flex; gap: 20px; justify-content: center; }

.btn-primary { background: var(--ford-blue-light); color: white; padding: 15px 40px; text-decoration: none; font-weight: 600; border-radius: 30px; transition: all 0.2s; }

.btn-primary:hover { background: #0a3eb8; }

.btn-secondary { background: transparent; color: white; padding: 15px 40px; text-decoration: none; font-weight: 600; border-radius: 30px; border: 2px solid white; transition: all 0.2s; }

.btn-secondary:hover { background: white; color: var(--ford-black); }

.vehicles-section { padding: 80px 60px; }

.vehicles-section h2 { font-size: 36px; font-weight: 300; margin-bottom: 50px; text-align: center; }

.vehicles-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }

.vehicle-card { text-align: center; cursor: pointer; transition: transform 0.2s; }

.vehicle-card:hover { transform: translateY(-5px); }

.vehicle-card img { width: 100%; height: 180px; object-fit: contain; margin-bottom: 20px; }

.vehicle-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }

.vehicle-card p { color: var(--ford-gray); font-size: 14px; margin-bottom: 15px; }

.vehicle-price { font-size: 16px; color: var(--ford-black); }

.vehicle-price span { font-weight: 700; }

.cta-banner { background: var(--ford-blue); color: white; padding: 60px; text-align: center; }

.cta-banner h2 { font-size: 32px; font-weight: 300; margin-bottom: 15px; }

.cta-banner p { font-size: 18px; margin-bottom: 30px; opacity: 0.9; }

.cta-banner .btn-primary { background: white; color: var(--ford-blue); }

.features-section { padding: 80px 60px; background: var(--ford-light); }

.features-section h2 { font-size: 32px; font-weight: 300; margin-bottom: 50px; text-align: center; }

.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }

.feature-card { text-align: center; }

.feature-card img { width: 60px; height: 60px; margin-bottom: 20px; }

.feature-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; }

.feature-card p { color: var(--ford-gray); font-size: 14px; line-height: 1.6; }

.dealer-section { background: var(--ford-black); padding: 80px 60px; text-align: center; color: white; }

.dealer-section h2 { font-size: 36px; font-weight: 300; margin-bottom: 15px; }

.dealer-section > p { color: #999; margin-bottom: 40px; font-size: 18px; }

.dealer-cards { display: flex; justify-content: center; gap: 30px; flex-wrap: wrap; }

.dealer-card { background: #222; padding: 35px; border-radius: 8px; width: 320px; text-align: left; }

.dealer-card h3 { font-size: 20px; margin-bottom: 15px; }

.dealer-card p { font-size: 15px; color: #aaa; margin-bottom: 6px; }

.dealer-card a { display: inline-block; margin-top: 20px; color: var(--ford-blue-light); text-decoration: none; font-weight: 600; }

.footer { background: var(--ford-black); color: #999; padding: 60px; }

.footer-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 40px; margin-bottom: 40px; }

.footer h4 { color: white; font-size: 15px; font-weight: 600; margin-bottom: 20px; }

.footer ul { list-style: none; }

.footer li { margin-bottom: 10px; }

.footer a { color: #999; text-decoration: none; font-size: 14px; }

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

.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 40px; border-top: 1px solid #333; }

.footer-bottom p { font-size: 13px; }

.social-links { display: flex; gap: 20px; }

.social-links a { color: #999; }

.social-links a:hover { color: white; }

.nw-badge { position: fixed; bottom: 20px; right: 20px; background: linear-gradient(135deg, #3b82f6, #1d4ed8); color: white; padding: 12px 20px; border-radius: 30px; font-size: 13px; font-weight: 600; box-shadow: 0 4px 20px rgba(59,130,246,0.4); display: flex; align-items: center; gap: 8px; text-decoration: none; z-index: 1000; }

@media (max-width: 1200px) { .vehicles-grid, .features-grid { grid-template-columns: repeat(2, 1fr); } }

@media (max-width: 768px) { .vehicles-grid, .features-grid { grid-template-columns: 1fr; } .hero-title { font-size: 40px; } .footer-grid { grid-template-columns: repeat(2, 1fr); } }

