/*==============================================================
  TWOWHEEL SERVICE WEST — FULL UI THEME (ROUND UI + WINTER STYLE)
==============================================================*/

/* ROOT VARIABELEN */
:root {
  --bg: #020617;
  --bg-soft: #020819;
  --bg-elevated: #050b1c;
  --card: #050816;
  --border-subtle: rgba(148, 163, 184, 0.25);
  --border-strong: rgba(148, 163, 184, 0.4);
  --primary: #0ea5e9;
  --accent: #38bdf8;
  --text: #e5e7eb;
  --muted: #9ca3af;
  --radius-lg: 1.1rem;
  --shadow-soft: 0 20px 45px rgba(15, 23, 42, 0.75);
  --transition: 0.25s ease;
}

/* BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Poppins", sans-serif;
  background:radial-gradient(circle at top left,#0b1220 0,#020617 50%,#000 100%);
    overscroll-behavior:none;
    -webkit-font-smoothing:antialiased;
    backface-visibility:hidden;
  color: var(--text);
  line-height: 1.6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: 100%;
  max-width: 1120px;
  margin: auto;
  padding: 0 1.4rem;
}

/*==============================================================
  HEADER & NAV
==============================================================*/
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-subtle);
  background: linear-gradient(
    to bottom,
    rgba(2, 6, 23, 0.96),
    rgba(2, 6, 23, 0.82)
  );
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-circle {
  width: 45px;
  height: 45px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0, #38bdf8, #020617 65%);
  border: 2px solid rgba(125, 211, 252, 0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.logo-circle img {
  width: 92%;
  height: 92%;
  object-fit: contain;
}
.logo-text h1 {
  font-size: 1rem;
  font-weight: 600;
}
.logo-text p {
  font-size: 0.8rem;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  color: white;
  font-size: 1.7rem;
  background: none;
  border: none;
  cursor: pointer;
}
.nav ul {
  display: flex;
  gap: 1.3rem;
  list-style: none;
}
.nav a {
  font-size: 0.9rem;
  color: #dbecff;
  position: relative;
  padding-bottom: 2px;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  height: 2px;
  width: 0;
  background: var(--primary);
  border-radius: 999px;
  transition: var(--transition);
}
.nav a:hover::after {
  width: 100%;
}

/*==============================================================
  HERO
==============================================================*/
.hero {
  padding: 4rem 0 3.2rem;
  background: radial-gradient(
      circle at top left,
      rgba(56, 189, 248, 0.15),
      transparent 55%
    ),
    radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.9), #020617 60%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-badge-row {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
}
.hero-badge {
  font-size: 0.78rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.35);
}
.hero-badge-soft {
  background: rgba(14, 165, 233, 0.18);
  border-color: rgba(14, 165, 233, 0.45);
}

.hero h2 {
  font-size: 2.35rem;
  margin-bottom: 0.8rem;
}
.hero-lead {
  color: #d1d5db;
  margin-bottom: 0.75rem;
}
.hero-bullets {
  list-style: none;
  color: var(--muted);
  margin-bottom: 1.15rem;
}
.hero-bullets li + li {
  margin-top: 0.22rem;
}

.hero-buttons {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.1rem;
}
.hero-info {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Winter Ready Card ❄ Frosted UI */
.hero-card {
  background: rgba(5, 12, 25, 0.55);
  border-radius: 1.25rem;
  padding: 1.25rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.55), 0 0 22px rgba(14, 165, 233, 0.25);
  transition: 0.35s;
}
.hero-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 45px rgba(14, 165, 233, 0.45), 0 0 30px rgba(0, 0, 0, 0.7);
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #e6f9ff;
  margin-bottom: 0.7rem;
}
.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 1);
  animation: pulseDot 1.6s infinite alternate;
}
@keyframes pulseDot {
  from {
    box-shadow: 0 0 6px rgba(34, 197, 94, 0.7);
  }
  to {
    box-shadow: 0 0 14px rgba(34, 197, 94, 1);
  }
}

.hero-photo-wrapper {
  overflow: hidden;
  border-radius: 1rem;
  margin-bottom: 0.85rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
}
.hero-card-list {
  list-style: none;
  color: #b8c6d9;
  font-size: 0.88rem;
  margin-bottom: 0.55rem;
}
.hero-card-list li + li {
  margin-top: 0.22rem;
}
.hero-card-foot {
  font-size: 0.83rem;
  color: #eafbff;
  opacity: 0.9;
}

/*==============================================================
  BUTTONS
==============================================================*/
.btn {
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}
.btn.primary {
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
  color: #020617;
  box-shadow: 0 0 15px rgba(14, 165, 233, 0.38);
}
.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 28px rgba(14, 165, 233, 0.55);
}
.btn.secondary {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(148, 163, 184, 0.55);
  color: white;
}
.btn.secondary:hover {
  background: rgba(30, 58, 138, 0.55);
}
.btn.ghost {
  border: 1px solid rgba(148, 163, 184, 0.35);
  color: var(--muted);
}
.btn.ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  color: white;
}
.btn-full {
  width: 100%;
}

/*==============================================================
  SECTION
==============================================================*/
.section {
  padding: 3.2rem 0;
}
.section-soft {
  background: rgba(5, 10, 25, 0.45);
}
.section h2 {
  font-size: 1.85rem;
  text-align: center;
  margin-bottom: 0.6rem;
  background: linear-gradient(90deg, #0ea5e9, #22c55e);
  -webkit-background-clip: text;
  color: transparent;
}
.section-subtitle {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 760px;
  margin: 0 auto 1.9rem;
}

/*==============================================================
  WAAROM WIJ
==============================================================*/
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
}
.why-card {
  background: var(--card);
  padding: 1.1rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  transition: 0.35s;
  position: relative;
}
.why-card:hover {
  transform: translateY(-3px);
  border-color: rgba(148, 163, 184, 0.45);
  box-shadow: 0 0 30px rgba(14, 165, 233, 0.25);
}
.why-icon {
  font-size: 1.4rem;
  margin-bottom: 0.45rem;
}

/*==============================================================
  DIENSTEN
==============================================================*/
.grid-3 {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.card {
  background: var(--card);
  padding: 1.2rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: 0.35s;
  position: relative;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 25px rgba(14, 165, 233, 0.35), 0 0 15px rgba(0, 0, 0, 0.45);
}

.service-card {
  padding-top: 2.6rem;
}
.service-tag {
  position: absolute;
  top: 0.9rem;
  left: 0.95rem;
  font-size: 0.72rem;
  padding: 0.26rem 0.8rem;
  border-radius: 999px;
  font-weight: 600;
  background: rgba(14, 165, 233, 0.22);
  border: 1px solid rgba(14, 165, 233, 0.55);
  backdrop-filter: blur(6px);
  color: #0ea5e9;
  transition: 0.25s;
  z-index: 5;
}
.card:hover .service-tag {
  background: rgba(14, 165, 233, 0.32);
  box-shadow: 0 0 10px rgba(14, 165, 233, 0.6);
}

/*==============================================================
  OVER ONS
==============================================================*/
.about-grid{
    display:grid;
    grid-template-columns:1.6fr 1fr;
    gap:2.5rem;
    align-items:center;
}

.about-main{
    background:rgba(5,10,25,.55);
    border-radius:1.15rem;
    padding:1.6rem 1.8rem;
    border:1px solid rgba(148,163,184,.28);
    backdrop-filter:blur(10px);
    box-shadow:0 0 30px rgba(0,0,0,.45);
    transition:.35s;
}

.about-main:hover{
    border-color:rgba(14,165,233,.45);
    box-shadow:0 0 38px rgba(14,165,233,.35);
}

.about-main p{
    color:#cbd9f7;
    margin-bottom:.65rem;
    line-height:1.55;
}

.about-extra{
    background:rgba(5,10,25,.65);
    border-radius:1.15rem;
    border:1px solid rgba(148,163,184,.35);
    padding:1.6rem;
    text-align:left;
    backdrop-filter:blur(12px);
    box-shadow:0 0 28px rgba(0,0,0,.45);
    transition:.35s;
}
.about-extra:hover{
    border-color:rgba(14,165,233,.45);
    box-shadow:0 0 35px rgba(14,165,233,.32);
}

.about-extra h3{
    font-size:1.35rem;
    margin-bottom:.3rem;
    background:linear-gradient(90deg,#0ea5e9,#22c55e);
    -webkit-background-clip:text;
    color:transparent;
}
.about-list{
    list-style:none;
    margin-top:.8rem;
}
.about-list li{
    position:relative;
    padding-left:1.6rem;
    margin:.4rem 0;
    font-size:.92rem;
}
.about-list li::before{
    content:"✔";
    position:absolute;
    left:0;
    top:50%;
    transform:translateY(-50%);
    color:#22c55e;
    font-size:.95rem;
    text-shadow:0 0 6px rgba(34,197,94,.9);
}
.about-badge{
    margin-top:1rem;
    font-size:.82rem;
    display:flex;
    align-items:center;
    gap:.4rem;
    color:#b3c9ee;
    opacity:.9;
}
.about-dot{
    width:9px;height:9px;border-radius:999px;
    background:#22c55e;
    box-shadow:0 0 10px rgba(34,197,94,.9);
}

.social-list{
    list-style:none;
    margin-top:.7rem;
}
.social-list li{
    margin-bottom:.45rem;
}
.social-list a{
    color:#38bdf8;
    font-weight:600;
    transition:.25s;
}
.social-list a:hover{
    text-shadow:0 0 8px rgba(14,165,233,.85);
    color:white;
}

@media(max-width:900px){
    .about-grid{grid-template-columns:1fr;gap:1.6rem;}
}

/*==============================================================
  REVIEWS
==============================================================*/
.reviews-grid .card {
  min-height: 180px;
}
.review-card {
  position: relative;
  overflow: hidden;
}
.review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(14, 165, 233, 0.12), transparent);
  opacity: 0;
  transition: 0.35s;
}
.review-card:hover::before {
  opacity: 1;
}
.stars {
  color: #facc15;
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
.review-name {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 0.4rem;
}

/*==============================================================
  CONTACT (matcht exact met jouw HTML)
==============================================================*/
.contact-wrapper {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.4rem;
  align-items: flex-start;
}

.contact-left h2 {
  font-size: 1.55rem;
  margin-bottom: 0.35rem;
}
.contact-left p {
  color: #9ab1be;
  margin-bottom: 1rem;
}

.contact-form {
  background: rgba(5, 10, 25, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 1.25rem;
  padding: 1.7rem;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
}

.contact-form select {
    background:#0a0f1d !important;
    color:#e5e7eb !important;
    border:1px solid rgba(148,163,184,.55);
    appearance:none;
}

.select-box {
    position:relative;
}

.select-box::after {
    content:"▼";
    position:absolute;
    right:14px;
    top:50%;
    transform:translateY(-50%);
    font-size:.75rem;
    pointer-events:none;
    color:#7fbce2;
    opacity:.8;
}

/* Opties in dropdown */
.contact-form select option {
    background:#0a0f1d;
    color:#e5e7eb;
}

/* Hover/active/focus state */
.contact-form select:focus {
    border-color:#0ea5e9;
    box-shadow:0 0 12px rgba(14,165,233,.55);
}

.form-row {
  display: flex;
  gap: 0.9rem;
}
.input-box {
  background: #020617;
  border: 1px solid rgba(148, 163, 184, 0.45);
  border-radius: 0.9rem;
  padding: 0.6rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
  transition: 0.25s;
}
.input-box span {
  opacity: 0.65;
  font-size: 1.1rem;
}
.input-box input,
.input-box select,
.input-box textarea {
  flex: 1;
  background: transparent;
  border: none;
  color: #e5e7eb;
  font-size: 0.9rem;
  outline: none;
}
.input-box:focus-within {
  border-color: #0ea5e9;
  box-shadow: 0 0 15px rgba(14, 165, 233, 0.35);
}
.textarea-box textarea {
  min-height: 100px;
  resize: vertical;
}
.big-send {
  font-size: 1rem;
  padding: 0.9rem;
  margin-top: 0.5rem;
  border-radius: 999px;
  color: #020617;
  font-weight: 600;
  background: linear-gradient(135deg, #0ea5e9, #22c55e);
  transition: 0.3s;
  width: 100%;
}
.big-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 35px rgba(14, 165, 233, 0.6);
}

.form-hint {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

/* RIGHT INFO CARD */
.info-card {
  background: rgba(5, 10, 25, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 1.2rem;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 27px rgba(0, 0, 0, 0.35);
}
.info-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}
.company-name {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.info-list {
  list-style: none;
  margin-bottom: 1.1rem;
}
.info-list li {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 0.4rem;
}
.map-btn {
  display: inline-block;
  background: #0ea5e9;
  color: #020617;
  font-weight: 600;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  transition: 0.25s;
  margin-top: 0.6rem;
}
.map-btn:hover {
  background: #0894cd;
}

/*==============================================================
  FOOTER
==============================================================*/
.footer {
  text-align: center;
  color: var(--muted);
  padding: 1.25rem 0;
  border-top: 1px solid var(--border-subtle);
}

/*==============================================================
  WHATSAPP FLOAT BUTTON
==============================================================*/
.whatsapp-float {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  width: 52px;
  height: 52px;
  background: #22c55e;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.45rem;
  border: 2px solid #bbf7d0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.55);
  z-index: 999;
}

/*==============================================================
  SNOW EFFECT
==============================================================*/
#snowCanvas{
    position:fixed;
    inset:0;
    width:100vw;
    height:100vh;
    pointer-events:none;
    z-index:3;
    mix-blend-mode: lighten; /* voorkomt flikkering op veel GPUs */
    opacity:0.85;
    image-rendering: optimizeQuality;
    transform: translateZ(0); /* GPU push */
    will-change: transform;
}

/*==============================================================
  RESPONSIVE FIXED
==============================================================*/
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .about-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }
  .nav {
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    background: #020617;
    border-bottom: 1px solid var(--border-subtle);
    display: none;
    padding-bottom: 1rem;
  }
  .nav.open {
    display: block;
  }
  .nav ul {
    flex-direction: column;
    padding: 1rem;
    gap: 0.6rem;
  }
}
@media (max-width: 520px) {
  .hero h2 {
    font-size: 1.75rem;
  }
  .hero-card {
    padding: 1rem;
  }
  .form-row {
    flex-direction: column;
  }
}

/*==============================================================
  FAQ PAGE STYLING — MATCHED WITH MAIN THEME
==============================================================*/

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 800px;
  margin: auto;
}

/* Item card */
.faq-item {
  background: rgba(5, 10, 25, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 1.1rem;
  backdrop-filter: blur(12px);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  transition: 0.3s;
}
.faq-item:hover {
  box-shadow: 0 0 28px rgba(14, 165, 233, 0.35);
  border-color: rgba(14, 165, 233, 0.45);
}

/* Vraag button */
.faq-question {
  width: 100%;
  padding: 1rem 1.3rem;
  background: rgba(14, 165, 233, 0.15);
  color: #e6faff;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.35s ease;
}
.faq-question::after {
  content: "＋";
  font-size: 1.25rem;
  transform-origin: center;
  transition: 0.35s cubic-bezier(0.4, 0.14, 0.3, 1.4);
}

/* Active state */
.faq-question.active {
  background: rgba(14, 165, 233, 0.28);
  color: #fff;
}
.faq-question.active::after {
  content: "－";
  transform: rotate(180deg) scale(1.15);
}
/* Antwoord sectie */
.faq-answer {
  max-height: 0;
  opacity: 0;
  padding: 0 1.3rem;
  overflow: hidden;
  color: #d9e6ff;
  background: rgba(2, 6, 23, 0.92);
  border-top: 1px solid transparent;
  transform: translateY(-6px);
  transition: max-height 0.6s cubic-bezier(0.28, 0.75, 0.25, 1),
    opacity 0.35s ease, transform 0.45s ease, padding 0.45s ease;
}

.faq-question.active + .faq-answer {
  max-height: 350px;
  opacity: 1;
  padding: 1.1rem 1.3rem 1.2rem;
  transform: translateY(0);
  border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.faq-answer p {
  font-size: 0.92rem;
  line-height: 1.55;
}

/* Titel centreren net als homepage */
.section h2 {
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

/* Responsive fix */
@media (max-width: 700px) {
  .faq-item {
    border-radius: 0.9rem;
  }
  .faq-question {
    padding: 0.85rem 1rem;
  }
}
