/* --- Değişkenler --- */
:root {
    --color-orange: #ff6b00;    /* Enerjik Turuncu */
    --color-orange-dark: #e65100;
    --color-grey: #f4f4f4;      /* Açık Gri */
    --color-dark: #333333;      /* Asfalt */
    --color-white: #ffffff;
    
    --font-heading: 'Teko', sans-serif;
    --font-body: 'Roboto', sans-serif;
    
    --radius: 4px;
    --shadow: 0 4px 10px rgba(0,0,0,0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--color-grey);
    color: var(--color-dark);
    line-height: 1.5;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; border-radius: var(--radius) var(--radius) 0 0; }

/* --- Promo Bar --- */
.promo-bar { background-color: var(--color-dark); color: #fff; padding: 5px 0; text-align: center; font-size: 0.9rem; }
.promo-bar a { color: var(--color-orange); font-weight: bold; margin-left: 5px; }

/* --- Header --- */
.urban-header {
    background-color: var(--color-white);
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    position: sticky; top: 0; z-index: 1000;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 600; color: var(--color-dark); letter-spacing: 1px; line-height: 1; }
.orange-dot { color: var(--color-orange); }

.rental-nav ul { display: flex; gap: 25px; align-items: center; }
.rental-nav a { font-weight: 500; text-transform: uppercase; font-size: 0.9rem; color: var(--color-dark); }
.rental-nav a:hover, .rental-nav a.active { color: var(--color-orange); }

.btn-login { border: 2px solid var(--color-dark); padding: 5px 15px; border-radius: var(--radius); font-weight: bold; }
.btn-login:hover { background-color: var(--color-dark); color: #fff; }

.menu-icon { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; }
.menu-icon span { width: 25px; height: 3px; background-color: var(--color-dark); }

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 250px; height: 100%;
    background-color: var(--color-white); z-index: 2000;
    display: flex; flex-direction: column; padding: 40px; gap: 20px;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1); transition: 0.3s ease;
}
.mobile-menu.active { right: 0; }
.close-menu { align-self: flex-end; font-size: 1.5rem; background: none; border: none; cursor: pointer; }
.mobile-menu a { font-family: var(--font-heading); font-size: 1.5rem; border-bottom: 1px solid #eee; padding-bottom: 5px; }

/* --- Hero Search --- */
.search-hero { position: relative; height: 500px; display: flex; align-items: center; justify-content: center; }
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; z-index: -2;
}
.overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: -1; }

.search-container { z-index: 1; width: 100%; text-align: center; color: #fff; }
.search-container h1 { font-family: var(--font-heading); font-size: 4rem; line-height: 1; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); }
.search-container p { font-size: 1.2rem; margin-bottom: 30px; font-weight: 300; }

.search-engine {
    background-color: var(--color-white);
    padding: 20px;
    border-radius: var(--radius);
    display: flex;
    gap: 15px;
    align-items: flex-end;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    text-align: left;
    color: var(--color-dark);
}

.input-group { flex: 1; }
.input-group label { display: block; font-size: 0.8rem; font-weight: bold; margin-bottom: 5px; color: #666; text-transform: uppercase; }
.input-group select, .input-group input { width: 100%; padding: 10px; border: 1px solid #ccc; border-radius: var(--radius); font-family: var(--font-body); }

.btn-search { background-color: var(--color-orange); color: #fff; border: none; padding: 12px 30px; border-radius: var(--radius); font-weight: bold; cursor: pointer; font-family: var(--font-heading); font-size: 1.2rem; height: 46px; }
.btn-search:hover { background-color: var(--color-orange-dark); }

/* --- Car Grid --- */
.section-padding { padding: 60px 0; }
.section-title { margin-bottom: 40px; }
.section-title h2 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 5px; }
.orange-dash { width: 50px; height: 4px; background-color: var(--color-orange); }

.car-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.car-card { background: var(--color-white); border-radius: var(--radius); box-shadow: var(--shadow); transition: 0.3s; overflow: hidden; }
.car-card:hover { transform: translateY(-5px); }
.car-img { position: relative; height: 200px; overflow: hidden; }
.car-img img { width: 100%; height: 100%; object-fit: cover; }
.tag { position: absolute; top: 10px; left: 10px; background: var(--color-orange); color: #fff; padding: 3px 10px; font-size: 0.8rem; font-weight: bold; border-radius: 2px; }

.car-info { padding: 20px; }
.car-info h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 10px; }
.specs { display: flex; gap: 15px; font-size: 0.9rem; color: #666; margin-bottom: 20px; }
.price-row { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid #eee; padding-top: 15px; }
.price { font-family: var(--font-heading); font-size: 1.8rem; color: var(--color-dark); font-weight: bold; }
.price small { font-size: 1rem; color: #999; font-weight: normal; }
.btn-rent { background-color: var(--color-dark); color: #fff; padding: 8px 20px; border-radius: var(--radius); font-weight: bold; font-family: var(--font-heading); font-size: 1.1rem; }
.btn-rent:hover { background-color: var(--color-orange); }

/* --- Features --- */
.features-banner { background-color: #fff; padding: 50px 0; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }
.features-grid { display: flex; justify-content: space-around; text-align: center; flex-wrap: wrap; gap: 30px; }
.f-icon { font-size: 3rem; margin-bottom: 10px; }
.feature h4 { font-family: var(--font-heading); font-size: 1.5rem; margin-bottom: 5px; }
.feature p { color: #666; font-size: 0.9rem; }

/* --- Split & Contact --- */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.text-block h2 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 20px; }
.orange-list { list-style: square; padding-left: 20px; color: var(--color-orange); margin-bottom: 20px; }
.orange-list li span { color: var(--color-dark); }
.image-block { position: relative; }
.badge-float { position: absolute; bottom: 20px; right: 20px; background: var(--color-white); padding: 15px; border-radius: var(--radius); text-align: center; box-shadow: var(--shadow); }
.badge-float strong { display: block; font-family: var(--font-heading); font-size: 2rem; color: var(--color-orange); line-height: 1; }
.mt-20 { display: inline-block; margin-top: 20px; }

.contact-wrapper { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; }
.branch-list h2 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 20px; }
.branch { background: #fff; padding: 20px; margin-bottom: 15px; border-radius: var(--radius); border-left: 4px solid var(--color-orange); }
.branch h3 { margin-bottom: 5px; font-size: 1.1rem; }
.branch a { color: var(--color-orange); font-weight: bold; }
.help-box { background: var(--color-dark); color: #fff; padding: 20px; border-radius: var(--radius); text-align: center; margin-top: 20px; }

.urban-form { background: #fff; padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); }
.urban-form h3 { font-family: var(--font-heading); font-size: 1.8rem; margin-bottom: 20px; }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-weight: 500; margin-bottom: 5px; font-size: 0.9rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: var(--radius); font-family: var(--font-body); }
.full-width { width: 100%; }

/* --- Reviews --- */
.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.review-card { background: #fff; padding: 25px; border-radius: var(--radius); border: 1px solid #eee; }
.stars { color: #ffb400; margin-bottom: 10px; }
.review-card p { font-style: italic; color: #555; margin-bottom: 15px; font-size: 0.95rem; }
.user strong { display: block; font-family: var(--font-heading); font-size: 1.1rem; }
.user span { font-size: 0.8rem; color: #888; }

/* --- Legal --- */
.terms-doc { max-width: 800px; margin: 0 auto; background: #fff; padding: 50px; border-radius: var(--radius); }
.terms-doc h1 { font-family: var(--font-heading); font-size: 2.5rem; }
.orange-line { width: 100%; height: 2px; background: var(--color-orange); margin: 20px 0; }
.terms-doc h3 { font-family: var(--font-heading); font-size: 1.5rem; margin-top: 30px; margin-bottom: 10px; color: var(--color-dark); }

/* --- Footer --- */
.urban-footer { background-color: var(--color-dark); color: #fff; padding: 50px 0; margin-top: auto; text-align: center; }
.f-logo { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 15px; }
.f-nav a { color: #ccc; margin: 0 10px; }
.f-nav a:hover { color: var(--color-orange); }
.copyright { margin-top: 20px; font-size: 0.8rem; opacity: 0.6; }

@media (max-width: 992px) {
    .rental-nav { display: none; }
    .menu-icon { display: flex; }
    .search-container h1 { font-size: 3rem; }
    .search-engine { flex-direction: column; align-items: stretch; }
    .split-layout, .contact-wrapper, .features-grid { grid-template-columns: 1fr; }
}