/* ALIK Transportservice - Custom Design over Bulma
   Color palette matches the business card:
   Deep black background, warm gold accents, white type. */

:root {
  --bg-0: #050505;
  --bg-1: #0d0d0d;
  --bg-2: #171717;
  --gold: #F5A524;
  --gold-light: #FFC66B;
  --gold-dark: #C88318;
  --gold-glow: rgba(245, 165, 36, 0.35);
  --text: #f5f5f5;
  --text-muted: #a8a8a8;
  --border: rgba(245, 165, 36, 0.18);
}

/* --- Base overrides ------------------------------------------------------ */
html, body {
  background: var(--bg-0);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  background:
    radial-gradient(1200px 800px at 85% -10%, rgba(245, 165, 36, 0.12), transparent 60%),
    radial-gradient(900px 600px at -10% 40%, rgba(245, 165, 36, 0.06), transparent 60%),
    var(--bg-0);
}

.section { background: transparent; }

.title, .subtitle { color: var(--text) !important; }
.subtitle { color: var(--text-muted) !important; }

a { color: var(--gold-light); }
a:hover { color: var(--gold); }

/* --- Typography helpers ------------------------------------------------- */
.font-display {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.font-script {
  font-family: 'Great Vibes', 'Playfair Display', cursive;
  font-weight: 400;
  color: var(--gold);
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(245, 165, 36, 0.06);
}

.text-gold { color: var(--gold) !important; }
.text-muted { color: var(--text-muted) !important; }

/* --- Navbar ------------------------------------------------------------- */
.navbar {
  background: rgba(5, 5, 5, 0.55);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(245, 165, 36, 0.08);
  transition: background 0.25s ease;
}
.navbar.is-solid { background: rgba(5, 5, 5, 0.92); }

.navbar-item, .navbar-link {
  color: var(--text) !important;
  background: transparent !important;
  font-weight: 500;
}
.navbar-item:hover, .navbar-link:hover { color: var(--gold) !important; }

.navbar-brand .brand-mark {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}
.navbar-brand .brand-mark .service { color: var(--gold); font-weight: 500; }

.navbar-burger { color: var(--text); }
.navbar-menu.is-active { background: var(--bg-1); }

/* Lang toggle */
.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.lang-toggle a {
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
}
.lang-toggle a.is-active {
  background: var(--gold);
  color: #000;
}

/* --- Buttons ------------------------------------------------------------ */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #0a0a0a !important;
  border: none;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.6rem;
  border-radius: 10px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 8px 30px -12px var(--gold-glow);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  height: auto;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px -10px var(--gold-glow);
  color: #0a0a0a !important;
}

.btn-ghost {
  background: transparent;
  color: var(--text) !important;
  border: 1px solid var(--border);
  font-weight: 600;
  padding: 0.85rem 1.6rem;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: border-color 0.18s ease, background 0.18s ease;
  height: auto;
}
.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(245, 165, 36, 0.05);
  color: var(--text) !important;
}

.btn-whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); color: #fff !important; }
.btn-whatsapp:hover { color: #fff !important; }

/* --- Hero --------------------------------------------------------------- */
.hero-alik {
  position: relative;
  min-height: 92vh;
  padding: 6rem 0 4rem;
  overflow: hidden;
}
.hero-alik::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url('/assets/img/hero.webp');
  background-size: cover;
  background-position: center right;
  opacity: 0.55;
  z-index: 0;
}
.hero-alik::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--bg-0) 15%, rgba(5,5,5,0.55) 55%, rgba(5,5,5,0.15) 100%);
  z-index: 1;
}
.hero-alik .container { position: relative; z-index: 2; }

.hero-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 1.2rem 0 0.5rem;
}
.hero-headline .service {
  color: var(--gold);
  font-weight: 400;
  display: block;
  font-size: 0.55em;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-muted);
  max-width: 42ch;
  margin-bottom: 2rem;
}

.hero-slogan {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold);
  margin: 1.5rem 0;
  line-height: 1;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.5rem; }

.hero-trust {
  margin-top: 3rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.hero-trust > div { display: flex; align-items: center; gap: 0.5rem; }
.hero-trust svg { color: var(--gold); }

/* --- Section headers ---------------------------------------------------- */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .title-xl {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  margin: 1rem 0 0.5rem;
  color: var(--text);
}
.section-header .title-xl .accent { color: var(--gold); }
.section-header p { color: var(--text-muted); max-width: 60ch; margin: 0 auto; }

/* --- Service cards ------------------------------------------------------ */
.service-card {
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 18px;
  padding: 2.2rem 1.8rem;
  height: 100%;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(400px 200px at 50% -20%, var(--gold-glow), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--border);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.8);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 64px; height: 64px;
  border-radius: 14px;
  background: rgba(245, 165, 36, 0.1);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.4rem;
  color: var(--gold);
  position: relative;
  z-index: 1;
}
.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--text);
  position: relative;
  z-index: 1;
}
.service-card p {
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.service-card ul {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  position: relative;
  z-index: 1;
}
.service-card ul li {
  padding: 0.35rem 0;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.92rem;
}
.service-card ul li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}

/* --- Cities ------------------------------------------------------------- */
.cities-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 3rem;
}
.city-tile {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 1.6rem 1.4rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.city-tile:hover { border-color: var(--border); transform: translateY(-3px); }
.city-tile .city-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.city-tile .city-meta {
  color: var(--text-muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

/* --- Stat cards (Warum ALIK) -------------------------------------------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
}
.stat-card {
  position: relative;
  padding: 2.2rem 1.6rem 1.8rem;
  background: linear-gradient(180deg, var(--bg-1), var(--bg-2));
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  text-align: center;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.stat-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(300px 150px at 50% 0%, var(--gold-glow), transparent 60%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.stat-card:hover { transform: translateY(-4px); border-color: var(--border); }
.stat-card:hover::before { opacity: 0.6; }

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.03em;
  margin-bottom: 0.4rem;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.25rem;
  position: relative;
  z-index: 1;
}
.stat-sub {
  color: var(--text-muted);
  font-size: 0.82rem;
  position: relative;
  z-index: 1;
}

/* --- FAQ ---------------------------------------------------------------- */
.faq-item {
  background: var(--bg-1);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  margin-bottom: 0.8rem;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item[open] { border-color: var(--border); }
.faq-item summary {
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .answer {
  padding: 0 1.5rem 1.4rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- Contact section ---------------------------------------------------- */
.contact-wrap {
  background: linear-gradient(135deg, var(--bg-1), var(--bg-2));
  border-radius: 24px;
  padding: 3.5rem 2rem;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.contact-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 50% 0%, var(--gold-glow), transparent 60%);
  opacity: 0.5;
  pointer-events: none;
}
.contact-wrap > * { position: relative; z-index: 1; }

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}
.contact-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  color: var(--text);
  background: rgba(245, 165, 36, 0.05);
}
.contact-card .cc-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(245, 165, 36, 0.1);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-card .cc-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.contact-card .cc-value { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.05rem; }

/* --- Footer ------------------------------------------------------------- */
.site-footer {
  background: var(--bg-1);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 3rem 0 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.site-footer a { color: var(--text-muted); }
.site-footer a:hover { color: var(--gold); }
.site-footer .footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* --- Utility ------------------------------------------------------------ */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 4rem 0;
}

@media (max-width: 768px) {
  .hero-alik { min-height: auto; padding: 5rem 0 3rem; }
  .hero-alik::before { opacity: 0.25; }
  .hero-headline { font-size: 2.4rem; }
  .section { padding: 3rem 1.2rem; }
  .contact-wrap { padding: 2.5rem 1.5rem; }
  .hero-trust { gap: 1rem; }
}

/* --- Reduce motion ------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
