:root {
    --primary-blue: #0056D2;
    --dark-blue: #003B91;
    --text-dark: #333333;
    --light-gray: #F8F9FA;
    --white: #ffffff;
    
    --font-main: 'Roboto', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--white);
    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 */
.rent-header { padding: 20px 0; border-bottom: 1px solid #eee; position: sticky; top: 0; background: var(--white); z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.8rem; font-weight: 700; color: var(--text-dark); }
.blue { color: var(--primary-blue); }

.rent-nav ul { display: flex; gap: 30px; list-style: none; align-items: center; }
.rent-nav a { font-weight: 500; font-size: 0.95rem; color: #555; }
.rent-nav a:hover, .rent-nav a.active { color: var(--primary-blue); }

.btn-rent { background: var(--primary-blue); color: white !important; padding: 10px 25px; border-radius: 5px; font-weight: bold; }
.btn-rent:hover { background: var(--dark-blue); }

/* Mobile Menu */
.mobile-toggle { display: none; font-size: 1.5rem; cursor: pointer; }
.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; box-shadow: -5px 0 20px rgba(0,0,0,0.1); }
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; background: none; border: none; font-size: 1.5rem; cursor: pointer; margin-bottom: 20px; }
.mobile-menu a { padding: 15px 0; border-bottom: 1px solid #eee; font-weight: 500; }

/* Hero */
.hero-rent { height: 600px; background-size: cover; background-position: center; position: relative; }
.hero-overlay { width: 100%; height: 100%; background: linear-gradient(to right, rgba(0,0,0,0.6), transparent); display: flex; align-items: center; }
.hero-text { color: white; margin-bottom: 30px; }
.hero-text h1 { font-size: 3.5rem; font-weight: 700; line-height: 1.1; margin-bottom: 20px; }
.hero-text p { font-size: 1.2rem; max-width: 500px; }

.booking-widget { background: white; padding: 30px; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); width: 100%; max-width: 400px; margin-left: auto; }
#bookingForm { display: flex; flex-direction: column; gap: 15px; }
.form-group label { font-weight: bold; font-size: 0.9rem; margin-bottom: 5px; display: block; color: #555; }
.form-group input, .form-group select { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 5px; }
.btn-search { background: var(--primary-blue); color: white; border: none; padding: 15px; border-radius: 5px; font-weight: bold; cursor: pointer; font-size: 1.1rem; }
.btn-search:hover { background: var(--dark-blue); }

/* Cars */
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { font-size: 2.5rem; color: var(--text-dark); }
.blue-line { width: 60px; height: 4px; background: var(--primary-blue); margin: 10px auto; }

.car-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.car-card { background: white; border: 1px solid #eee; border-radius: 10px; overflow: hidden; transition: 0.3s; box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
.car-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.car-card img { width: 100%; height: 200px; object-fit: cover; }
.car-info { padding: 20px; }
.tag { font-size: 0.7rem; font-weight: bold; padding: 3px 8px; border-radius: 3px; color: white; }
.tag.economy { background: #28a745; }
.tag.suv { background: #ffc107; color: black; }
.tag.luxury { background: #343a40; }
.car-info h3 { margin: 10px 0 5px; font-size: 1.3rem; }
.car-info p { color: #777; font-size: 0.9rem; margin-bottom: 15px; }
.price { font-size: 1.5rem; font-weight: bold; color: var(--primary-blue); margin-bottom: 15px; }
.price span { font-size: 0.9rem; color: #999; font-weight: 400; }
.btn-book { display: block; text-align: center; background: #eee; color: #333; padding: 10px; border-radius: 5px; font-weight: bold; }
.btn-book:hover { background: var(--primary-blue); color: white; }

/* About & Contact */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.text-content h1 { font-size: 2.5rem; color: var(--text-dark); margin-bottom: 20px; }
.features-list { list-style: none; margin-top: 20px; }
.features-list li { margin-bottom: 10px; font-weight: 500; }
.image-content img { width: 100%; border-radius: 10px; }

.contact-wrapper { display: flex; gap: 50px; }
.contact-info { flex: 1; background: var(--primary-blue); color: white; padding: 40px; border-radius: 10px; }
.info-items { margin-top: 30px; font-size: 1.1rem; }
.info-items p { margin-bottom: 15px; }
.rent-form { flex: 1.5; display: flex; flex-direction: column; gap: 20px; }
.form-row { display: flex; gap: 20px; }
.rent-form input, .rent-form textarea, .rent-form select { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 5px; }
.btn-submit { background: var(--primary-blue); color: white; padding: 15px; border: none; border-radius: 5px; font-weight: bold; cursor: pointer; }

/* Testimonials */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-card { background: var(--light-gray); padding: 30px; border-radius: 10px; }
.stars { color: gold; margin-bottom: 10px; }
.review-card p { font-style: italic; color: #555; margin-bottom: 15px; }

/* Legal */
.legal-doc { max-width: 800px; margin: 0 auto; background: var(--light-gray); padding: 50px; border-radius: 10px; }
.legal-doc h3 { color: var(--primary-blue); margin-top: 30px; }

/* Footer */
.rent-footer { background: #222; color: white; padding: 60px 0 20px; margin-top: 60px; }
.footer-content { display: flex; justify-content: space-between; flex-wrap: wrap; }
.brand-col h4 { font-size: 1.5rem; margin-bottom: 10px; color: var(--primary-blue); }
.link-col a { color: #ccc; margin-left: 20px; }
.link-col a:hover { color: white; }
.copyright { width: 100%; text-align: center; margin-top: 40px; padding-top: 20px; border-top: 1px solid #444; font-size: 0.8rem; color: #777; }

/* Cookie Banner */
.cookie-box { position: fixed; bottom: 20px; left: 20px; background: white; padding: 20px; box-shadow: 0 5px 20px rgba(0,0,0,0.2); border-radius: 8px; border-left: 5px solid var(--primary-blue); display: none; z-index: 9999; width: 300px; }
.cookie-box.active { display: block; animation: slideUp 0.5s; }
.cookie-box p { margin-bottom: 15px; font-size: 0.9rem; }
.btn-cookie { background: var(--primary-blue); color: white; border: none; padding: 5px 15px; border-radius: 3px; cursor: pointer; float: right; }

@keyframes slideUp { from { transform: translateY(100px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

@media (max-width: 900px) {
    .rent-nav { display: none; }
    .mobile-toggle { display: block; }
    .hero-overlay { justify-content: center; }
    .hero-text { text-align: center; }
    .booking-widget { margin: 0 auto; }
    .car-grid, .about-grid, .contact-wrapper, .reviews-grid { grid-template-columns: 1fr; flex-direction: column; }
    .footer-content { flex-direction: column; text-align: center; gap: 20px; }
}