﻿@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;700&family=Inter:wght@300;400;600&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css");

:root {
    --bg-dark: #050A15;
    --bg-card: #0A1325;
    --accent: #00E6B8;
    --accent-hover: #00B38F;
    --text-main: #F3F4F6;
    --text-muted: #9CA3AF;
    --border: rgba(255, 255, 255, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; background-color: var(--bg-dark); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: #fff; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; border-radius: 12px; }

/* Unique Graphic: Ambient Glow Orbs */
.ambient-orb { position: absolute; border-radius: 50%; filter: blur(120px); z-index: -1; opacity: 0.4; pointer-events: none; }
.orb-1 { top: -100px; left: -100px; width: 400px; height: 400px; background: var(--accent); }
.orb-2 { bottom: 20%; right: -150px; width: 500px; height: 500px; background: #3B82F6; }

/* Header */
header { position: fixed; top: 0; width: 100%; padding: 20px 5%; display: flex; justify-content: space-between; align-items: center; background: rgba(5, 10, 21, 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); z-index: 1000; }
.logo { display: flex; align-items: center; gap: 12px; font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; }
.logo img { width: 32px; height: 32px; border-radius: 6px; }
.nav-links { display: none; }
.btn-primary { background: var(--accent); color: var(--bg-dark); padding: 12px 24px; border-radius: 8px; font-weight: 600; transition: 0.3s; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0, 230, 184, 0.3); }

/* Hero Section */
.hero { position: relative; padding: 150px 5% 80px; min-height: 90vh; display: flex; flex-direction: column; justify-content: center; z-index: 1; }
.hero-content { max-width: 800px; }
.hero h1 { font-size: 3rem; line-height: 1.1; margin-bottom: 24px; letter-spacing: -0.03em; }
.hero h1 span { color: var(--accent); }
.hero p { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 40px; max-width: 600px; }
.hero-image { margin-top: 40px; border: 1px solid var(--border); box-shadow: 0 20px 40px rgba(0,0,0,0.5); }

/* Stats (Random Section) */
.stats { padding: 60px 5%; background: var(--bg-card); display: grid; grid-template-columns: 1fr; gap: 30px; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat-box { padding: 30px; background: rgba(255,255,255,0.02); border-radius: 16px; border: 1px solid var(--border); }
.stat-box h3 { font-size: 2.5rem; color: var(--accent); margin-bottom: 10px; }
.stat-box p { font-size: 1.1rem; color: var(--text-muted); }

/* About & Features */
.section-padding { padding: 100px 5%; position: relative; }
.section-title { font-size: 2.2rem; margin-bottom: 20px; }
.about-text { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 40px; max-width: 800px; }
.features-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.feature-list { list-style: none; }
.feature-list li { margin-bottom: 20px; display: flex; align-items: flex-start; gap: 15px; font-size: 1.1rem; color: var(--text-muted); }
.feature-list i { color: var(--accent); font-size: 1.5rem; margin-top: 4px; }

/* Form Section */
.form-wrapper { background: var(--bg-card); padding: 40px 20px; border-radius: 20px; border: 1px solid var(--border); box-shadow: 0 20px 50px rgba(0,0,0,0.4); max-width: 600px; margin: 0 auto; position: relative; overflow: hidden; }
.form-wrapper h2 { text-align: center; margin-bottom: 30px; font-size: 2rem; }
.form-group { margin-bottom: 20px; }
.form-group input { width: 100%; padding: 16px; background: rgba(0,0,0,0.2); border: 1px solid var(--border); border-radius: 8px; color: #fff; font-size: 1rem; font-family: 'Inter', sans-serif; transition: 0.3s; }
.form-group input:focus { outline: none; border-color: var(--accent); }
.checkbox-group { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 25px; }
.checkbox-group input { margin-top: 5px; width: 18px; height: 18px; accent-color: var(--accent); }
.checkbox-group label { font-size: 0.85rem; color: var(--text-muted); }
.submit-btn { width: 100%; background: var(--accent); color: var(--bg-dark); border: none; padding: 16px; font-size: 1.1rem; font-weight: 700; border-radius: 8px; cursor: pointer; transition: 0.3s; display: flex; justify-content: center; align-items: center; gap: 10px; }
.submit-btn:hover { background: var(--accent-hover); }
.submit-btn:disabled { opacity: 0.7; cursor: not-allowed; }
.success-msg { display: none; text-align: center; padding: 30px 10px; }
.success-msg i { font-size: 4rem; color: var(--accent); margin-bottom: 20px; }
.success-msg h3 { font-size: 1.8rem; margin-bottom: 15px; }

/* FAQ */
.faq-container { max-width: 800px; margin: 0 auto; }
details { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; margin-bottom: 15px; overflow: hidden; }
summary { padding: 20px; font-size: 1.1rem; font-weight: 600; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '\f078'; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--accent); transition: 0.3s; }
details[open] summary::after { transform: rotate(180deg); }
.faq-content { padding: 0 20px 20px; color: var(--text-muted); }

/* Footer */
footer { background: #02050A; padding: 60px 5% 30px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
.footer-col h4 { font-size: 1.2rem; margin-bottom: 20px; color: #fff; }
.footer-col p, .footer-col a { color: var(--text-muted); margin-bottom: 10px; display: block; text-decoration: none; transition: 0.3s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { text-align: center; border-top: 1px solid var(--border); padding-top: 20px; color: var(--text-muted); font-size: 0.9rem; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: -150px; left: 0; width: 100%; background: var(--bg-card); padding: 20px 5%; display: flex; flex-direction: column; gap: 15px; border-top: 1px solid var(--border); z-index: 9999; transition: bottom 0.5s ease; box-shadow: 0 -10px 40px rgba(0,0,0,0.8); }
.cookie-banner.show { bottom: 0; }
.cookie-text { font-size: 0.9rem; color: var(--text-muted); }
.cookie-btns { display: flex; gap: 10px; }
.btn-outline { background: transparent; border: 1px solid var(--text-muted); color: #fff; padding: 10px 20px; border-radius: 6px; cursor: pointer; }
.btn-solid { background: var(--accent); border: 1px solid var(--accent); color: var(--bg-dark); padding: 10px 20px; border-radius: 6px; cursor: pointer; font-weight: 600; }

/* Legal Pages Styling */
.legal-main { padding: 120px 5% 80px; min-height: 80vh; }
.legal-card { background: var(--bg-card); max-width: 900px; margin: 0 auto; padding: 40px 30px; border-radius: 16px; border: 1px solid var(--border); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.legal-card h1 { font-size: 2.2rem; margin-bottom: 30px; border-bottom: 1px solid var(--border); padding-bottom: 15px; color: var(--accent); }
.legal-card h2 { font-size: 1.4rem; margin: 30px 0 15px; }
.legal-card p, .legal-card li { margin-bottom: 15px; color: var(--text-muted); font-size: 1rem; }
.legal-card ul { padding-left: 20px; }
.map-iframe { width: 100%; height: 300px; border: 0; border-radius: 12px; margin-top: 20px; }

/* Media Queries (Desktop) */
@media(min-width: 768px) {
    .nav-links { display: flex; gap: 30px; }
    .nav-links a { font-weight: 600; transition: 0.3s; }
    .nav-links a:hover { color: var(--accent); }
    
    .hero { padding: 180px 5% 100px; flex-direction: row; align-items: center; justify-content: space-between; gap: 50px; }
    .hero-content { flex: 1; }
    .hero h1 { font-size: 4.5rem; }
    .hero-image { flex: 1; margin-top: 0; }
    
    .stats { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .features-grid.reverse { direction: rtl; }
    .features-grid.reverse > * { direction: ltr; }
    
    .form-wrapper { padding: 50px; }
    .form-row { display: flex; gap: 20px; }
    .form-row .form-group { flex: 1; }
    
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
    .cookie-banner { flex-direction: row; justify-content: space-between; align-items: center; }
    .cookie-text { max-width: 70%; }
    .legal-card { padding: 60px 80px; }
    .map-iframe { height: 400px; }
}
