:root {
    --launch-blue: #0066CC;
    --sky-blue: #E3F2FD;
    --dark-grey: #333333;
    --white: #ffffff;
    --light-grey: #f4f4f4;
    
    --font-head: 'Exo 2', sans-serif;
    --font-body: 'Roboto', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--white);
    color: var(--dark-grey);
    font-family: var(--font-body);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.section-padding { padding: 80px 0; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
.launch-header { background: var(--white); padding: 15px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; border-top: 5px solid var(--launch-blue); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-weight: 700; font-size: 1.8rem; color: var(--dark-grey); display: flex; align-items: center; gap: 5px; }
.blue { color: var(--launch-blue); }
.symbol { font-size: 1.5rem; }

.main-menu ul { display: flex; gap: 25px; list-style: none; align-items: center; }
.main-menu a { font-weight: 500; font-size: 0.95rem; color: #555; font-family: var(--font-head); }
.main-menu a:hover, .main-menu a.active { color: var(--launch-blue); }

.btn-blue { background: var(--launch-blue); color: var(--white) !important; padding: 10px 25px; border-radius: 4px; font-weight: bold; transition: 0.3s; }
.btn-blue:hover { background: #004c99; box-shadow: 0 5px 10px rgba(0,102,204,0.3); }

/* Mobile Menu */
.mobile-icon { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.mobile-icon span { width: 30px; height: 3px; background: var(--dark-grey); }
.mobile-nav { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--white); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.4s; }
.mobile-nav.active { right: 0; }
.close-nav { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 2rem; cursor: pointer; color: var(--launch-blue); }
.mobile-nav a { font-family: var(--font-head); font-size: 1.8rem; margin: 15px 0; color: var(--dark-grey); font-weight: bold; }

/* Hero & Search */
.hero-search { height: 75vh; background-size: cover; background-position: center; position: relative; display: flex; align-items: center; justify-content: center; }
.overlay { width: 100%; height: 100%; background: linear-gradient(to right, rgba(0, 102, 204, 0.8), rgba(0, 102, 204, 0.4)); display: flex; align-items: center; }
.hero-content { color: var(--white); width: 100%; }
.hero-content h1 { font-family: var(--font-head); font-size: 4rem; line-height: 1.1; margin-bottom: 20px; font-weight: 700; font-style: italic; }
.hero-content p { font-size: 1.2rem; margin-bottom: 40px; max-width: 600px; }

.search-widget { background: var(--white); padding: 25px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.search-row { display: flex; gap: 15px; align-items: flex-end; flex-wrap: wrap; }
.form-group { flex: 1; min-width: 150px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: bold; color: var(--launch-blue); margin-bottom: 5px; }
.form-group input, .form-group select { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-family: var(--font-body); background: var(--light-grey); }
.btn-search { background: var(--launch-blue); color: var(--white); border: none; padding: 14px 30px; font-weight: bold; border-radius: 4px; cursor: pointer; font-family: var(--font-head); font-size: 1rem; }
.btn-search:hover { background: #004c99; }

/* Car Grid */
.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2 { font-family: var(--font-head); font-size: 2.5rem; color: var(--dark-grey); }
.blue-line { width: 60px; height: 4px; background: var(--launch-blue); margin: 10px auto; border-radius: 2px; }
.blue-line.left { margin: 10px 0; }

.car-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.car-box { background: var(--white); border: 1px solid #eee; border-radius: 8px; overflow: hidden; position: relative; transition: 0.3s; }
.car-box:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.1); transform: translateY(-5px); border-color: var(--launch-blue); }
.car-box img { width: 100%; height: 200px; object-fit: cover; }
.tag { position: absolute; top: 15px; left: 15px; padding: 5px 10px; border-radius: 4px; color: white; font-size: 0.7rem; font-weight: bold; text-transform: uppercase; }
.tag.economy { background: #28a745; }
.tag.comfort { background: #ffc107; color: black; }
.tag.suv { background: #17a2b8; }

.box-content { padding: 20px; }
.box-content h3 { font-family: var(--font-head); font-size: 1.4rem; margin-bottom: 5px; }
.box-content p { color: #777; font-size: 0.9rem; margin-bottom: 15px; }
.price-row { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #eee; padding-top: 15px; }
.price { font-size: 1.2rem; font-weight: bold; color: var(--launch-blue); }
.price small { font-size: 0.8rem; color: #999; font-weight: normal; }
.btn-sm { background: var(--launch-blue); color: white; padding: 5px 15px; border-radius: 4px; font-weight: bold; font-size: 0.9rem; }

/* About & Contact */
.about-flex { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.text-area h1 { font-family: var(--font-head); font-size: 2.5rem; color: var(--dark-grey); }
.check-list { list-style: none; margin-top: 20px; font-weight: 500; }
.check-list li { margin-bottom: 10px; color: #444; }
.img-area img { width: 100%; border-radius: 8px; box-shadow: 10px 10px 0 var(--sky-blue); }

.contact-card { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; background: var(--white); padding: 50px; border-radius: 8px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); }
.info-part { background: var(--sky-blue); padding: 30px; border-radius: 8px; }
.info-part h2 { font-family: var(--font-head); color: var(--launch-blue); margin-bottom: 20px; }
.phone-box { background: var(--white); padding: 15px; border-radius: 4px; text-align: center; margin: 20px 0; border: 2px solid var(--launch-blue); }
.phone-box strong { display: block; font-size: 1.5rem; color: var(--launch-blue); font-family: var(--font-head); }

.clean-form .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.clean-form input, .clean-form select, .clean-form textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 4px; font-family: var(--font-body); }
.clean-form .form-group { margin-bottom: 20px; }
.btn-full { width: 100%; background: var(--launch-blue); color: white; border: none; padding: 15px; font-weight: bold; border-radius: 4px; cursor: pointer; font-family: var(--font-head); font-size: 1.1rem; }

/* Testimonials & Legal */
.reviews-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-item { padding: 30px; border: 1px solid #eee; border-radius: 8px; text-align: center; }
.review-item.bg-light { background: var(--sky-blue); border-color: var(--sky-blue); }
.stars { color: #ffc107; margin-bottom: 10px; }
.review-item h4 { font-family: var(--font-head); margin-bottom: 10px; }
.review-item p { font-style: italic; color: #555; margin-bottom: 15px; }
.author { font-weight: bold; color: var(--launch-blue); font-size: 0.9rem; }

.legal-content { max-width: 800px; margin: 0 auto; background: var(--white); padding: 50px; border: 1px solid #eee; }
.legal-content h1 { font-family: var(--font-head); color: var(--launch-blue); }
.legal-content h3 { margin-top: 30px; font-family: var(--font-head); }

/* Footer */
.launch-footer { background: #222; color: #ccc; padding: 60px 0 20px; margin-top: 80px; }
.footer-flex { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #444; padding-bottom: 30px; margin-bottom: 20px; }
.f-col h4 { font-family: var(--font-head); color: var(--white); margin-bottom: 5px; }
.links a { color: #aaa; margin: 0 15px; font-weight: bold; font-size: 0.9rem; }
.links a:hover { color: var(--launch-blue); }
.copyright { text-align: center; font-size: 0.8rem; }

/* Cookie Strip */
.cookie-strip { position: fixed; bottom: 0; left: 0; width: 100%; background: var(--launch-blue); padding: 15px; z-index: 9999; display: none; color: white; }
.cookie-strip.active { display: block; animation: slideUp 0.5s; }
.c-content { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.c-content button { background: var(--white); color: var(--launch-blue); border: none; padding: 5px 20px; font-weight: bold; cursor: pointer; border-radius: 4px; }

@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

@media (max-width: 900px) {
    .main-menu { display: none; }
    .mobile-icon { display: flex; }
    .hero-content h1 { font-size: 3rem; }
    .search-row { flex-direction: column; }
    .car-grid, .about-flex, .reviews-list, .contact-card { grid-template-columns: 1fr; }
    .footer-flex { flex-direction: column; text-align: center; gap: 20px; }
}