/* --- Variables --- */
:root {
    --color-blue: #2962ff;      /* Electric Blue */
    --color-blue-light: #e3f2fd;
    --color-blue-dark: #0039cb;
    --color-white: #ffffff;
    --color-grey: #f8f9fa;      /* Clean Background */
    --color-text: #2c3e50;
    --color-dark: #1a237e;
    
    --font-head: 'Exo 2', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --radius: 12px;             /* Rounded Modern UI */
    --shadow: 0 4px 20px rgba(41, 98, 255, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--color-grey);
    color: var(--color-text);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }
img { max-width: 100%; display: block; border-radius: var(--radius); }

/* --- Header --- */
.next-header {
    background-color: var(--color-white);
    padding: 15px 0;
    box-shadow: 0 2px 10px 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-head); font-size: 1.8rem; font-weight: 700; color: var(--color-dark); letter-spacing: 1px; }
.blue-box { background-color: var(--color-blue); color: var(--color-white); padding: 2px 8px; border-radius: 4px; margin-left: 5px; }
.blue-text { color: var(--color-blue); }

.tech-nav ul { display: flex; gap: 30px; align-items: center; }
.tech-nav a { font-weight: 600; font-size: 0.9rem; color: var(--color-text); }
.tech-nav a:hover, .tech-nav a.active { color: var(--color-blue); }

.btn-blue { background-color: var(--color-blue); color: var(--color-white) !important; padding: 10px 25px; border-radius: 50px; font-weight: 600; box-shadow: 0 4px 10px rgba(41, 98, 255, 0.3); }
.btn-blue:hover { background-color: var(--color-blue-dark); transform: translateY(-2px); }

.menu-btn { display: none; background: none; border: none; cursor: pointer; flex-direction: row; gap: 4px; }
.dot { width: 6px; height: 6px; background-color: var(--color-blue); border-radius: 50%; }

/* --- 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; color: var(--color-blue); background: none; border: none; cursor: pointer; }
.mobile-menu a { font-family: var(--font-head); font-size: 1.2rem; font-weight: 700; color: var(--color-dark); border-bottom: 1px solid #f0f0f0; padding-bottom: 10px; }

/* --- Hero --- */
.hero-tech { position: relative; height: 550px; display: flex; align-items: center; justify-content: flex-start; overflow: hidden; border-radius: 0 0 50px 50px; }
.hero-bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; z-index: -2;
}
.blue-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, rgba(26, 35, 126, 0.95) 0%, rgba(41, 98, 255, 0.6) 100%); z-index: -1; }

.hero-content { z-index: 1; max-width: 600px; padding: 40px; margin-left: 5%; color: var(--color-white); }
.status-badge { background: rgba(255,255,255,0.2); padding: 5px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: bold; margin-bottom: 20px; display: inline-block; backdrop-filter: blur(5px); }
.hero h1 { font-family: var(--font-head); font-size: 3.5rem; line-height: 1.1; margin-bottom: 20px; font-weight: 700; }
.hero p { font-size: 1.1rem; margin-bottom: 30px; opacity: 0.9; }

.hero-actions { display: flex; gap: 15px; }
.btn { padding: 12px 30px; border-radius: var(--radius); font-weight: 600; cursor: pointer; border: none; transition: 0.3s; }
.btn-white { background-color: var(--color-white); color: var(--color-blue); }
.btn-white:hover { background-color: var(--color-blue-light); }
.btn-outline { background: transparent; border: 2px solid var(--color-white); color: var(--color-white); }
.btn-outline:hover { background: var(--color-white); color: var(--color-blue); }

/* --- Dashboard Grid --- */
.section-padding { padding: 80px 0; }
.section-head { text-align: center; margin-bottom: 60px; }
.section-head h2 { font-family: var(--font-head); font-size: 2.2rem; color: var(--color-dark); margin-bottom: 10px; }
.blue-dash { width: 60px; height: 4px; background-color: var(--color-blue); margin: 0 auto; border-radius: 2px; }

.dashboard-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; }
.dash-card { background: var(--color-white); padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); transition: 0.3s; border: 1px solid #eee; }
.dash-card:hover { transform: translateY(-10px); border-color: var(--color-blue); }
.icon-wrap { font-size: 2.5rem; margin-bottom: 20px; background: var(--color-blue-light); width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.dash-card h3 { font-family: var(--font-head); font-size: 1.3rem; margin-bottom: 10px; color: var(--color-dark); }
.dash-card p { color: #666; margin-bottom: 20px; font-size: 0.95rem; }
.link-arrow { color: var(--color-blue); font-weight: bold; font-size: 0.9rem; }

/* --- About Split --- */
.page-title { text-align: center; margin-bottom: 60px; }
.page-title h1 { font-family: var(--font-head); font-size: 2.5rem; color: var(--color-dark); }

.tech-split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.text-content h2 { font-family: var(--font-head); font-size: 2rem; color: var(--color-blue); margin-bottom: 20px; }
.stats-row { display: flex; gap: 30px; margin-top: 30px; }
.stat strong { display: block; font-size: 2rem; color: var(--color-dark); font-family: var(--font-head); }
.image-content { position: relative; }
.overlay-card { position: absolute; bottom: 20px; right: 20px; background: var(--color-white); padding: 15px 25px; border-radius: var(--radius); font-weight: bold; color: var(--color-blue); box-shadow: var(--shadow); }

/* --- Reviews --- */
.reviews-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-item { background: var(--color-white); padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); }
.user-badge { background: var(--color-blue); color: var(--color-white); padding: 4px 10px; border-radius: 4px; font-size: 0.7rem; display: inline-block; margin-bottom: 15px; font-weight: bold; }
.review-item p { font-style: italic; color: #555; margin-bottom: 15px; }
.user-name { font-weight: bold; color: var(--color-dark); text-align: right; }

/* --- Contact & Forms --- */
.contact-card { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; background: var(--color-white); padding: 50px; border-radius: var(--radius); box-shadow: var(--shadow); }
.info-sec h3 { font-family: var(--font-head); color: var(--color-blue); margin-bottom: 20px; font-size: 1.8rem; }
.c-item { margin-bottom: 10px; font-weight: 500; }
.c-item span { font-weight: bold; color: var(--color-dark); }
.charge-station { background: #e3f2fd; color: var(--color-blue-dark); padding: 15px; border-radius: var(--radius); margin-top: 30px; font-weight: bold; }

.tech-form h3 { font-family: var(--font-head); margin-bottom: 20px; }
.input-wrap { margin-bottom: 20px; }
.input-wrap label { display: block; margin-bottom: 5px; font-size: 0.9rem; font-weight: 600; }
.input-wrap input, .input-wrap select { width: 100%; padding: 12px; border: 1px solid #dfe6e9; border-radius: 8px; font-family: var(--font-body); }
.input-wrap input:focus { border-color: var(--color-blue); outline: none; }
.btn-submit { width: 100%; background: var(--color-blue); color: #fff; padding: 15px; border: none; border-radius: 8px; font-weight: bold; cursor: pointer; transition: 0.3s; }
.btn-submit:hover { background: var(--color-blue-dark); }

/* --- Brands Bar --- */
.brands-bar { background-color: var(--color-dark); color: var(--color-white); padding: 15px 0; text-align: center; font-size: 0.8rem; letter-spacing: 1px; font-weight: bold; }

/* --- Legal --- */
.legal-doc { max-width: 800px; margin: 0 auto; background: var(--color-white); padding: 60px; border-radius: var(--radius); box-shadow: var(--shadow); }
.legal-doc h1 { font-family: var(--font-head); color: var(--color-dark); }
.doc-meta { color: #888; font-size: 0.9rem; margin-bottom: 20px; }
.blue-divider { height: 3px; width: 60px; background: var(--color-blue); margin: 20px 0; border-radius: 2px; }
.legal-doc h3 { color: var(--color-blue); margin-top: 30px; margin-bottom: 10px; font-family: var(--font-head); }

/* --- Footer --- */
.tech-footer { background-color: #f1f3f5; padding: 60px 0 20px; margin-top: auto; border-top: 1px solid #dee2e6; text-align: center; }
.f-brand h4 { font-family: var(--font-head); font-size: 1.8rem; margin-bottom: 10px; font-weight: 700; color: var(--color-dark); }
.f-nav a { margin: 0 15px; color: #666; font-weight: 500; font-size: 0.9rem; }
.copyright { margin-top: 30px; font-size: 0.8rem; color: #999; }

@media (max-width: 992px) {
    .tech-nav { display: none; }
    .menu-btn { display: flex; }
    .hero h1 { font-size: 2.5rem; }
    .tech-split, .contact-card { grid-template-columns: 1fr; }
}