﻿:root {
  --primary: #0F172A; /* Deep Navy */
  --secondary: #3B82F6; /* Modern Blue */
  --accent: #10B981; /* Emerald Green */
  --bg-light: #F8FAFC;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --white: #FFFFFF;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --radius: 16px;
  --shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background-color: var(--bg-light); color: var(--text-dark); line-height: 1.6; }

h1, h2, h3, h4, .logo { font-family: var(--font-heading); font-weight: 700; color: var(--primary); }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* Typography */
h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.1; letter-spacing: -1px; margin-bottom: 1.5rem; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
p { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 1.5rem; }

/* Layout & Components */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 1rem 2rem; border-radius: 8px; font-weight: 600; font-family: var(--font-heading); cursor: pointer; transition: all 0.3s ease; border: none; font-size: 1.125rem; }
.btn-primary { background: var(--secondary); color: var(--white); box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4); }
.btn-primary:hover { background: #2563EB; transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: var(--white); }
.btn-accent:hover { background: #059669; }

/* Header */
header { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 100; border-bottom: 1px solid #E2E8F0; }
.header-inner { display: flex; justify-content: space-between; align-items: center; height: 80px; }
.logo { font-size: 1.5rem; display: flex; align-items: center; gap: 10px; }
.logo img { width: 32px; height: 32px; }
.nav-links { display: none; }

/* Hero Section */
.hero { padding: 6rem 0; text-align: center; background: linear-gradient(135deg, var(--bg-light) 0%, #E0E7FF 100%); }
.hero-content { max-width: 800px; margin: 0 auto; }
.hero-badges { display: inline-block; padding: 0.5rem 1rem; background: var(--white); border-radius: 30px; font-weight: 600; color: var(--secondary); margin-bottom: 2rem; box-shadow: var(--shadow); font-size: 0.9rem; }

/* Sections */
section { padding: 5rem 0; }
.random-section { background: var(--primary); color: var(--white); text-align: center; }
.random-section h2, .random-section p { color: var(--white); }

/* Features (Asymmetric) */
.features-grid { display: grid; gap: 3rem; align-items: center; }
.feature-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.feature-img img { width: 100%; height: 400px; object-fit: cover; }
.feature-list li { margin-bottom: 1rem; display: flex; align-items: flex-start; gap: 10px; font-size: 1.125rem; font-weight: 500; }
.feature-list i { color: var(--accent); margin-top: 5px; font-size: 1.2rem; }

/* Form Section */
.form-section { background: #F1F5F9; }
.form-wrapper { background: var(--white); padding: 3rem; border-radius: var(--radius); box-shadow: var(--shadow); max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.5rem; color: var(--primary); }
.form-control { width: 100%; padding: 1rem; border: 2px solid #E2E8F0; border-radius: 8px; font-family: var(--font-body); font-size: 1rem; transition: border-color 0.3s ease; }
.form-control:focus { outline: none; border-color: var(--secondary); }
.checkbox-group { display: flex; align-items: flex-start; gap: 10px; }
.checkbox-group input { margin-top: 5px; width: 20px; height: 20px; }
.checkbox-group label { font-size: 0.9rem; color: var(--text-muted); font-weight: 400; }
.success-box { display: none; text-align: center; padding: 3rem 1rem; }
.success-box i { font-size: 4rem; color: var(--accent); margin-bottom: 1rem; }
.success-box h3 { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 1rem; }

/* FAQ */
details { background: var(--white); border-radius: 8px; margin-bottom: 1rem; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05); overflow: hidden; }
summary { padding: 1.5rem; font-weight: 600; font-family: var(--font-heading); font-size: 1.2rem; 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(--secondary); transition: transform 0.3s; }
details[open] summary::after { transform: rotate(180deg); }
details p { padding: 0 1.5rem 1.5rem; margin: 0; }

/* Footer */
footer { background: var(--primary); color: var(--text-muted); padding: 4rem 0 2rem; text-align: center; }
.footer-logo { color: var(--white); font-size: 1.5rem; margin-bottom: 1rem; font-family: var(--font-heading); display: block; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; margin-bottom: 2rem; }
.footer-links a:hover { color: var(--white); }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: -100%; left: 0; width: 100%; background: var(--white); box-shadow: 0 -10px 25px rgba(0,0,0,0.1); padding: 1.5rem; z-index: 999; transition: bottom 0.5s ease; border-top: 4px solid var(--secondary); }
.cookie-banner.show { bottom: 0; }
.cookie-content { display: flex; flex-direction: column; gap: 1rem; max-width: 1280px; margin: 0 auto; align-items: center; text-align: center; }
.cookie-buttons { display: flex; gap: 1rem; }

/* Legal Pages Containers */
.legal-content { background: var(--white); padding: 4rem; border-radius: var(--radius); box-shadow: var(--shadow); margin-top: -3rem; position: relative; z-index: 10; margin-bottom: 5rem; }
.legal-header { background: var(--primary); padding: 6rem 0 8rem; color: var(--white); text-align: center; }
.legal-header h1 { color: var(--white); margin: 0; }
.legal-content h2 { margin-top: 3rem; font-size: 1.75rem; border-bottom: 2px solid #E2E8F0; padding-bottom: 0.5rem; }
.legal-content h3 { margin-top: 2rem; font-size: 1.25rem; }

/* Map */
.map-container { border-radius: 12px; overflow: hidden; margin-top: 2rem; box-shadow: var(--shadow); }

/* Responsive Media Queries (Mobile-First implies scaling up) */
@media (min-width: 768px) {
  .nav-links { display: flex; gap: 2rem; font-weight: 600; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-text.left { order: -1; }
  .cookie-content { flex-direction: row; justify-content: space-between; text-align: left; }
}
