/* =========================================================
   PROPERTY INSPECTIONS — FAQ
   Same style as HOME (Warm White Theme)
   File: /style/faq.css
   ========================================================= */

/* -------------------------
   TOKENS (same as homeStyle.css)
------------------------- */
:root{
  --bg: #fbfaf3;        /* body */
  --bg-2: #f4f2e8;      /* header/footer */
  --surface: #ffffff;   /* cards */
  --surface-2: #ffffff;

  --text: #111827;
  --text-2: #4b5563;
  --muted: #6b7280;

  --border: rgba(17,24,39,0.10);
  --ring: rgba(17,24,39,0.14);

  --shadow: 0 14px 34px rgba(17,24,39,0.10);
  --shadow-soft: 0 10px 22px rgba(17,24,39,0.08);

  --radius: 18px;
  --container: 1100px;
  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}

/* -------------------------
   RESET / BASE
------------------------- */
*{ box-sizing: border-box; margin:0; padding:0; }
html, body{ height:100%; }

body{
  font-family: var(--font);
  color: var(--text);
  line-height: 1.65;
  background: linear-gradient(#bbb5a45b);
}

a{ color: inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

:focus-visible{
  outline: 3px solid var(--ring);
  outline-offset: 3px;
  border-radius: 10px;
}

.hr{
  height: 1px;
  background: rgba(17,24,39,0.10);
  border: 0;
  margin: 18px 0;
}

main{
  max-width: var(--container);
  margin: 0 auto;
  padding: 22px 20px 56px;
}

/* -------------------------
   HEADER (same as Home)
------------------------- */
header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: #94918792;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px 20px;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
  gap: 12px;
}

.logo{
  height: 70px;
  width: auto;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(17,24,39,0.10);
}

/* NAV */
nav{ justify-self: center; }
nav ul{
  display:flex;
  list-style:none;
  gap: 6px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.70);
  border: 1px solid var(--border);
}
nav a{
  display:inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 1rem;
  color: var(--text);
  transition: background-color .15s ease, transform .15s ease;
}
nav a:hover{
  background: rgba(17,24,39,0.05);
  transform: translateY(-1px);
}
nav a.active{
  background: rgba(17,24,39,0.08);
}

/* LANG */
.lang-switch{
  justify-self: end;
  display:flex;
  gap: 8px;
  align-items:center;
  font-weight: 900;
  font-size: 0.95rem;
}
.lang-switch a{
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.70);
  border: 1px solid var(--border);
  transition: background-color .15s ease, transform .15s ease;
}
.lang-switch a:hover{
  background: rgba(17,24,39,0.05);
  transform: translateY(-1px);
}
.lang-switch a.active{
  background: rgba(17,24,39,0.08);
}
/* -------------------------
   FAQ HERO (zelfde vibe als Home sections)
------------------------- */
.faq-hero{
  max-width: 900px;
  margin: 0 auto 22px;
  padding: 40px 24px;

  text-align:center;
  background: none;
  border: none;
  border-radius: none;
  box-shadow: none;
}

.faq-hero h1{
  font-size: clamp(2rem, 3.2vw, 2.65rem);
  font-weight: 975;
  letter-spacing: -0.6px;
  margin-bottom: 10px;
  color: var(--text);
}

.faq-hero .intro{
  font-size: 1.06rem;
  line-height: 1.65;
  color: var(--text-2);
  font-weight: 560;
  max-width: 75ch;
  margin: 0 auto;
}

/* -------------------------
   FAQ SECTIONS (cards like home .section)
------------------------- */
main > section{
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 32px 24px;
  margin-bottom: 26px;
}

/* titles zoals home .section-title */
main > section h2{
  text-align:center;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-weight: 975;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  color: var(--text);
}

/* -------------------------
   DETAILS accordion (clean & compact)
------------------------- */
details{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 14px;
  margin: 10px 0;
  box-shadow: none;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

details:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(17,24,39,0.16);
}

summary{
  list-style: none;
  cursor: pointer;
  font-weight: 950;
  color: var(--text);
  font-size: 1.03rem;
  padding-right: 44px;
  position: relative;
}

/* remove default marker */
summary::-webkit-details-marker{ display:none; }

/* plus/minus bubble (subtiel) */
summary::after{
  content:"+";
  position:absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 1.15rem;
  font-weight: 975;

  background: rgba(17,24,39,0.06);
  border: 1px solid rgba(17,24,39,0.12);
  color: rgba(17,24,39,0.85);

  transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

details[open] summary::after{
  content:"–";
  transform: translateY(-50%);
  background: rgba(17,24,39,0.08);
  border-color: rgba(17,24,39,0.16);
}

details p{
  margin-top: 10px;
  color: var(--text-2);
  line-height: 1.7;
}

/* -------------------------
   FOOTER (same as Home/Info)
------------------------- */
.site-footer{
  background: #94918792;
  border-top: 1px solid var(--border);
  padding: 12px 0;
  color: var(--text);
}

.footer-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  align-items: start;
}

/* property + contact side-by-side (works even if you used two .footer-left blocks) */
.footer-left{
  display: grid;
  grid-template-columns: 1fr 1fr;
  
}

.footer-left h4{
  font-size: 0.95rem;
  margin-bottom: 6px;
  font-weight: 800;
  color: var(--text);
}

.footer-meta{
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--text-2);
}

.footer-meta span{ font-weight: 700; color: rgba(17,24,39,0.55); }
.footer-meta strong{ font-weight: 800; color: var(--text); }

.footer-meta a{
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 800;
}

.footer-meta a:hover{
  text-decoration: underline #706f69 solid 3px;
}

.footer-links{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a{
  color: var(--text);
  font-weight: 700;
  text-decoration: underline; 
  text-underline-offset: 3px;
}

.footer-links a:hover{
  text-decoration: underline #706f6c solid 3px;
}

.footer-bottom{
  max-width: var(--container);
  margin: 10px auto 0;
  padding: 10px 20px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-2);
}


@media (max-width: 1000px){

  /* BODY */
  body{
    background: linear-gradient(#bbb5a45b);
  }

  /* HEADER */
  header{
    background: #94918792;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .header-container{
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .logo{
    height: 64px;
    margin: 0 auto;
  }

  /* NAV */
  nav{
    justify-self: center;
    
  }

  nav ul{
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    padding: 6px;
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(17,24,39,0.10);
  }

  nav a{
    font-size: 0.95rem;
    padding: 9px 14px;
  }

  /* LANGUAGE SWITCH */
  .lang-switch{
    gap: 6px;
  }

  .lang-switch a{
    background: rgba(255,255,255,0.75);
    border: 1px solid rgba(17,24,39,0.10);
    font-size: 0.9rem;
  }

  /* HERO */
  .hero-inner{
    padding: 44px 18px 36px;
  }

  .hero h1{
    font-size: clamp(1.7rem, 5vw, 2.2rem);
    line-height: 1.15;
  }

  .hero-sub{
    font-size: 1rem;
  }

  .hero-actions{
    gap: 10px;
  }

  /* TRUST BAR */
  .trust-bar{
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .trust-item{
    font-size: 0.85rem;
    padding: 9px 10px;
  }

  /* PRICING */
  .pricing-grid{
    /* grid-template-columns: 1fr 1fr; */
    gap: 16px;
  }

  .price-main{
    font-size: 1.2rem;
    margin-bottom: 10px;
  }

  .type-img{
    height: 170px;
  }

  .type-body{
    padding: 14px 14px 18px;
  }

  /* FOOTER */
  .site-footer{
    background: #94918792;
  }

  .footer-inner{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-links{
    justify-content: center;
    gap: 0px;
  }
}

