/* ============================================================
   PAGE-SPECIFIC STYLES
   ============================================================ */

/* --- HOMEPAGE HERO --- */
.hero {
  background: var(--off-white);
  padding: 80px 0 96px;
  position: relative;
  overflow: hidden;
}

/* Geometric accent shape */
.hero::before {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -80px;
  width: 520px;
  height: 520px;
  background: var(--teal-light);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  opacity: 0.55;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: -30px;
  right: 140px;
  width: 180px;
  height: 180px;
  border: 2px solid var(--teal-muted);
  border-radius: 50%;
  opacity: 0.4;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.hero-content { position: relative; }

.hero-eyebrow {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-primary);
  margin-bottom: 16px;
}

.hero h1 {
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-body);
  margin-bottom: 36px;
  max-width: 460px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--teal-muted), 16px 16px 40px rgba(0,164,174,0.15);
}

/* rotating words ticker */
.hero-ticker {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-ticker-label {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.ticker-words {
  display: inline;
}

.ticker-word {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--teal-primary);
  font-weight: 600;
}

/* --- SERVICES SECTION --- */
.services-section { background: var(--white); }

/* --- WHY US SECTION --- */
.why-us-section { background: var(--off-white); }

.why-us-section .section-label { margin-bottom: 6px; }

/* --- TARIEVEN PAGE --- */
.tarieven-download-block {
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 24px;
}

.tarieven-download-block .dl-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.tarieven-download-block h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.tarieven-download-block p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.tarieven-section { margin-bottom: 48px; }

.tarieven-section h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--teal-light);
}

/* --- INFORMATIE PAGE --- */
.informatie-intro {
  font-size: 1rem;
  color: var(--text-body);
  max-width: 680px;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* --- OVER ONS PAGE --- */
.over-ons-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.over-ons-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.over-ons-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.over-ons-text p {
  margin-bottom: 16px;
  font-size: 1rem;
}

/* --- CONTACT PAGE --- */
.contact-hours-section {
  margin-top: 32px;
}

.contact-hours-section h3 {
  font-size: 1rem;
  margin-bottom: 16px;
  color: var(--text-dark);
  font-family: var(--font-ui);
  font-weight: 600;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.contact-details h3 {
  font-size: 1rem;
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.contact-detail-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.ci-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--teal-light);
  border-radius: 8px;
  margin-top: 1px;
}

.ci-icon svg { display: block; }

.contact-detail-item .ci-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-detail-item a {
  color: var(--teal-primary);
}

.contact-detail-item a:hover {
  text-decoration: underline;
}

.avg-badge-contact {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.avg-badge-contact img { width: 56px; height: 56px; }

.avg-badge-contact p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Responsive pages --- */
@media (max-width: 768px) {
  .hero { padding: 48px 0 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-image img { aspect-ratio: 16/9; }

  .over-ons-intro { grid-template-columns: 1fr; }
  .over-ons-image { display: none; }

  .tarieven-download-block { flex-direction: column; align-items: flex-start; }
}
