:root {
    --mopar-blue: #005da4;
    --mopar-blue-hover: #00467d;
    --nav-dark: #202a35;
    --bg-light: #f4f4f4;
    --text-dark: #1a1a1a;
    --white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Helvetica Neue', Arial, sans-serif; color: var(--text-dark); line-height: 1.5; overflow-x: hidden; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 60px 0; }
.section-title { text-align: center; font-size: 1.8rem; margin-bottom: 40px; text-transform: uppercase; font-weight: 700; }
.bg-light { background-color: var(--bg-light); }

/* Логотип */
.logo { display: flex; align-items: center; font-weight: bold; }
.logo span { margin-left: 0px; padding-top: 5px; font-size: 1.2rem; }

/* Шапка */
.top-bar { background: var(--white); padding: 15px 0; border-bottom: 1px solid #eee; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-links a { color: var(--mopar-blue); text-decoration: none; font-weight: bold; font-size: 1.1rem; }

.main-nav { background: var(--nav-dark); }
.nav-links { display: flex; justify-content: center; gap: 30px; }
.nav-links a { color: var(--white); text-decoration: none; padding: 15px 0; text-transform: uppercase; font-size: 0.85rem; font-weight: 600; }

/* Hero з відео */
.hero { position: relative; height: 600px; display: flex; align-items: center; overflow: hidden; background: #000; }
.video-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.video-background video { width: 100%; height: 100%; object-fit: cover; }
.video-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.3); z-index: 2; }
.hero-container { position: relative; z-index: 3; width: 100%; }
.hero-content-box { background: rgba(255, 255, 255, 0.95); padding: 40px; max-width: 500px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.hero-content-box h1 { font-size: 2.2rem; margin-bottom: 15px; color: var(--text-dark); line-height: 1.1; }

/* Картки з Zoom */
.essentials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.essential-card { position: relative; height: 250px; overflow: hidden; border: 1px solid #ddd; cursor: pointer; }
.card-img { width: 100%; height: 100%; background-size: cover; background-position: center; transition: transform 0.6s ease; background-color: #eee; }
.essential-card:hover .card-img { transform: scale(1.1); }
.card-text { position: absolute; bottom: 0; width: 100%; padding: 15px; background: rgba(0,0,0,0.7); color: #fff; font-weight: bold; z-index: 2; text-transform: uppercase; font-size: 0.9rem; }

.img-1 { background-image: url('parts-box.jpg'); }
.img-2 { background-image: url('service.jpg'); }
.img-3 { background-image: url('shipping.jpg'); }

/* Форма (Додано catalog-preview.png) */
.vin-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.mockup-box { height: 350px; background: #fff url('catalog-preview.png') center/cover; border: 1px solid #ddd; }
.mopar-form input { width: 100%; padding: 12px; margin-bottom: 15px; border: 1px solid #ccc; font-size: 1rem; border-radius: 2px; }

/* Кнопки */
.btn { display: inline-block; padding: 14px 28px; font-weight: 700; text-transform: uppercase; text-decoration: none; transition: 0.3s; border: 2px solid transparent; text-align: center; }
.btn-primary { background: var(--mopar-blue); color: var(--white); }
.btn-primary:hover { background: var(--mopar-blue-hover); }
.btn-outline { color: var(--mopar-blue); border-color: var(--mopar-blue); }
.btn-outline:hover { background: var(--mopar-blue); color: #fff; }

/* Контакти */
.help-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.help-card { background: #fff; border: 1px solid #ddd; padding: 40px 20px; text-align: center; position: relative; }
.help-icon { background: var(--mopar-blue); color: #fff; width: 60px; height: 60px; border-radius: 50%; display: flex; justify-content: center; align-items: center; margin: 0 auto 20px; font-size: 1.5rem; }

/* Бренди */
.brands-bar { background: var(--mopar-blue); color: #fff; padding: 20px 0; text-align: center; font-weight: 800; letter-spacing: 2px; }
.brands-flex { display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; }

/* ПІДВАЛ */
.site-footer { background: #000; color: #fff; padding: 40px 0; text-align: center; }
.footer-info { margin-bottom: 20px; }
.footer-phone { color: #fff; font-size: 1.5rem; font-weight: bold; text-decoration: none; display: block; margin-bottom: 5px; }
.footer-phone:hover { color: var(--mopar-blue); }
.footer-hours { color: #888; font-size: 0.9rem; }
.footer-bottom { border-top: 1px solid #333; padding-top: 20px; font-size: 0.8rem; color: #555; }
.footer-bottom a { color: #777; text-decoration: none; }
.footer-bottom a:hover { text-decoration: underline; }

/* МОБІЛЬНА ВЕРСІЯ */
@media (max-width: 768px) {
    .essentials-grid, .vin-layout, .help-grid { grid-template-columns: 1fr; }
    .hero { height: 450px; }
    .hero-content-box { max-width: 90%; margin: 0 auto; padding: 25px; text-align: center; }
    .hero-content-box h1 { font-size: 1.6rem; }
    .nav-links { display: none; }
}