/* ============================================================
   SOCIALE HUURWONING ARNHEM - Custom CSS
   Overschrijft conflicten tussen Realtor template en Bootstrap 5
   ============================================================ */

/* Reset hoofdletters van oude template */
h1,h2,h3,h4,h5,h6,
.navbar-nav .nav-link,
.btn,
.card-title,
.woning-card h5,
.woning-card h6 {
  text-transform: none !important;
  letter-spacing: normal !important;
}

/* ============================================================
   KLEUREN
   ============================================================ */
:root {
  --sha-primary: #e8452c;
  --sha-dark: #c73820;
  --sha-navy: #1a1a2e;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: #1a1a2e;
  color: #bbb;
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid #2d2d4e;
}
.top-bar a { color: #bbb; text-decoration: none; }
.top-bar a:hover { color: #fff; }

/* ============================================================
   NAVIGATIE
   ============================================================ */
.navbar {
  background: #fff !important;
  box-shadow: 0 2px 10px rgba(0,0,0,.08) !important;
  padding: 10px 0;
}
.navbar-brand {
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.2;
  color: #1a1a2e !important;
}
.navbar-brand span { color: var(--sha-primary); }
.navbar-brand small { font-size: 11px; color: #999 !important; font-weight: 400; display: block; }

.navbar-nav { gap: 5px; }
.navbar-nav .nav-link {
  color: #333 !important;
  font-weight: 500;
  padding: 8px 14px !important;
  border-radius: 6px;
  transition: .2s;
}
.navbar-nav .nav-link:hover {
  color: var(--sha-primary) !important;
  background: rgba(232,69,44,.06);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-sha-primary {
  background: var(--sha-primary) !important;
  border-color: var(--sha-primary) !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: 6px;
  transition: .2s;
  text-transform: none !important;
  letter-spacing: normal !important;
}
.btn-sha-primary:hover {
  background: var(--sha-dark) !important;
  border-color: var(--sha-dark) !important;
  color: #fff !important;
}
.btn-sha-outline {
  border: 2px solid var(--sha-primary) !important;
  color: var(--sha-primary) !important;
  background: transparent !important;
  font-weight: 600;
  border-radius: 6px;
  transition: .2s;
  text-transform: none !important;
}
.btn-sha-outline:hover {
  background: var(--sha-primary) !important;
  color: #fff !important;
}

/* Oude klassen ook fixen */
.btn-primary-custom {
  background: var(--sha-primary) !important;
  border-color: var(--sha-primary) !important;
  color: #fff !important;
  font-weight: 600;
  text-transform: none !important;
  letter-spacing: normal !important;
  border-radius: 6px;
}
.btn-primary-custom:hover {
  background: var(--sha-dark) !important;
  border-color: var(--sha-dark) !important;
  color: #fff !important;
}

/* ============================================================
   HERO SECTIE
   ============================================================ */
.hero-section {
  background: linear-gradient(135deg, #0f3460 0%, #16213e 50%, #1a1a2e 100%);
  color: #fff;
  padding: 90px 0 70px;
}
.hero-section h1 {
  font-size: 2.8rem;
  font-weight: 800;
  text-shadow: none;
  text-transform: none !important;
}
.hero-section h1 span { color: var(--sha-primary); }
.hero-section p { color: rgba(255,255,255,.8); font-size: 1.15rem; }

/* Zoekbox */
.search-box {
  background: #fff;
  border-radius: 12px;
  padding: 28px 30px;
  margin-top: 35px;
  box-shadow: 0 10px 40px rgba(0,0,0,.2);
}
.search-box .form-label {
  font-weight: 600;
  font-size: 13px;
  color: #333;
  margin-bottom: 6px;
  text-transform: none !important;
}
.search-box .form-select,
.search-box .form-control {
  border: 1.5px solid #ddd;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 14px;
  color: #333;
  background-color: #fff;
  appearance: auto;
  -webkit-appearance: auto;
}
.search-box .form-select:focus,
.search-box .form-control:focus {
  border-color: var(--sha-primary);
  box-shadow: 0 0 0 3px rgba(232,69,44,.1);
  outline: none;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 30px 0;
}
.stats-bar h3 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--sha-primary);
  margin-bottom: 4px;
  text-transform: none !important;
}
.stats-bar p { color: #666; margin: 0; font-size: 14px; }

/* ============================================================
   WONINGKAARTEN
   ============================================================ */
.woning-card {
  border: 1px solid #eee !important;
  border-radius: 10px !important;
  overflow: hidden;
  transition: .25s;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.woning-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,.12) !important;
  transform: translateY(-3px);
}
.woning-card .card-title,
.woning-card h5,
.woning-card h6 {
  font-weight: 700 !important;
  color: #1a1a2e !important;
  text-transform: none !important;
  font-size: 1rem;
}
.woning-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #f0f2f5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.woning-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, #e8f0fe, #f0f2f5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
}

/* Status badges */
.badge-status {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: none !important;
}
.status-beschikbaar { background: #28a745; color: #fff; }
.status-verhuurd { background: #dc3545; color: #fff; }
.status-in_optie { background: #ffc107; color: #000; }
.status-gereserveerd { background: #17a2b8; color: #fff; }

.prijs-badge {
  color: var(--sha-primary);
  font-weight: 800;
  font-size: 1.1rem;
}

/* ============================================================
   SECTIE TITELS
   ============================================================ */
section h2 {
  font-weight: 800 !important;
  color: #1a1a2e !important;
  text-transform: none !important;
}

/* ============================================================
   CTA SECTIE
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--sha-primary), var(--sha-dark));
  color: #fff;
  padding: 70px 0;
}
.cta-section h2 { color: #fff !important; font-size: 2rem; }
.cta-section p { color: rgba(255,255,255,.85); font-size: 1.1rem; }
.btn-cta-white {
  background: #fff;
  color: var(--sha-primary) !important;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  transition: .2s;
  text-decoration: none;
  display: inline-block;
  text-transform: none !important;
}
.btn-cta-white:hover {
  background: #f0f0f0;
  color: var(--sha-dark) !important;
}

/* ============================================================
   HOE HET WERKT
   ============================================================ */
.stap-icoon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: var(--sha-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.stap-icoon i { color: #fff; font-size: 1.6rem; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #1a1a2e !important;
  color: #999 !important;
  padding: 60px 0 20px !important;
}
footer h5 {
  color: #fff !important;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: none !important;
}
footer a { color: #999 !important; text-decoration: none; }
footer a:hover { color: #fff !important; }
footer ul.list-unstyled li { margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 13px;
  color: #666;
}

/* ============================================================
   BREADCRUMB & PAGINA HEADERS
   ============================================================ */
.pagina-header {
  background: #f8f9fa;
  border-bottom: 1px solid #eee;
  padding: 25px 0;
}
.pagina-header h1 {
  font-weight: 800 !important;
  font-size: 1.8rem !important;
  color: #1a1a2e !important;
  text-transform: none !important;
}
.breadcrumb-item a { color: var(--sha-primary); text-decoration: none; }

/* ============================================================
   FORMULIEREN ALGEMEEN
   ============================================================ */
.form-control:focus,
.form-select:focus {
  border-color: var(--sha-primary);
  box-shadow: 0 0 0 3px rgba(232,69,44,.1);
}
.form-label { font-weight: 600; font-size: 14px; color: #333; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-sha { color: var(--sha-primary) !important; }
.bg-sha { background: var(--sha-primary) !important; }

/* Verberg scrollbar flash bij sticky nav */
body { overflow-x: hidden; }

/* ============================================================
   WHATSAPP KNOP
   ============================================================ */
.whatsapp-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: #fff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 16px rgba(37,211,102,.4);
  z-index: 9999;
  text-decoration: none;
  transition: .2s;
  animation: whatsapp-pulse 2s infinite;
}
.whatsapp-btn:hover {
  background: #1da851;
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
}
@keyframes whatsapp-pulse {
  0%,100% { box-shadow: 0 4px 16px rgba(37,211,102,.4); }
  50%      { box-shadow: 0 4px 28px rgba(37,211,102,.7); }
}

/* ============================================================
   PAGINERING
   ============================================================ */
.page-link { color: var(--sha-primary); }
.page-item.active .page-link { background: var(--sha-primary); border-color: var(--sha-primary); }
.page-link:hover { color: var(--sha-dark); }

/* ============================================================
   BEZICHTIGING KNOP
   ============================================================ */
.btn-bezichtiging {
  background: #1a1a2e;
  color: #fff;
  border: none;
  font-weight: 600;
  border-radius: 6px;
  transition: .2s;
}
.btn-bezichtiging:hover { background: #2d2d4e; color: #fff; }


/* ============================================================
   HOMEPAGE 2026 - rustig, modern en functioneel
   ============================================================ */
:root { --sha-primary:#df3d2b; --sha-dark:#b92e20; --sha-navy:#171a21; --sha-soft:#f5f6f7; --sha-border:#e7e8ea; }
body { color:#272a31; background:#fff; }
.site-logo { height:52px; width:auto; max-width:230px; object-fit:contain; }
.topbar-inner { display:flex; align-items:center; justify-content:space-between; gap:20px; }
.topbar-contact { display:flex; align-items:center; gap:22px; }
.topbar-contact a { display:inline-flex; align-items:center; gap:7px; }
.topbar-message { display:flex; align-items:center; gap:7px; color:#fff; font-weight:600; }
.topbar-message i { color:#65d27b; }
.navbar-nav .nav-link.active { color:var(--sha-primary)!important; background:rgba(223,61,43,.06); }
.hero-modern { padding:86px 0 76px; background:linear-gradient(120deg,#171a21 0%,#242936 60%,#303746 100%); }
.eyebrow,.section-label { display:inline-block; color:var(--sha-primary); font-size:.78rem; font-weight:800; letter-spacing:.09em; text-transform:uppercase; margin-bottom:12px; }
.hero-modern .eyebrow { color:#ff7c6d; }
.hero-modern h1 { max-width:760px; font-size:clamp(2.35rem,5vw,4.4rem); line-height:1.02; letter-spacing:-.04em!important; margin-bottom:20px; }
.hero-modern .hero-lead { max-width:680px; font-size:1.16rem; line-height:1.7; color:rgba(255,255,255,.78); }
.hero-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:28px; }
.btn-hero-light { background:#fff; border:1px solid #fff; color:#171a21; font-weight:700; }
.btn-hero-light:hover { background:#f2f2f2; color:#171a21; }
.hero-trust { display:flex; flex-wrap:wrap; gap:16px 24px; margin-top:24px; color:rgba(255,255,255,.72); font-size:.9rem; }
.hero-trust span { display:inline-flex; gap:7px; align-items:center; }
.hero-trust i { color:#65d27b; }
.search-box-modern { margin:0; padding:28px; box-shadow:0 18px 50px rgba(0,0,0,.28); border:1px solid rgba(255,255,255,.12); }
.search-box-title { color:#171a21; font-size:1.2rem; font-weight:800; margin-bottom:20px; }
.stats-modern { box-shadow:0 8px 30px rgba(19,22,28,.06); position:relative; z-index:2; }
.stats-modern h3 { font-size:1.8rem; }
.content-intro p,.bg-soft p,.neighborhoods-section p,.faq-section p { line-height:1.8; }
.content-intro h2,.section-heading h2,.neighborhoods-section h2,.faq-section h2 { font-size:clamp(1.8rem,3vw,2.6rem); letter-spacing:-.025em!important; }
.text-link { color:var(--sha-primary); font-weight:700; text-decoration:none; }
.text-link:hover { color:var(--sha-dark); }
.plain-highlight { background:#fff; border:1px solid var(--sha-border); border-left:5px solid var(--sha-primary); padding:30px; border-radius:10px; box-shadow:0 10px 35px rgba(20,24,31,.06); }
.plain-highlight h3 { font-size:1.35rem; font-weight:800; margin-bottom:14px; }
.check-list { list-style:none; padding:0; margin:18px 0 24px; }
.check-list li { padding:7px 0 7px 28px; position:relative; }
.check-list li:before { content:'✓'; position:absolute; left:0; color:var(--sha-primary); font-weight:900; }
.bg-soft { background:var(--sha-soft); }
.section-heading { max-width:720px; margin-bottom:34px; }
.info-card { height:100%; background:#fff; border:1px solid var(--sha-border); border-radius:10px; padding:28px; }
.info-card .info-number { display:block; color:var(--sha-primary); font-weight:900; font-size:.85rem; margin-bottom:24px; }
.info-card h3 { font-size:1.15rem; font-weight:800; }
.info-card p { margin:0; color:#656a73; line-height:1.7; }
.empty-state { border:1px solid var(--sha-border); border-radius:12px; padding:54px 24px; text-align:center; background:#fafafa; }
.empty-state>i { font-size:2.4rem; color:#b9bdc5; margin-bottom:16px; }
.empty-state h3 { font-size:1.25rem; font-weight:800; }
.prijs-badge small { font-size:.72rem; color:#777; font-weight:500; }
.note-box { background:#fff; border:1px solid var(--sha-border); border-radius:8px; padding:18px 20px; margin-top:22px; line-height:1.7; }
.two-column-list { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
.two-column-list span { display:flex; align-items:center; gap:10px; background:#fff; border:1px solid var(--sha-border); padding:13px 14px; border-radius:7px; }
.two-column-list i { color:var(--sha-primary); }
.neighborhood-grid { display:grid; grid-template-columns:repeat(5,minmax(0,1fr)); gap:10px; }
.neighborhood-grid a { display:flex; align-items:center; justify-content:space-between; gap:10px; border:1px solid var(--sha-border); border-radius:8px; padding:15px 16px; text-decoration:none; color:#272a31; font-weight:700; background:#fff; transition:.18s; }
.neighborhood-grid a:hover { border-color:var(--sha-primary); color:var(--sha-primary); transform:translateY(-2px); }
.neighborhood-grid i { font-size:.75rem; }
.cta-split { padding:62px 0; }
.cta-kicker { display:block; font-size:.78rem; letter-spacing:.09em; text-transform:uppercase; font-weight:800; color:rgba(255,255,255,.78); margin-bottom:8px; }
.cta-split h2 { margin-bottom:10px; }
.cta-split p { margin:0; }
.faq-section .accordion { border-top:1px solid var(--sha-border); }
.faq-section .accordion-item { border-bottom:1px solid var(--sha-border); }
.faq-section .accordion-button { font-weight:750; font-size:1rem; padding:20px 0; box-shadow:none!important; background:transparent!important; color:#20232a; }
.faq-section .accordion-button:not(.collapsed) { color:var(--sha-primary); }
.faq-section .accordion-body { padding:0 0 22px; color:#666b74; line-height:1.75; }
.footer-intro { font-size:14px; line-height:1.8; max-width:380px; }
.footer-contact-buttons { display:flex; flex-wrap:wrap; gap:9px; margin-top:18px; }
.footer-contact-buttons a { display:inline-flex; align-items:center; gap:7px; border:1px solid rgba(255,255,255,.15); border-radius:6px; padding:9px 12px; color:#fff!important; }
.footer-contact { font-size:14px; }
.footer-contact li { display:flex; align-items:flex-start; gap:10px; }
.footer-contact i { color:var(--sha-primary); width:16px; margin-top:3px; }
.listing-form { border-radius:12px; }
.honeypot { position:absolute!important; left:-9999px!important; width:1px!important; height:1px!important; overflow:hidden!important; }
.success-panel { background:#fff; border:1px solid var(--sha-border); border-radius:12px; padding:60px 30px; text-align:center; }
.success-panel>i { font-size:3.5rem; color:#28a745; margin-bottom:18px; }
.contact-line { display:flex; align-items:center; gap:10px; color:#272a31; text-decoration:none; padding:8px 0; font-weight:700; }
.contact-line i { color:var(--sha-primary); width:18px; }

@media (max-width:1199px) { .neighborhood-grid { grid-template-columns:repeat(3,minmax(0,1fr)); } }
@media (max-width:991px) {
  .topbar-message { display:none; }
  .navbar-collapse { padding:14px 0 4px; }
  .navbar .btn-sha-primary { margin-left:0!important; margin-top:8px; width:100%; }
  .hero-modern { padding:64px 0; }
  .search-box-modern { margin-top:4px; }
}
@media (max-width:767px) {
  .top-bar { padding:9px 0; }
  .topbar-contact { width:100%; justify-content:space-between; gap:10px; }
  .topbar-email { display:none!important; }
  .site-logo { height:44px; max-width:190px; }
  .hero-modern h1 { font-size:2.45rem; }
  .hero-actions .btn { width:100%; }
  .hero-trust { display:grid; gap:9px; }
  .search-box-modern { padding:22px; }
  .two-column-list { grid-template-columns:1fr; }
  .neighborhood-grid { grid-template-columns:1fr 1fr; }
  .cta-split { text-align:center; }
  .whatsapp-btn { width:54px; height:54px; right:18px; bottom:18px; }
}
@media (max-width:480px) { .neighborhood-grid { grid-template-columns:1fr; } }


/* ============================================================
   STABIELE FRONTEND-AFWERKING
   ============================================================ */
html { scroll-behavior:smooth; }
body {
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  font-size:16px;
  line-height:1.65;
  color:#24272d;
  background:#fff;
  -webkit-font-smoothing:antialiased;
}
a { text-underline-offset:3px; }
.container { max-width:1180px; }
.top-bar { padding:7px 0; background:#15171c; border:0; }
.navbar { min-height:76px; border-bottom:1px solid #ececee; box-shadow:0 4px 18px rgba(20,24,31,.05)!important; }
.site-logo { height:50px; width:auto; max-width:310px; }
.navbar-toggler { border:1px solid #d9dadd; box-shadow:none!important; }
.navbar-nav .nav-link { font-size:.94rem; font-weight:650; }
.hero-modern {
  padding:74px 0;
  background:#20242b;
  border-bottom:5px solid var(--sha-primary);
}
.hero-modern h1 { font-size:clamp(2.25rem,4.8vw,4rem); max-width:720px; }
.search-box-modern { border-radius:12px; box-shadow:0 22px 55px rgba(0,0,0,.22); }
.btn { border-radius:7px; }
.btn-lg { font-size:1rem; }
.stats-modern { box-shadow:none; border-bottom:1px solid #ececee; }
.stats-modern .col-6 { position:relative; }
.stats-modern .col-6:not(:last-child)::after { content:''; position:absolute; right:0; top:10%; height:80%; border-right:1px solid #ececee; }
section.py-5 { padding-top:4.5rem!important; padding-bottom:4.5rem!important; }
.info-card, .plain-highlight, .woning-card, .note-box { box-shadow:0 8px 26px rgba(20,24,31,.05); }
.info-card { border-top:3px solid var(--sha-primary); }
.neighborhood-grid a { box-shadow:0 3px 12px rgba(20,24,31,.035); }
.cta-section { background:#d93c2b; }
.whatsapp-btn { animation:none; border:3px solid #fff; }
footer { background:#16191f!important; }
footer .container { max-width:1180px; }

@media (max-width:991px) {
  .navbar { min-height:68px; }
  .navbar-collapse { border-top:1px solid #ececee; margin-top:10px; }
  .navbar-nav { gap:2px; padding-top:8px; }
  .hero-modern { padding:58px 0; }
}
@media (max-width:767px) {
  .topbar-contact a span { font-size:.78rem; }
  .site-logo { height:42px; max-width:245px; }
  section.py-5 { padding-top:3.25rem!important; padding-bottom:3.25rem!important; }
  .stats-modern .col-6:nth-child(2)::after { display:none; }
}
