:root {
    --neon-blue: #00E5FF;
    --deep-black: #050505;
    --panel-bg: #121212;
    --text-grey: #B0B0B0;
    --white: #ffffff;
    
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--deep-black);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 500;
    line-height: 1.6;
}

.container { width: 90%; max-width: 1200px; margin: 0 auto; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* Header */
.boost-header { background: rgba(5, 5, 5, 0.95); padding: 20px 0; position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid var(--neon-blue); backdrop-filter: blur(10px); }
.header-flex { display: flex; justify-content: space-between; align-items: center; }

.logo { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--white); letter-spacing: 2px; }
.blue { color: var(--neon-blue); }
.turbo-icon { color: var(--neon-blue); margin-right: 5px; }

.nav-links a { margin-left: 25px; font-size: 1.1rem; color: var(--text-grey); text-transform: uppercase; font-weight: 600; }
.nav-links a:hover, .nav-links a.active { color: var(--neon-blue); text-shadow: 0 0 10px rgba(0, 229, 255, 0.5); }

.btn-neon { border: 1px solid var(--neon-blue); padding: 8px 25px; color: var(--neon-blue) !important; font-family: var(--font-display); letter-spacing: 1px; }
.btn-neon:hover { background: var(--neon-blue); color: var(--deep-black) !important; box-shadow: 0 0 20px rgba(0, 229, 255, 0.6); }

/* Mobile Menu */
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.mobile-toggle span { width: 30px; height: 3px; background: var(--neon-blue); }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; height: 100%; background: var(--deep-black); z-index: 2000; display: flex; flex-direction: column; justify-content: center; align-items: center; transition: 0.4s; border-left: 2px solid var(--neon-blue); }
.mobile-menu.open { right: 0; }
.close-btn { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 2rem; color: var(--white); cursor: pointer; }
.mobile-menu a { font-family: var(--font-display); font-size: 2rem; margin: 15px 0; color: var(--white); }

/* Hero */
.hero-section { height: 85vh; background-size: cover; background-position: center; position: relative; }
.hero-overlay { width: 100%; height: 100%; background: linear-gradient(45deg, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.3) 100%); display: flex; align-items: center; }
.hero-content { margin-left: 10%; max-width: 600px; }
.tagline { color: var(--neon-blue); font-family: var(--font-display); letter-spacing: 3px; font-size: 0.9rem; display: block; margin-bottom: 10px; }
.hero-content h1 { font-family: var(--font-display); font-size: 4.5rem; line-height: 1; margin-bottom: 20px; text-transform: uppercase; font-style: italic; }
.hero-content p { font-size: 1.3rem; color: #ccc; margin-bottom: 40px; }

.btn-group { display: flex; gap: 15px; }
.btn-primary { background: var(--neon-blue); color: var(--deep-black); padding: 15px 35px; font-family: var(--font-display); font-weight: 700; clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%); transition: 0.3s; }
.btn-primary:hover { background: var(--white); transform: translateX(5px); }
.btn-secondary { border: 2px solid var(--white); color: var(--white); padding: 13px 35px; font-family: var(--font-display); font-weight: 700; clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%); transition: 0.3s; }
.btn-secondary:hover { background: var(--white); color: var(--deep-black); }

/* Services */
.services-section { padding: 100px 0; background: var(--panel-bg); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-family: var(--font-display); font-size: 3rem; margin-bottom: 10px; }
.neon-line { width: 100px; height: 3px; background: var(--neon-blue); margin: 0 auto; box-shadow: 0 0 10px var(--neon-blue); }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.service-card { background: var(--deep-black); padding: 40px 20px; text-align: center; border: 1px solid #333; transition: 0.3s; position: relative; overflow: hidden; }
.service-card:hover { transform: translateY(-10px); border-color: var(--neon-blue); box-shadow: 0 0 30px rgba(0, 229, 255, 0.1); }
.service-card.highlight { border: 1px solid var(--neon-blue); }
.service-card .icon { font-size: 3rem; margin-bottom: 20px; }
.service-card h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 15px; color: var(--white); }
.service-card p { color: var(--text-grey); font-size: 1rem; }

/* Contact Form & Pages */
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; padding: 50px 0; }
.contact-info h2 { font-family: var(--font-display); font-size: 2.5rem; color: var(--neon-blue); margin-bottom: 20px; }
.contact-info p { font-size: 1.2rem; margin-bottom: 30px; }
.info-item { margin-bottom: 15px; font-size: 1.1rem; }

.boost-form input, .boost-form select, .boost-form textarea { width: 100%; padding: 15px; background: var(--panel-bg); border: 1px solid #333; color: var(--white); font-family: var(--font-body); margin-bottom: 20px; outline: none; transition: 0.3s; font-size: 1rem; }
.boost-form input:focus, .boost-form textarea:focus { border-color: var(--neon-blue); box-shadow: 0 0 10px rgba(0, 229, 255, 0.2); }
.btn-submit { width: 100%; background: var(--neon-blue); color: var(--deep-black); border: none; padding: 15px; font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; cursor: pointer; transition: 0.3s; }
.btn-submit:hover { background: var(--white); box-shadow: 0 0 20px var(--neon-blue); }

/* Reviews */
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.review-card { background: var(--panel-bg); padding: 30px; border-left: 3px solid var(--neon-blue); }
.review-card p { font-style: italic; color: #ccc; margin-bottom: 20px; font-size: 1.1rem; }
.review-card h4 { color: var(--neon-blue); font-family: var(--font-display); text-align: right; }

/* Legal */
.legal-content { max-width: 800px; margin: 0 auto; background: var(--panel-bg); padding: 50px; border: 1px solid #333; }
.legal-content h1 { font-family: var(--font-display); color: var(--neon-blue); }
.legal-content h3 { color: var(--white); margin-top: 30px; font-family: var(--font-display); }

/* Footer */
.main-footer { background: #000; padding: 50px 0 20px; margin-top: 80px; border-top: 2px solid var(--neon-blue); }
.footer-flex { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #333; padding-bottom: 30px; margin-bottom: 20px; }
.f-info h4 { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); margin-bottom: 5px; }
.f-links a { color: var(--text-grey); margin-left: 20px; transition: 0.3s; }
.f-links a:hover { color: var(--neon-blue); }
.copyright { text-align: center; color: #555; font-size: 0.9rem; }

/* Cookie */
.cookie-box { position: fixed; bottom: 20px; left: 20px; background: rgba(5, 5, 5, 0.95); border: 1px solid var(--neon-blue); padding: 20px; z-index: 9999; display: none; align-items: center; gap: 20px; box-shadow: 0 0 20px rgba(0, 229, 255, 0.3); }
.cookie-box.active { display: flex; animation: slideUp 0.5s; }
.cookie-box button { background: var(--neon-blue); color: var(--deep-black); border: none; padding: 10px 20px; font-family: var(--font-display); font-weight: 700; cursor: pointer; }

@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }

@media (max-width: 900px) {
    .nav-links { display: none; }
    .mobile-toggle { display: flex; }
    .hero-content h1 { font-size: 3rem; }
    .service-grid, .contact-container, .review-grid { grid-template-columns: 1fr; }
    .footer-flex { flex-direction: column; text-align: center; gap: 20px; }
}