/* ══════════════════════════════════════════════════════════════
   PAGES.CSS — Gedeelde stijlen voor services.html & over-ons.html
   Cyprus Vastgoed — Premium Page Styles
   ══════════════════════════════════════════════════════════════ */

/* ── HEADER: expliciet fixed op subpagina's ── */
header {
  position: fixed;
  top: 0; left: 0; right: 0;
}

/* ── BODY OFFSET (voor vaste header) ── */
body { padding-top: var(--header-h); }

/* ══════════════════════════════════════════════════════════════
   PAGE HERO — Gedeeld door beide pagina's
   ══════════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, #0d3558 0%, #1565A8 100%);
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.page-hero:hover .page-hero-bg img {
  transform: scale(1.0);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(8, 29, 64, 0.90) 0%, rgba(10, 61, 107, 0.72) 55%, rgba(21, 101, 168, 0.45) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 10;
  max-width: 1220px;
  margin: 0 auto;
  padding: 40px 5% 60px;
  width: 100%;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}

.page-hero-breadcrumb a {
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.page-hero-breadcrumb a:hover { color: #f5d89a; }

.page-hero-breadcrumb span { opacity: 0.4; }

.page-hero .section-label {
  color: #f5d89a;
  margin-bottom: 18px;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 22px;
  max-width: 720px;
}

.page-hero h1 em {
  font-style: italic;
  color: #f5d89a;
}

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.78;
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 300;
}

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

.page-hero-actions .btn-primary {
  background: var(--gold);
  font-size: 0.95rem;
  padding: 16px 34px;
}

.page-hero-actions .btn-primary:hover {
  background: #b5832e;
}

.page-hero-actions .btn-outline {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
  font-size: 0.95rem;
  padding: 15px 34px;
  background: transparent;
}

.page-hero-actions .btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.85);
  color: #fff;
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════════
   STAT STRIP — Services pagina
   ══════════════════════════════════════════════════════════════ */
.stat-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.stat-strip-inner {
  display: flex;
  align-items: stretch;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid var(--border);
  transition: background 0.25s ease;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: var(--sand);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 7px;
}

.stat-label {
  font-size: 0.73rem;
  color: var(--mid);
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════════════════════════
   PROCESS SECTION — Services pagina
   ══════════════════════════════════════════════════════════════ */
.process-section {
  background: var(--sand);
  padding: 88px 0;
}

.process-header {
  max-width: 640px;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  margin-top: 60px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 5%;
  right: 5%;
  height: 1.5px;
  background: linear-gradient(to right, var(--blue) 0%, var(--gold) 50%, var(--blue) 100%);
  opacity: 0.18;
  z-index: 0;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.process-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 2px solid var(--blue);
  box-shadow: 0 4px 16px rgba(10,61,107,0.10);
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover .process-step-num {
  background: var(--blue);
  color: #fff;
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(10,61,107,0.22);
}

.process-step h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--blue);
  margin-bottom: 10px;
  line-height: 1.2;
  font-weight: 600;
}

.process-step p {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.65;
}

.process-step-text {
  flex: 1;
  min-width: 0;
}

/* ══════════════════════════════════════════════════════════════
   SERVICES SECTION — Verbeterde service-cards stijlen
   ══════════════════════════════════════════════════════════════ */

/* Verborgen section-label in de services sectie op de standalone pagina */
.services .section-header-services {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Extra bottom-padding op de services sectie */
.services.standalone {
  padding-bottom: 88px;
}

/* Verbeterde service-card voor standalone pagina */
.services .service-card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
}

/* ══════════════════════════════════════════════════════════════
   MISSION SECTION — Over Ons pagina
   ══════════════════════════════════════════════════════════════ */
.mission-section {
  background: var(--sand);
  padding: 88px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mission-section::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  font-size: 20rem;
  color: rgba(10,61,107,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.mission-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.mission-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #f5d89a;
  display: block;
  margin-bottom: 28px;
}

.mission-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.5vw, 2.8rem);
  color: var(--blue);
  font-weight: 400;
  font-style: italic;
  line-height: 1.42;
  margin-bottom: 32px;
}

.mission-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 28px;
  border-radius: 2px;
}

.mission-sub {
  font-size: 0.98rem;
  color: var(--mid);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════════
   TEAM PREMIUM — Over Ons pagina
   ══════════════════════════════════════════════════════════════ */
.team-premium {
  background: var(--white);
}

.team-premium .team-grid {
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 780px;
  margin: 56px auto 0;
}

.team-premium .team-card--solo {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 44px;
}

.team-premium .team-card--solo .team-photo-wrap {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  margin-bottom: 0;
}

.team-premium .team-card-body {
  flex: 1;
  min-width: 0;
}

@media (max-width: 600px) {
  .team-premium .team-card--solo {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .team-premium .team-card--solo .team-photo-wrap {
    margin-bottom: 20px;
  }

  .team-premium .team-contact {
    justify-content: center;
  }
}

.team-premium .team-card {
  padding: 52px 44px;
  border-radius: 20px;
  border: 1px solid rgba(10,61,107,0.06);
  box-shadow: 0 6px 36px rgba(10,61,107,0.08);
  position: relative;
  overflow: hidden;
}

.team-premium .team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--gold) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.team-premium .team-card:hover::before {
  opacity: 1;
}

.team-premium .team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 56px rgba(10,61,107,0.13);
}

.team-premium .team-photo-wrap {
  width: 130px;
  height: 130px;
  margin-bottom: 28px;
  border-width: 3px;
}

.team-premium .team-photo-wrap--founder {
  box-shadow: 0 4px 24px rgba(200,150,62,0.28);
}

.team-premium .team-name {
  font-size: 1.45rem;
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 5px;
}

.team-premium .team-role {
  margin-bottom: 18px;
}

.team-premium .team-bio {
  font-size: 0.92rem;
  line-height: 1.8;
}

.team-premium .team-contact {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
}

.team-premium .team-contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  padding: 8px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.team-premium .team-contact a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}

/* Whatsapp-knop speciaal gekleurd */
.team-premium .team-contact a:last-child {
  background: var(--gold-light);
  border-color: rgba(200,150,62,0.25);
  color: var(--gold);
}

.team-premium .team-contact a:last-child:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}


/* ══════════════════════════════════════════════════════════════
   TRUST PILLARS — Over Ons pagina
   ══════════════════════════════════════════════════════════════ */
.trust-pillars-section {
  background: var(--sand);
  padding: 88px 0;
}

.trust-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.trust-pillar {
  background: var(--white);
  border-radius: 18px;
  padding: 40px 28px;
  text-align: center;
  border: 1px solid rgba(10,61,107,0.07);
  transition: transform 0.32s ease, box-shadow 0.32s ease, border-color 0.32s ease;
  position: relative;
  overflow: hidden;
}

.trust-pillar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--gold) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
}

.trust-pillar:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(10,61,107,0.10);
  border-color: rgba(10,61,107,0.12);
}

.trust-pillar:hover::after {
  transform: scaleX(1);
}

.trust-pillar-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.trust-pillar:hover .trust-pillar-icon {
  background: var(--gold-light);
  transform: scale(1.08);
}

.trust-pillar-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}

.trust-pillar:hover .trust-pillar-icon svg {
  stroke: var(--gold);
}

.trust-pillar h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--blue);
  margin-bottom: 12px;
  line-height: 1.2;
  font-weight: 600;
}

.trust-pillar p {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.68;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER — Consistent met project-detail.html
   ══════════════════════════════════════════════════════════════ */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.55);
  padding: 40px 0 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
}

.footer-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
}

.footer-logo-text span { color: #f5d89a; }

.footer-tagline-simple {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 340px;
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 24px 0;
}

.footer-bottom-simple {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

.footer-bottom-simple a {
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

.footer-bottom-simple a:hover { color: #fff; }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media(max-width: 960px) {
  .trust-pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .team-premium .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .team-premium .team-card { padding: 40px 32px; }
}

@media(max-width: 768px) {
  body { padding-top: var(--header-h-mob); }
  .header-cta .btn-primary { display: none; }

  .page-hero { min-height: 480px; }
  .page-hero-content { padding: 32px 5% 48px; }
  .page-hero h1 { font-size: 2.1rem; }
  .page-hero p { font-size: 0.95rem; margin-bottom: 28px; }
  .page-hero-actions { flex-direction: column; }
  .page-hero-actions .btn-primary,
  .page-hero-actions .btn-outline { width: 100%; justify-content: center; }

  .stat-strip-inner { flex-direction: column; }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .stat-item:last-child { border-bottom: none; }
  .stat-number { font-size: 1.6rem; }

  .process-section { padding: 56px 0; }
  .process-steps { flex-direction: column; gap: 32px; align-items: flex-start; }
  .process-steps::before { display: none; }
  .process-step {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 20px;
    padding: 0;
  }
  .process-step-num { margin-bottom: 0; flex-shrink: 0; }
  .process-step-text { flex: 1; }

  .mission-section { padding: 56px 0; }
  .mission-quote { font-size: 1.55rem; }

  .team-premium .team-grid { grid-template-columns: 1fr; }
  .team-premium .team-card { padding: 36px 28px; }
  .team-premium .team-photo-wrap { width: 110px; height: 110px; }
  .team-premium .team-contact { flex-direction: column; }

  .trust-pillars-section { padding: 56px 0; }
  .trust-pillars-grid { grid-template-columns: 1fr; gap: 16px; }
  .trust-pillar { padding: 32px 24px; }
}
