:root {
  --blue-dark:    #003249;
  --blue-mid:     #0086ad;
  --blue-light:   #00a8d6;
  --blue-pale:    #e8f6fb;
  --accent:       #f0a500;
  --white:        #ffffff;
  --text:         #1a2a35;
  --text-muted:   #56717d;
  --border:       #c8e6f0;
  --bg:           #f0f8fb;
  --shadow-sm:    0 2px 8px rgba(0,50,73,0.08);
  --shadow-md:    0 6px 28px rgba(0,50,73,0.12);
  --shadow-lg:    0 16px 56px rgba(0,50,73,0.15);
  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    22px;
  --radius-xl:    32px;
  --transition:   0.22s ease;
  --header-h:     72px;
}
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  background: var(--bg);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  display: flex;
  flex-direction: column;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-weight: 700; line-height: 1.25; color: var(--blue-dark); }
p { color: var(--text-muted); }
a { color: var(--blue-mid); text-decoration: none; transition: color var(--transition); }
a:hover, a:focus { color: var(--blue-dark); }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.skip-link {
  position: absolute;
  top: -999px; left: 1em;
  background: var(--blue-dark); color: #fff;
  padding: 0.5em 1em;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 9999; font-size: 0.9rem;
}
.skip-link:focus { top: 0; }

header {
  background: var(--blue-dark);
  height: var(--header-h);
  width: 100%;
  max-width: 100%;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(0,50,73,0.22);
}

.header-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.25em;
  padding: 0 2em;
  min-width: 0;
}

.header-logo-link { display: flex; align-items: center; flex-shrink: 0; }

.header-logo {
  height: 46px;
  width: auto;
  border-radius: var(--radius-sm);
  background: #f8f5e3;
  padding: 3px 6px;
  object-fit: contain;
}

.header-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-sm);
  color: #fff;
  width: 40px; height: 40px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
  transition: border-color var(--transition);
  flex-shrink: 0;
}
.nav-toggle:hover { border-color: rgba(255,255,255,0.8); }
.nav-toggle span {
  display: block; width: 20px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

nav {
  display: flex;
  align-items: center;
  gap: 0.15em;
  margin-left: auto;
}

nav a {
  color: rgba(255,255,255,0.78);
  font-weight: 500;
  font-size: 0.93rem;
  padding: 0.45em 1em;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
nav a:hover, nav a:focus { background: rgba(255,255,255,0.1); color: #fff; }
nav a[aria-current="page"] {
  background: var(--blue-mid);
  color: #fff;
}

.page-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue-mid) 100%);
  padding: 3.5em 2em 3em;
  text-align: center;
  color: #fff;
  width: 100%;
  margin: 0;
  flex-shrink: 0;
}
.page-hero h1 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 0.4em;
}
.page-hero p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}


main {
  flex: 1 1 auto;
  width: 100%;
  max-width: 1100px;
  min-width: 0;
  margin: 0 auto;
  padding: 3em 2em 4em;
  overflow-x: hidden;
  align-self: stretch;
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background: var(--blue-mid);
  color: #fff;
  font-weight: 600;
  font-size: 0.97rem;
  padding: 0.75em 1.8em;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(0,134,173,0.28);
  letter-spacing: 0.01em;
  text-decoration: none;
}
.btn:hover, .btn:focus {
  background: var(--blue-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,50,73,0.22);
}

.btn-outline {
  background: transparent;
  color: var(--blue-mid);
  border: 2px solid var(--blue-mid);
  box-shadow: none;
}
.btn-outline:hover, .btn-outline:focus {
  background: var(--blue-mid);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,134,173,0.2);
}

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  box-shadow: none;
  backdrop-filter: blur(4px);
}
.btn-ghost:hover, .btn-ghost:focus {
  background: rgba(255,255,255,0.22);
  color: #fff;
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}


.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-mid);
  background: var(--blue-pale);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.3em 1em;
  margin-bottom: 0.75em;
}

.section-title {
  font-size: 1.9rem;
  color: var(--blue-dark);
  margin-bottom: 0.4em;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 2em;
}


.home-hero {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #005f80 50%, var(--blue-mid) 100%);
  min-height: 72vh;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5em 2em;
  position: relative;
  overflow: hidden;
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,168,214,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(0,134,173,0.14) 0%, transparent 55%);
  pointer-events: none;
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.home-hero .badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  padding: 0.35em 1em;
  margin-bottom: 1.25em;
  backdrop-filter: blur(6px);
  letter-spacing: 0.04em;
}

.home-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  color: #fff;
  margin-bottom: 0.6em;
  line-height: 1.15;
}

.home-hero h1 span {
  color: var(--blue-light);
}

.home-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2em;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 1em;
  justify-content: center;
  flex-wrap: wrap;
}


.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  width: 100%;
  margin: 0;
  flex-shrink: 0;
}

.stats-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0 2em;
}

.stat-item {
  padding: 1.5em 1em;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--blue-mid);
  line-height: 1;
  margin-bottom: 0.2em;
}

.stat-label {
  font-size: 0.83rem;
  color: var(--text-muted);
  font-weight: 500;
}


.services-section {
  padding: 5em 2em;
  width: 100%;
  max-width: 1100px;
  min-width: 0;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  min-width: 0;
  gap: 1.5em;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2em 1.75em;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-mid), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover::after { transform: scaleX(1); }

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-mid);
}

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 0.75em;
  display: block;
}

.service-card h3 {
  font-size: 1.1rem;
  color: var(--blue-dark);
  margin-bottom: 0.4em;
}

.service-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  margin: 0;
}


.cert-section {
  background: linear-gradient(135deg, var(--blue-dark) 0%, #005475 100%);
  padding: 5em 2em;
}

.cert-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4em;
  align-items: center;
}

.cert-text .section-label { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.9); }
.cert-text .section-title { color: #fff; }
.cert-text .section-subtitle { color: rgba(255,255,255,0.72); margin-bottom: 1.75em; }

.cert-img-wrap {
  display: flex;
  justify-content: center;
}

.certificaat-img {
  max-width: 340px;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  border: 3px solid rgba(255,255,255,0.15);
  cursor: zoom-in;
  transition: transform var(--transition), box-shadow var(--transition);
}
.certificaat-img:hover {
  transform: scale(1.03) rotate(-1deg);
  box-shadow: 0 28px 72px rgba(0,0,0,0.42);
}


.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.25em;
  margin-bottom: 3em;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5em;
  display: flex;
  align-items: center;
  gap: 1.1em;
  transition: box-shadow var(--transition), transform var(--transition);
}
.info-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }

.info-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--blue-pale);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}

.info-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-mid);
  margin-bottom: 0.2em;
}

.info-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-dark);
}

.about-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5em;
  margin-bottom: 2em;
}

.about-block h2 {
  font-size: 1.5rem;
  color: var(--blue-dark);
  margin-bottom: 0.75em;
}

.about-block p {
  color: var(--text-muted);
  margin-bottom: 0.75em;
  line-height: 1.8;
}
.about-block p:last-of-type { margin-bottom: 1.5em; }


.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
  align-items: start;
  min-width: 0;
}

.contact-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5em;
}

.contact-panel h2 {
  font-size: 1.4rem;
  color: var(--blue-dark);
  margin-bottom: 0.5em;
}

.contact-panel > p {
  color: var(--text-muted);
  margin-bottom: 1.75em;
  font-size: 0.97rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1em;
  padding: 1.1em 1.25em;
  background: var(--blue-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 1em;
}
.contact-item:last-of-type { margin-bottom: 1.75em; }

.contact-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 0.1em;
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-mid);
  margin-bottom: 0.2em;
}

.contact-value {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--blue-dark);
  word-break: break-all;
}

.copy-btn {
  background: none;
  border: 1px solid var(--blue-mid);
  color: var(--blue-mid);
  border-radius: 5px;
  padding: 0.12em 0.55em;
  font-size: 0.75rem;
  cursor: pointer;
  margin-left: 0.4em;
  transition: background var(--transition), color var(--transition);
  font-family: inherit;
  vertical-align: middle;
}
.copy-btn:hover { background: var(--blue-mid); color: #fff; }

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75em;
}

.contact-actions .btn,
.contact-actions .btn-outline {
  justify-content: center;
  text-align: center;
}

.contact-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 1.25em;
  line-height: 1.6;
}


.map-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}

.map-panel iframe {
  width: 100%;
  flex: 1;
  border: none;
  min-height: 340px;
}


.reviews-summary {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  border-radius: var(--radius-lg);
  padding: 2.5em;
  text-align: center;
  margin-bottom: 2.5em;
  color: #fff;
}

.reviews-summary .big-score {
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.1em;
}

.reviews-summary .stars-large {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 0.5em;
  letter-spacing: 0.05em;
}

.reviews-summary p {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25em;
  margin-bottom: 2.5em;
  min-width: 0;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75em;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.review-card .quote-mark {
  font-size: 3.5rem;
  color: var(--border);
  font-family: Georgia, serif;
  line-height: 1;
  position: absolute;
  top: 0.5em; left: 0.75em;
  pointer-events: none;
  user-select: none;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.4em;
  margin-bottom: 0.6em;
  padding-top: 0.5em;
}

.review-author {
  font-weight: 700;
  color: var(--blue-dark);
  font-size: 0.97rem;
}

.review-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.6em;
}

.review-text {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-style: italic;
  margin: 0;
}

.review-source-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  background: var(--blue-mid);
  color: #fff;
  border-radius: 20px;
  padding: 0.18em 0.65em;
  margin-left: 0.45em;
  vertical-align: middle;
  letter-spacing: 0.04em;
}

.review-cta {
  text-align: center;
  padding: 2.5em;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.review-cta h3 {
  font-size: 1.3rem;
  color: var(--blue-dark);
  margin-bottom: 0.4em;
}

.review-cta p {
  color: var(--text-muted);
  margin-bottom: 1.5em;
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1em;
}

.gallery-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  object-fit: cover;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
  cursor: zoom-in;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  background: var(--blue-pale);
}
.gallery-thumb:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-mid);
}


.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 2000;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.modal-overlay.active { display: flex; }

.modal-img-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-img {
  max-width: 100%;
  max-height: 88vh;
  width: auto; height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.modal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  width: 50px; height: 50px;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--blue-mid);
  cursor: pointer;
  z-index: 2100;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  outline: none;
  transition: background var(--transition), transform 0.15s;
}
.modal-arrow.left  { left: 2vw; }
.modal-arrow.right { right: 2vw; }
.modal-arrow:hover {
  background: var(--blue-mid);
  color: #fff;
  transform: scale(1.1) translateY(-50%);
}

.modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: rgba(255,255,255,0.9);
  border: none; border-radius: 50%;
  width: 42px; height: 42px;
  font-size: 1.4rem;
  color: #c0392b;
  cursor: pointer;
  z-index: 2100;
  display: flex; align-items: center; justify-content: center;
  outline: none;
  transition: background var(--transition), transform 0.15s;
}
.modal-close:hover { background: #c0392b; color: #fff; transform: scale(1.1); }

.modal-counter {
  position: absolute;
  bottom: 1.25rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  pointer-events: none;
}


footer {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.65);
  text-align: center;
  padding: 2em 1em;
  font-size: 0.88rem;
  margin-top: auto;
  width: 100%;
  max-width: 100%;
  flex-shrink: 0;
}

footer a { color: rgba(255,255,255,0.5); }
footer a:hover { color: #fff; }


@media (max-width: 860px) {
  .cert-inner {
    grid-template-columns: 1fr;
    gap: 2.5em;
    text-align: center;
  }
  .cert-img-wrap { justify-content: center; }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--border); }
}
@media (min-width: 900px) {
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  /* Hamburger visible */
  .nav-toggle { display: flex; }
  nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--blue-dark);
    flex-direction: column;
    align-items: stretch;
    padding: 0.75em 1em 1em;
    gap: 0.2em;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    z-index: 199;
  }
  nav.open { display: flex; }
  nav a {
    padding: 0.75em 1em;
    border-radius: var(--radius-sm);
    font-size: 1rem;
  }
  header { position: sticky; }
  .header-inner { padding: 0 1em; gap: 0.75em; }
  .header-brand { font-size: 1.05rem; flex: 1; }
  .header-logo { height: 42px; padding: 3px 5px; }
  /* Hero */
  .home-hero { min-height: 60vh; padding: 4em 1.25em; }
  .home-hero h1 { font-size: 2rem; }
  .hero-cta-group { flex-direction: column; align-items: center; }
  /* Stats */
  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 1em;
  }
  .stat-item { padding: 1.25em 0.5em; }
  .stat-number { font-size: 1.5rem; }
  /* Services */
  .services-section { padding: 3em 1.25em; }
  .services-grid { grid-template-columns: 1fr; }
  /* Cert */
  .cert-section { padding: 3.5em 1.25em; }
  .certificaat-img { max-width: 260px; }
  /* Main padding */
  main { padding: 2em 1.25em 3em; }
  /* Page hero */
  .page-hero { padding: 2.5em 1.25em 2em; }
  .page-hero h1 { font-size: 1.75rem; }
  /* Info grid */
  .info-grid { grid-template-columns: 1fr; }
  .about-block { padding: 1.75em 1.25em; }
  /* Contact */
  .contact-panel { padding: 1.75em 1.25em; }
  .map-panel { min-height: 260px; }
  .map-panel iframe { min-height: 240px; }
  /* Reviews */
  .reviews-summary { padding: 2em 1.25em; }
  .reviews-summary .big-score { font-size: 3rem; }
  .review-cta { padding: 2em 1.25em; }
  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 0.6em; }
  /* Lightbox — swipe on mobile; arrows hidden */
  .modal-arrow { display: none !important; }
  .modal-img { max-width: 100%; max-height: 85vh; border-radius: 0; }
  /* Footer */
  footer { font-size: 0.85rem; padding: 1.75em 1em; }
}
@media (max-width: 420px) {
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none !important; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .home-hero h1 { font-size: 1.75rem; }
  .header-brand { font-size: 1.05rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}


/* =============================================
   UPDATED & NEW RULES — paste at bottom of style.css
   ============================================= */

/* ---- Header logo — larger on desktop ---- */
@media (min-width: 701px) {
  .header-logo {
    height: 54px;
    padding: 4px 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  }
  .header-logo:hover { transform: scale(1.06); box-shadow: 0 4px 16px rgba(0,0,0,0.22); }
  .header-brand {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: 0.04em;
  }
  header { height: 80px; }
  :root { --header-h: 80px; }
}

/* ---- Photo gallery (single preview + lightbox) ---- */
.gallery-section { width: 100%; }

.photo-gallery {
  max-width: 820px;
  margin: 0 auto;
}

.photo-preview {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: zoom-in;
  background: #000;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
  min-height: 220px;
}

.photo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}

.photo-preview:hover img {
  transform: scale(1.02);
}

.photo-preview-hint {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5em 1em 0.85em;
  background: linear-gradient(to top, rgba(0, 50, 73, 0.75), transparent);
  color: #fff;
  font-size: 0.88rem;
  text-align: center;
  pointer-events: none;
}

.photo-preview-count {
  position: absolute;
  top: 0.65em;
  right: 0.65em;
  background: rgba(0, 50, 73, 0.85);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25em 0.55em;
  border-radius: 20px;
  pointer-events: none;
}

.photo-gallery-source {
  display: none !important;
}

.review-photos {
  margin-top: 0.9em;
}

.review-photos .photo-preview {
  max-width: 280px;
  aspect-ratio: 4 / 3;
  min-height: 140px;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.review-photos .photo-preview:hover {
  border-color: var(--blue-mid);
  box-shadow: var(--shadow-md);
}

.review-photos .photo-preview-hint {
  font-size: 0.75rem;
  padding-top: 1.75em;
}

/* ---- REVIEWS — Google first, Werkspot second ---- */
.platform-heading {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65em;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin: 2em 0 1em;
  padding-bottom: 0.5em;
  border-bottom: 2px solid var(--border);
  max-width: 100%;
}
.platform-heading:first-of-type { margin-top: 0; }
.platform-heading > span {
  margin-left: auto;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
}

.platform-logo {
  width: 26px; height: 26px;
  border-radius: 4px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Google review card — slightly distinguished */
.review-card.google {
  border-left: 3px solid #4285F4;
}

/* Werkspot review card */
.review-card.werkspot {
  border-left: 3px solid var(--blue-mid);
}

/* ---- Index logo bigger ---- */
/* (handled inline in Index.html) */

@media (min-width: 701px) {
  .modal-arrow { display: flex !important; }
}

@media (max-width: 700px) {
  .photo-preview { min-height: 180px; border-radius: var(--radius-md); }
  .review-photos .photo-preview { max-width: 100%; }
  .platform-heading > span {
    margin-left: 0;
    width: 100%;
    text-align: right;
  }
}

@media (max-width: 420px) {
  .header-brand { font-size: 0.92rem; }
}

/* ---- Full-bleed sections (edge-to-edge, no side gap) ---- */
header,
footer,
.home-hero,
.page-hero,
.stats-bar,
.cert-section {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  flex-shrink: 0;
}

/* ---- Mobile: fill screen, no horizontal overflow ---- */
.stats-bar-inner {
  width: 100%;
  max-width: 1100px;
  min-width: 0;
}

.photo-gallery,
.gallery-section {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.photo-preview {
  max-width: 100%;
}

.contact-panel,
.map-panel,
.reviews-summary,
.review-cta,
.about-block {
  min-width: 0;
  max-width: 100%;
}

.btn,
.btn-outline,
.btn-google {
  max-width: 100%;
}

@media (min-width: 700px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  }
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }
}
