/* Palette: Navy Blue (#1a2a6c), Gold (#b8860b), Off-White (#f8f9fa) */
:root {
    --navy: #1a2a6c;
    --gold: #b8860b;
    --white: #ffffff;
    --grey: #f8f9fa;
    --text: #333333;
    --font-sans: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--grey);
    color: var(--text);
    font-family: var(--font-sans);
    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; }
img { max-width: 100%; height: auto; display: block; }

/* Header */
.origin-header { background: var(--white); padding: 20px 0; border-bottom: 3px solid var(--navy); position: sticky; top: 0; z-index: 1000; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-serif); font-size: 1.8rem; color: var(--navy); font-weight: 700; letter-spacing: 2px; }
.gold { color: var(--gold); }

.main-nav a { margin-left: 25px; font-weight: 600; text-transform: uppercase; font-size: 0.85rem; }
.main-nav a:hover, .main-nav a.active { color: var(--gold); }

.menu-btn { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--navy); }

/* Mobile Menu */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 280px; height: 100%; background: var(--navy); z-index: 2000; padding: 40px; transition: 0.4s; }
.mobile-menu.active { right: 0; }
.close-menu { background: none; border: none; color: white; font-size: 2rem; cursor: pointer; margin-bottom: 30px; }
.mobile-menu a { display: block; color: white; font-size: 1.2rem; margin-bottom: 20px; font-weight: 600; }

@media (max-width: 900px) {
    .main-nav, .header-contact { display: none; }
    .menu-btn { display: block; }
}

/* Hero */
.hero-rent { height: 80vh; display: flex; align-items: center; background-size: cover; background-position: center; color: var(--white); }
.hero-content h1 { font-family: var(--font-serif); font-size: 4rem; line-height: 1.1; margin-bottom: 20px; }
.hero-content em { font-weight: 400; color: var(--gold); }
.hero-content p { font-size: 1.2rem; margin-bottom: 40px; max-width: 500px; }

.search-widget { background: var(--white); padding: 30px; display: flex; gap: 20px; border-radius: 8px; color: var(--text); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
.input-group { flex: 1; }
.input-group label { display: block; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; color: #999; margin-bottom: 5px; }
.input-group select, .input-group input { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 4px; font-family: var(--font-sans); }

.btn-search { background: var(--navy); color: white; border: none; padding: 0 40px; border-radius: 4px; font-weight: 700; cursor: pointer; transition: 0.3s; }
.btn-search:hover { background: var(--gold); }

/* Fleet Grid */
.section-title { margin-bottom: 50px; }
.section-title h2 { font-family: var(--font-serif); font-size: 2.5rem; color: var(--navy); }
.gold-line { width: 60px; height: 4px; background: var(--gold); margin-top: 15px; }
.gold-line.center { margin: 15px auto; }

.fleet-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.car-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.car-card img { height: 200px; width: 100%; object-fit: cover; }
.car-body { padding: 25px; }
.car-body h3 { font-size: 1.3rem; margin-bottom: 5px; color: var(--navy); }
.car-body p { font-size: 0.9rem; color: #777; margin-bottom: 15px; }
.price { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 20px; }
.price span { font-size: 0.9rem; font-weight: 400; color: #999; }
.btn-book { display: block; background: var(--grey); border: 1px solid var(--navy); text-align: center; padding: 10px; font-weight: 700; color: var(--navy); }
.btn-book:hover { background: var(--navy); color: white; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h1 { font-family: var(--font-serif); font-size: 3rem; color: var(--navy); margin-bottom: 20px; }
.lead { font-size: 1.25rem; font-weight: 600; color: var(--gold); margin-bottom: 20px; }
.values { margin-top: 40px; }
.val-item { margin-bottom: 15px; border-left: 3px solid var(--gold); padding-left: 20px; }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-card-origin { background: var(--white); padding: 40px; border: 1px solid #eee; text-align: center; }
.stars { color: var(--gold); margin-bottom: 20px; font-size: 1.2rem; }
.user { margin-top: 20px; font-weight: 700; font-size: 0.8rem; color: #999; }

/* Contact */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; background: var(--white); padding: 60px; border-radius: 8px; }
.contact-info h2 { font-family: var(--font-serif); font-size: 2.5rem; color: var(--navy); margin-bottom: 20px; }
.c-box { margin-bottom: 25px; }

.origin-form input, .origin-form textarea { width: 100%; padding: 15px; border: 1px solid #ddd; background: var(--grey); margin-bottom: 20px; font-family: var(--font-sans); }
.origin-form button { background: var(--navy); color: white; border: none; padding: 15px 50px; font-weight: 700; cursor: pointer; }
.origin-form button:hover { background: var(--gold); }

/* Legal */
.legal-text { max-width: 800px; margin: 0 auto; background: var(--white); padding: 60px; border-radius: 8px; }
.legal-text h3 { margin: 30px 0 15px; color: var(--navy); }

/* Footer */
.origin-footer { background: var(--navy); color: #cbd5e0; padding: 60px 0 20px; margin-top: 80px; }
.footer-grid { display: flex; justify-content: space-between; align-items: flex-start; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 30px; margin-bottom: 20px; }
.f-info h4 { color: white; font-family: var(--font-serif); font-size: 1.5rem; margin-bottom: 10px; }
.f-links a { display: block; margin-bottom: 10px; font-size: 0.9rem; }
.f-links a:hover { color: var(--gold); }
.copyright { text-align: center; font-size: 0.8rem; color: #718096; }

@media (max-width: 900px) {
    .fleet-grid, .about-grid, .reviews-grid, .contact-wrap, .search-widget { grid-template-columns: 1fr; flex-direction: column; }
    .hero-content h1 { font-size: 2.5rem; }
    .footer-grid { flex-direction: column; gap: 40px; }
}