/* ==============================
   Speedy Care Solutions - style.css
   ============================== */

:root {
  --navy: #082f5f;
  --navy-dark: #031f42;
  --teal: #19a7a8;
  --teal-dark: #0f8f91;
  --teal-soft: #e8f7f7;
  --cream: #fffaf2;
  --beige: #f5efe6;
  --white: #ffffff;
  --text: #17324d;
  --muted: #65768a;
  --border: rgba(8, 47, 95, 0.12);
  --shadow: 0 16px 45px rgba(8, 47, 95, 0.12);
  --soft-shadow: 0 10px 28px rgba(8, 47, 95, 0.08);
  --radius: 22px;
}

/* BASIS */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* TOPBAR */
.topbar {
  background: var(--navy-dark);
  color: var(--white);
  font-size: 14px;
  padding: 9px 0;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(8, 47, 95, 0.08);
}

.nav-wrapper {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.logo {
  display: flex;
  align-items: center;
  min-width: 210px;
}

.logo img {
  max-height: 62px;
  width: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--teal);
  transition: 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-btn {
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  padding: 11px 14px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
  transition: 0.25s ease;
  font-size: 15px;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(8, 47, 95, 0.22);
}

.btn-primary:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: var(--white);
  color: var(--navy);
  border: 1px solid rgba(25, 167, 168, 0.45);
}

.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal-dark);
  transform: translateY(-2px);
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(25, 167, 168, 0.12), transparent 35%),
    linear-gradient(135deg, #ffffff 0%, #fbf7ef 52%, #edf9f9 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -52px;
  height: 110px;
  background: var(--cream);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 1;
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 46px;
  padding: 70px 0 90px;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 18px;
}

.label::before {
  content: "♡";
  font-size: 20px;
}

.hero-text h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.08;
  color: var(--navy-dark);
  letter-spacing: -1.5px;
  margin-bottom: 22px;
  max-width: 620px;
}

.hero-text h1::after {
  content: "";
  display: block;
  width: 170px;
  height: 3px;
  background: var(--teal);
  margin-top: 20px;
  border-radius: 999px;
}

.hero-text p {
  color: var(--text);
  font-size: 18px;
  max-width: 590px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-points {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--navy);
  font-weight: 800;
  font-size: 14px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-points span::before {
  content: "✓";
  color: var(--teal);
  font-weight: 900;
}

.hero-image {
  position: relative;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 430px;
  background: var(--beige);
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.08), rgba(8,47,95,0.08));
  pointer-events: none;
}

/* ALGEMENE SECTIES */
section {
  padding: 82px 0;
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 42px;
}

.section-title h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy-dark);
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.12;
  margin-bottom: 10px;
}

.section-title h2::after {
  content: "♡";
  display: block;
  color: var(--teal);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 22px;
  line-height: 1;
  margin-top: 10px;
}

.section-title p {
  color: var(--muted);
  font-size: 18px;
}

/* DIENSTEN */
.services {
  background: var(--cream);
  padding-top: 60px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--soft-shadow);
  border: 1px solid rgba(8, 47, 95, 0.07);
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: var(--teal-soft);
  color: var(--teal);
  display: grid;
  place-items: center;
  font-size: 30px;
  margin-bottom: 22px;
}

.service-card h3 {
  color: var(--navy-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 18px;
}

.service-card a {
  color: var(--teal-dark);
  font-weight: 900;
}

.service-card a::after {
  content: " →";
}

/* WAAROM KIEZEN */
.why-us {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 70px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.why-item {
  text-align: center;
  padding: 18px 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.why-item:last-child {
  border-right: 0;
}

.why-icon {
  font-size: 52px;
  line-height: 1;
  margin-bottom: 18px;
  color: var(--white);
}

.why-item h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--white);
  font-size: 22px;
  margin-bottom: 10px;
}

.why-item p {
  color: rgba(255, 255, 255, 0.82);
}

/* VOOR WIE */
.target {
  background: var(--white);
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.target-grid div {
  background: var(--cream);
  border: 1px solid rgba(25, 167, 168, 0.18);
  border-radius: 20px;
  padding: 22px;
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(8, 47, 95, 0.06);
}

/* PGB BLOK */
.pgb-preview {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
}

.pgb-preview-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.pgb-text h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--white);
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.12;
  margin-bottom: 18px;
}

.pgb-text p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  margin-bottom: 18px;
}

.pgb-preview .label {
  color: var(--teal);
}

.pgb-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

.pgb-box h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--white);
  font-size: 28px;
  margin-bottom: 18px;
}

.pgb-box ul {
  list-style: none;
}

.pgb-box li {
  color: rgba(255, 255, 255, 0.86);
  padding: 14px 0 14px 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
}

.pgb-box li:last-child {
  border-bottom: 0;
}

.pgb-box li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 14px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  font-size: 13px;
  display: grid;
  place-items: center;
  font-weight: 900;
}

/* WERKWIJZE */
.steps {
  background: linear-gradient(135deg, #ffffff, var(--beige));
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--soft-shadow);
  border: 1px solid rgba(8, 47, 95, 0.07);
}

.step-card span {
  position: absolute;
  top: 10px;
  right: 20px;
  color: rgba(25, 167, 168, 0.15);
  font-size: 68px;
  line-height: 1;
  font-weight: 900;
}

.step-card h3 {
  position: relative;
  color: var(--navy-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  margin-bottom: 12px;
  max-width: 250px;
}

.step-card p {
  position: relative;
  color: var(--muted);
}

/* CONTACT PREVIEW */
.contact-preview {
  background:
    radial-gradient(circle at left bottom, rgba(25, 167, 168, 0.11), transparent 36%),
    var(--cream);
}

.contact-preview-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.contact-text,
.contact-form {
  background: var(--white);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.contact-text h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy-dark);
  font-size: clamp(30px, 3.5vw, 42px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.contact-text p {
  color: var(--muted);
  margin-bottom: 22px;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.contact-details p {
  margin: 0;
  color: var(--navy);
  font-weight: 800;
}

.contact-form h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy-dark);
  font-size: 28px;
  margin-bottom: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(8, 47, 95, 0.14);
  background: #fbfdff;
  color: var(--text);
  border-radius: 15px;
  padding: 15px 16px;
  margin-bottom: 14px;
  font: inherit;
  outline: none;
}

.contact-form textarea {
  min-height: 135px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(25, 167, 168, 0.12);
}

/* FOOTER */
.footer {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 58px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1fr;
  gap: 38px;
  margin-bottom: 34px;
}

.footer-brand img {
  max-width: 220px;
  margin-bottom: 16px;
  background: white;
  padding: 10px 14px;
  border-radius: 18px;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.78);
}

.footer h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 16px;
}

.footer a {
  display: block;
  margin-bottom: 9px;
  transition: 0.2s ease;
}

.footer a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom a {
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-item:nth-child(2) {
    border-right: 0;
  }

  .why-item:nth-child(1),
  .why-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .steps-grid,
  .target-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 850px) {
  .topbar {
    display: none;
  }

  .hero-grid,
  .contact-preview-grid,
  .pgb-preview-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding: 48px 0 76px;
  }

  .hero-image {
    min-height: 340px;
  }

  .hero-image img {
    min-height: 340px;
  }

  .header-actions .btn {
    display: none;
  }

  .logo img {
    max-height: 54px;
  }

  .contact-details {
    grid-template-columns: 1fr;
  }

  .pgb-box {
    padding: 26px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav-wrapper {
    min-height: 74px;
  }

  .language-btn {
    padding: 9px 11px;
    font-size: 13px;
  }

  .hero-text h1 {
    font-size: 38px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  section {
    padding: 58px 0;
  }

  .service-grid,
  .why-grid,
  .target-grid,
  .steps-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .why-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .why-item:last-child {
    border-bottom: 0;
  }

  .contact-text,
  .contact-form {
    padding: 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}