:root {
    --electric-blue: #00D4FF;
    --deep-blue: #0077B6;
    --tech-grey: #F0F2F5;
    --white: #ffffff;
    --dark-text: #222;
    
    --font-head: 'Exo 2', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--white);
    color: var(--dark-text);
    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 */
.grid-header { padding: 15px 0; border-bottom: 1px solid #eee; position: sticky; top: 0; background: rgba(255,255,255,0.95); backdrop-filter: blur(10px); z-index: 1000; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--dark-text); display: flex; align-items: center; gap: 5px; letter-spacing: -1px; }
.blue { color: var(--electric-blue); }
.bolt { color: var(--electric-blue); }

.tech-nav ul { display: flex; gap: 30px; list-style: none; align-items: center; }
.tech-nav a { font-weight: 600; font-size: 0.95rem; color: #555; }
.tech-nav a:hover, .tech-nav a.active { color: var(--electric-blue); }

.btn-app { background: var(--electric-blue); color: var(--white) !important; padding: 8px 20px; border-radius: 50px; font-weight: bold; box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3); }
.btn-app:hover { background: var(--deep-blue); transform: translateY(-2px); }

/* Mobile Menu */
.mobile-toggle { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.mobile-toggle span { width: 25px; height: 3px; background: var(--dark-text); border-radius: 2px; }
.mobile-menu { 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-menu.active { right: 0; }
.close-menu { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 2rem; cursor: pointer; }
.mobile-menu a { font-family: var(--font-head); font-size: 2rem; color: var(--dark-text); margin: 15px 0; font-weight: bold; }

/* Hero */
.hero-electric { height: 80vh; background-size: cover; background-position: center; position: relative; border-radius: 0 0 50px 50px; overflow: hidden; display: flex; align-items: center; justify-content: center; text-align: center; }
.hero-overlay { width: 100%; height: 100%; background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7)); display: flex; align-items: center; justify-content: center; }
.hero-content { color: var(--white); max-width: 700px; padding: 20px; }
.pill-tag { background: var(--electric-blue); color: var(--white); padding: 5px 15px; border-radius: 20px; font-weight: bold; font-size: 0.8rem; text-transform: uppercase; }
.hero-content h1 { font-family: var(--font-head); font-size: 4rem; line-height: 1; margin: 20px 0; }
.hero-content p { font-size: 1.2rem; margin-bottom: 40px; }

.finder-widget { background: var(--white); padding: 10px; border-radius: 50px; display: inline-block; box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
#findCarForm { display: flex; gap: 10px; }
.input-wrap input { border: none; padding: 10px 20px; outline: none; font-family: var(--font-body); width: 250px; font-size: 1rem; }
.btn-glow { background: var(--electric-blue); color: var(--white); border: none; padding: 12px 30px; border-radius: 40px; font-weight: bold; cursor: pointer; transition: 0.3s; }
.btn-glow:hover { box-shadow: 0 0 20px var(--electric-blue); }

/* Fleet Grid */
.section-title { text-align: center; margin-bottom: 60px; }
.section-title h2 { font-family: var(--font-head); font-size: 2.5rem; color: var(--dark-text); }
.blue-dot { width: 10px; height: 10px; background: var(--electric-blue); border-radius: 50%; margin: 10px auto; }

.car-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.car-card { background: var(--tech-grey); border-radius: 20px; overflow: hidden; position: relative; transition: 0.3s; }
.car-card:hover { transform: translateY(-10px); }
.battery-status { position: absolute; top: 15px; right: 15px; background: var(--white); padding: 5px 10px; border-radius: 10px; font-size: 0.8rem; font-weight: bold; color: #28a745; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.car-card img { width: 100%; height: 200px; object-fit: cover; }
.card-info { padding: 25px; text-align: center; }
.card-info h3 { font-family: var(--font-head); margin-bottom: 5px; }
.link-blue { color: var(--deep-blue); font-weight: bold; font-size: 0.9rem; }

/* Steps */
.steps-section { background: var(--tech-grey); padding: 60px 0; margin-top: 50px; }
.steps-flex { display: flex; justify-content: space-around; align-items: center; text-align: center; }
.step-icon { font-size: 3rem; margin-bottom: 10px; }
.step-line { height: 2px; flex: 1; background: #ddd; margin: 0 20px; }
.step h4 { font-family: var(--font-head); margin-bottom: 5px; }

/* About & Contact */
.about-flex { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.text-content h1 { font-family: var(--font-head); font-size: 3rem; line-height: 1; }
.blue-line { width: 50px; height: 4px; background: var(--electric-blue); margin: 20px 0; border-radius: 2px; }
.stats-box { display: flex; gap: 40px; margin-top: 30px; }
.stat strong { display: block; font-family: var(--font-head); font-size: 2.5rem; color: var(--deep-blue); }
.visual-content img { width: 100%; border-radius: 20px; box-shadow: 20px 20px 0 var(--electric-blue); }

.support-center { max-width: 600px; margin: 0 auto; }
.support-info { text-align: center; margin-bottom: 40px; }
.hotline { background: var(--tech-grey); padding: 20px; border-radius: 10px; margin-top: 20px; font-weight: bold; }
.tech-form { background: var(--white); padding: 30px; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); border: 1px solid #eee; }
.tech-form .input-grp { margin-bottom: 20px; }
.tech-form label { display: block; margin-bottom: 5px; font-weight: bold; font-size: 0.9rem; }
.tech-form input, .tech-form select, .tech-form textarea { width: 100%; padding: 12px; border: 1px solid #ddd; border-radius: 8px; font-family: var(--font-body); }
.btn-submit { width: 100%; background: var(--dark-text); color: var(--white); border: none; padding: 15px; border-radius: 8px; font-weight: bold; cursor: pointer; }

/* Reviews & Legal */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-bubble { background: var(--tech-grey); padding: 30px; border-radius: 20px 20px 20px 0; position: relative; }
.review-bubble.blue-bg { background: var(--deep-blue); color: var(--white); }
.user-img { width: 40px; height: 40px; background: var(--dark-text); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; margin-bottom: 15px; }
.user-img.white { background: var(--white); color: var(--deep-blue); }
.review-bubble span { display: block; margin-top: 15px; font-size: 0.9rem; font-weight: bold; opacity: 0.8; }

.legal-box { max-width: 800px; margin: 0 auto; }
.legal-box h1 { font-family: var(--font-head); }
.legal-box article { margin-bottom: 30px; }
.legal-box h3 { color: var(--deep-blue); margin-bottom: 10px; }

/* Footer */
.grid-footer { background: var(--dark-text); color: #ccc; padding: 60px 0 20px; margin-top: 80px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #444; padding-bottom: 30px; margin-bottom: 20px; }
.f-left h4 { font-family: var(--font-head); color: var(--electric-blue); margin-bottom: 5px; }
.f-right a { color: #ccc; margin-left: 20px; font-weight: bold; }
.f-right a:hover { color: var(--electric-blue); }
.copyright { text-align: center; font-size: 0.8rem; }

/* Cookie Banner */
.cookie-float { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); background: var(--white); padding: 15px 30px; border-radius: 50px; box-shadow: 0 5px 20px rgba(0,0,0,0.2); display: none; align-items: center; gap: 20px; z-index: 9999; width: max-content; }
.cookie-float.active { display: flex; animation: popUp 0.5s; }
.cookie-float button { background: var(--electric-blue); color: var(--white); border: none; padding: 8px 20px; border-radius: 20px; font-weight: bold; cursor: pointer; }

@keyframes popUp { from { transform: translate(-50%, 100px); } to { transform: translate(-50%, 0); } }

@media (max-width: 900px) {
    .tech-nav { display: none; }
    .mobile-toggle { display: flex; }
    .hero-content h1 { font-size: 3rem; }
    .finder-widget #findCarForm { flex-direction: column; }
    .input-wrap input { width: 100%; }
    .car-grid, .steps-flex, .about-flex, .review-grid { grid-template-columns: 1fr; }
    .steps-flex { flex-direction: column; gap: 30px; }
    .step-line { width: 2px; height: 30px; margin: 0; }
    .footer-content { flex-direction: column; text-align: center; gap: 20px; }
}