:root {
    --orange: #ff6b00;
    --dark-orange: #e65100;
    --grey: #333333;
    --light-grey: #f4f4f4;
    --white: #ffffff;
    --text: #212121;
    
    --font-main: 'Roboto', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-main);
    color: var(--text);
    background-color: var(--light-grey);
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
.main-header { background-color: var(--white); padding: 15px 0; border-bottom: 3px solid var(--orange); position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-size: 2rem; font-weight: 900; color: var(--grey); letter-spacing: -1px; text-transform: uppercase; }
.orange { color: var(--orange); }

.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a { font-weight: 700; color: var(--grey); font-size: 0.95rem; text-transform: uppercase; }
.nav-links a:hover, .nav-links a.active { color: var(--orange); }

.btn-login { background-color: var(--grey); color: var(--white) !important; padding: 8px 20px; border-radius: 4px; }
.btn-login:hover { background-color: var(--orange); }

/* Mobile Menu */
.mobile-toggle { display: none; background: none; border: none; font-size: 2rem; cursor: pointer; color: var(--orange); }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 250px; height: 100%; background: var(--white); z-index: 2000; padding: 40px; display: flex; flex-direction: column; transition: 0.3s; border-left: 5px solid var(--orange); }
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; font-size: 1.5rem; margin-bottom: 20px; background: none; border: none; cursor: pointer; }
.mobile-menu a { padding: 10px 0; border-bottom: 1px solid #eee; font-weight: 700; color: var(--grey); }

/* Hero Booking */
.booking-hero {
    height: 500px; position: relative; display: flex; align-items: center;
}
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center;
    filter: brightness(0.6); z-index: 1;
}
.hero-content { position: relative; z-index: 2; color: var(--white); width: 100%; }
.hero-content h1 { font-size: 3.5rem; font-weight: 900; margin-bottom: 10px; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.hero-content p { font-size: 1.5rem; margin-bottom: 30px; font-weight: 300; }

.booking-widget { background: var(--white); padding: 20px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.3); border-top: 5px solid var(--orange); }
#searchForm { display: flex; gap: 15px; align-items: flex-end; flex-wrap: wrap; }
.form-group { flex: 1; min-width: 200px; }
.form-group label { display: block; font-weight: 700; color: var(--grey); margin-bottom: 5px; font-size: 0.9rem; }
.form-group input, .form-group select { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; font-family: var(--font-main); font-weight: 700; }
.btn-search { background-color: var(--orange); color: var(--white); border: none; padding: 12px 30px; font-weight: 900; border-radius: 4px; cursor: pointer; font-size: 1.1rem; height: 46px; flex: 0 0 auto; }
.btn-search:hover { background-color: var(--dark-orange); }

/* Offers Grid */
.section-padding { padding: 60px 0; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 { font-size: 2.5rem; font-weight: 900; color: var(--grey); }
.line { width: 60px; height: 5px; background-color: var(--orange); margin: 10px auto; }

.car-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.car-card { background-color: var(--white); padding: 20px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); text-align: center; position: relative; transition: 0.3s; }
.car-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.price-tag { position: absolute; top: 20px; left: 20px; background-color: var(--orange); color: var(--white); padding: 5px 10px; font-weight: 900; border-radius: 4px; }
.car-card img { width: 100%; height: auto; margin-bottom: 15px; }
.car-card h3 { font-size: 1.5rem; margin-bottom: 5px; color: var(--grey); }
.car-card p { color: #666; margin-bottom: 20px; font-size: 0.9rem; }
.btn-rent { display: block; width: 100%; background-color: var(--grey); color: var(--white); padding: 10px; font-weight: 900; border-radius: 4px; }
.btn-rent:hover { background-color: var(--orange); }

/* Fleet List */
.page-title-bar { background-color: var(--grey); color: var(--white); padding: 40px 0; text-align: center; }
.fleet-list { display: flex; flex-direction: column; gap: 30px; }
.fleet-item { display: flex; background: var(--white); padding: 20px; border-radius: 8px; align-items: center; gap: 30px; box-shadow: 0 3px 10px rgba(0,0,0,0.05); }
.f-img { flex: 1; }
.f-img img { width: 100%; border-radius: 4px; }
.f-details { flex: 1.5; }
.f-details h3 { font-size: 1.8rem; color: var(--orange); margin-bottom: 15px; }
.f-details ul { list-style: none; margin-bottom: 20px; }
.f-details li { margin-bottom: 5px; font-weight: bold; color: #555; }
.f-details li::before { content: "✓"; color: var(--orange); margin-right: 10px; }
.btn-small { background: var(--orange); color: var(--white); padding: 8px 20px; font-weight: bold; border-radius: 4px; display: inline-block; }

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-card { background: var(--white); padding: 30px; border-radius: 8px; border-top: 4px solid var(--orange); }
.stars { color: #ffc107; font-size: 1.2rem; margin-bottom: 10px; }
.review-card p { font-style: italic; color: #555; margin-bottom: 15px; }
.review-card strong { display: block; text-align: right; color: var(--grey); }

/* Contact Form */
.contact-box { display: flex; gap: 50px; background: var(--white); padding: 50px; border-radius: 8px; }
.contact-info { flex: 1; }
.contact-info h2 { font-size: 2rem; color: var(--grey); margin-bottom: 20px; }
.info-item { margin-top: 20px; border-left: 3px solid var(--orange); padding-left: 15px; }
.orange-form { flex: 1.5; }
.orange-form textarea { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 4px; }
.btn-submit { width: 100%; background-color: var(--orange); color: var(--white); padding: 15px; border: none; font-weight: 900; border-radius: 4px; cursor: pointer; font-size: 1.1rem; }
.btn-submit:hover { background-color: var(--dark-orange); }

/* Legal */
.legal-content { background: var(--white); padding: 50px; border-radius: 8px; }
.legal-content h1 { color: var(--orange); }
.legal-content h3 { margin-top: 30px; margin-bottom: 10px; border-bottom: 1px solid #eee; padding-bottom: 5px; }

/* Footer */
.main-footer { background-color: var(--grey); color: #ccc; padding: 40px 0; margin-top: auto; }
.footer-cols { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.footer-cols h4 { color: var(--white); font-size: 1.5rem; margin-bottom: 5px; }
.footer-cols.right a { color: #aaa; margin-left: 20px; }
.copy { text-align: center; font-size: 0.8rem; border-top: 1px solid #444; padding-top: 20px; }

@media (max-width: 900px) {
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .hero-content h1 { font-size: 2.5rem; }
    #searchForm { flex-direction: column; }
    .car-grid, .fleet-item, .review-grid, .contact-box { grid-template-columns: 1fr; flex-direction: column; }
    .btn-search { width: 100%; }
}