:root {
  --sq-orange: #E8510A;
  --sq-orange-dark: #C9440A;
  --sq-orange-light: #FF6B24;
  --sq-charcoal: #2A2A2A;
  --sq-dark: #1A1A1A;
  --sq-gray: #F5F5F5;
  --sq-white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--sq-charcoal);
  background: var(--sq-white);
  overflow-x: hidden;
}

/* ── Top Bar ── */
.top-bar {
  background: var(--sq-orange); color: white;
  padding: 10px 0; font-size: 0.875rem;
  font-weight: 500; text-align: center;
}
.top-bar a { color: white; text-decoration: underline; font-weight: 600; }
.top-bar a:hover { color: rgba(255,255,255,0.85); }

/* ── Navbar ── */
.navbar {
  background: var(--sq-white); padding: 0.75rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06); transition: all 0.3s ease;
}
.navbar.scrolled { padding: 0.5rem 0; box-shadow: 0 2px 30px rgba(0,0,0,0.1); }
.navbar-brand img { height: 50px; width: auto; }
.nav-link {
  font-weight: 600; font-size: 0.85rem;
  color: var(--sq-charcoal) !important;
  padding: 0.5rem 0.75rem !important;
  transition: color 0.2s; letter-spacing: -0.01em;
}
.nav-link:hover, .nav-link.active { color: var(--sq-orange) !important; }
.navbar-toggler { border: none; padding: 0.25rem 0.5rem; }
.navbar-toggler:focus { box-shadow: none; }
.btn-cta-nav {
  background: var(--sq-orange); color: white !important;
  border-radius: 50px; padding: 0.5rem 1.25rem !important;
  font-weight: 600; font-size: 0.85rem; transition: all 0.3s; border: none;
}
.btn-cta-nav:hover { background: var(--sq-orange-dark); transform: translateY(-1px); }

/* ── Language Switcher ── */
.lang-switcher {
  display: flex; align-items: center; gap: 0.25rem;
  background: var(--sq-gray); border-radius: 8px; padding: 0.2rem;
}
.lang-link {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.3rem 0.6rem; border-radius: 6px; font-size: 0.75rem;
  font-weight: 700; text-decoration: none; color: var(--sq-charcoal);
  transition: all 0.2s; letter-spacing: 0.02em;
}
.lang-link:hover { background: rgba(232,81,10,0.1); color: var(--sq-orange); }
.lang-link.active { background: var(--sq-orange); color: white; }

/* ── Hero ── */
.hero {
  position: relative; min-height: 85vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('/images/481675263_621081720694104_2448886655357402714_n.jpg') center/cover no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.5) 60%, rgba(232,81,10,0.3) 100%);
}
.hero-content {
  position: relative; z-index: 2; color: white;
  padding: 6rem 1rem 4rem;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(232,81,10,0.2); border: 1px solid rgba(232,81,10,0.4);
  color: var(--sq-orange-light); padding: 0.4rem 1rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; margin-bottom: 1.5rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900;
  line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 1.5rem;
}
.hero h1 span { color: var(--sq-orange-light); }
.hero-sub {
  font-size: 1.15rem; line-height: 1.7;
  color: rgba(255,255,255,0.85); max-width: 520px; margin-bottom: 2rem;
}

.btn-primary-sq {
  background: var(--sq-orange); color: white; border: none;
  border-radius: 50px; padding: 0.85rem 2.25rem; font-weight: 700;
  font-size: 1rem; transition: all 0.3s; display: inline-flex;
  align-items: center; gap: 0.5rem; text-decoration: none;
}
.btn-primary-sq:hover {
  background: var(--sq-orange-dark); color: white;
  transform: translateY(-2px); box-shadow: 0 8px 25px rgba(232,81,10,0.3);
}
.btn-outline-sq {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.3); border-radius: 50px;
  padding: 0.8rem 2.25rem; font-weight: 700; font-size: 1rem;
  transition: all 0.3s; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-outline-sq:hover { background: white; color: var(--sq-charcoal); border-color: white; }

/* ── Section Basics ── */
section { padding: 5rem 0; }
.section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--sq-orange); margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 800;
  line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 1rem;
}
.section-desc {
  font-size: 1.05rem; line-height: 1.75; color: #666; max-width: 600px;
}

/* ── Benefits ── */
.benefits-section { background: var(--sq-gray); }
.benefit-card {
  background: white; border-radius: 16px; padding: 2rem;
  height: 100%; transition: all 0.3s ease; border: 1px solid rgba(0,0,0,0.04);
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); }
.benefit-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--sq-orange), var(--sq-orange-light));
  border-radius: 14px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.25rem;
}
.benefit-icon svg { width: 28px; height: 28px; fill: white; }
.benefit-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.75rem; }
.benefit-card p { font-size: 0.925rem; color: #666; line-height: 1.7; margin: 0; }

/* ── Gallery ── */
.gallery-section { background: var(--sq-dark); color: white; overflow: hidden; }
.gallery-section .section-desc { color: rgba(255,255,255,0.6); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.gallery-item { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.tall { grid-row: span 2; aspect-ratio: auto; }

/* ── Pricing ── */
.pricing-section { background: white; }
.price-card {
  background: var(--sq-gray); border-radius: 16px; padding: 2rem;
  height: 100%; border: 1px solid rgba(0,0,0,0.04);
}
.price-card.featured { background: var(--sq-charcoal); color: white; }
.price-card.featured .price-card-label { color: var(--sq-orange-light); }
.price-card.featured .price-card-desc { color: rgba(255,255,255,0.6); }
.price-card-label {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--sq-orange); margin-bottom: 0.5rem;
}
.price-card h3 { font-weight: 800; font-size: 1.2rem; margin-bottom: 0.25rem; }
.price-card-desc { font-size: 0.85rem; color: #888; margin-bottom: 1.25rem; }
.price-amount { font-size: 2.5rem; font-weight: 900; line-height: 1; margin-bottom: 0.25rem; }
.price-amount small { font-size: 0.45em; font-weight: 500; opacity: 0.7; vertical-align: middle; }
.price-detail { font-size: 0.85rem; color: #888; margin-bottom: 1.25rem; }
.price-card.featured .price-detail { color: rgba(255,255,255,0.5); }
.price-features {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid rgba(0,0,0,0.08); padding-top: 1.25rem;
}
.price-card.featured .price-features { border-top-color: rgba(255,255,255,0.1); }
.price-features li {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.4rem 0; font-size: 0.875rem; color: #555;
}
.price-card.featured .price-features li { color: rgba(255,255,255,0.75); }
.price-features li svg { width: 16px; height: 16px; fill: var(--sq-orange); flex-shrink: 0; }
.price-badge-pet {
  display: inline-block; background: var(--sq-orange); color: white;
  font-size: 0.7rem; font-weight: 700; padding: 0.2rem 0.6rem;
  border-radius: 50px; text-transform: uppercase; letter-spacing: 0.05em;
}

/* ── Ozone ── */
.ozone-section { background: var(--sq-gray); }
.ozone-img-wrap { position: relative; border-radius: 20px; overflow: hidden; }
.ozone-img-wrap img { width: 100%; display: block; }
.ozone-badge {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  width: 100px; height: 100px; border-radius: 16px; overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.ozone-badge img { width: 100%; height: 100%; object-fit: cover; }
.ozone-features { list-style: none; padding: 0; margin: 1.5rem 0 0; }
.ozone-features li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.6rem 0; font-size: 0.95rem; line-height: 1.6; color: #555;
}
.ozone-features li svg {
  flex-shrink: 0; width: 22px; height: 22px; fill: var(--sq-orange); margin-top: 2px;
}

/* ── Payment ── */
.payment-section { background: white; }
.payment-method {
  background: var(--sq-gray); border-radius: 16px; padding: 2rem; height: 100%;
}
.payment-method-num {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--sq-orange); color: white; display: flex;
  align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; margin-bottom: 1rem;
}
.payment-method h3 { font-weight: 700; font-size: 1.15rem; margin-bottom: 0.75rem; }
.payment-method p { font-size: 0.925rem; color: #666; line-height: 1.7; }

.app-section {
  background: var(--sq-orange); color: white;
  position: relative; overflow: hidden;
}
.app-section::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 500px; height: 500px; background: rgba(255,255,255,0.05); border-radius: 50%;
}
.app-section::after {
  content: ''; position: absolute; bottom: -150px; left: -150px;
  width: 400px; height: 400px; background: rgba(255,255,255,0.03); border-radius: 50%;
}
.app-section .section-label { color: rgba(255,255,255,0.7); }
.app-steps { counter-reset: steps; list-style: none; padding: 0; margin: 1.5rem 0; }
.app-steps li {
  counter-increment: steps; display: flex; align-items: flex-start;
  gap: 1rem; padding: 0.75rem 0; position: relative; z-index: 1;
}
.app-steps li::before {
  content: counter(steps); width: 36px; height: 36px;
  background: rgba(255,255,255,0.2); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; flex-shrink: 0;
}
.app-steps li .step-content { font-size: 0.95rem; line-height: 1.6; }
.app-steps li .step-content strong { display: block; font-size: 1rem; margin-bottom: 0.15rem; }
.store-buttons {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.store-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.3);
  color: white; padding: 0.6rem 1.25rem; border-radius: 12px;
  text-decoration: none; font-weight: 600; font-size: 0.85rem; transition: all 0.3s;
}
.store-btn:hover { background: white; color: var(--sq-orange); border-color: white; }
.store-btn svg { width: 22px; height: 22px; fill: currentColor; }
.location-code {
  display: inline-block; background: rgba(255,255,255,0.15);
  border: 2px dashed rgba(255,255,255,0.4); padding: 0.6rem 1.25rem;
  border-radius: 12px; font-family: monospace; font-size: 1.4rem;
  font-weight: 800; letter-spacing: 0.1em; position: relative; z-index: 1;
}

/* ── Hours Banner ── */
.hours-banner {
  background: var(--sq-charcoal); color: white;
  padding: 3.5rem 0; text-align: center;
}
.hours-banner h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; margin-bottom: 0.5rem; }
.hours-banner .hours-highlight { color: var(--sq-orange-light); }
.hours-banner p { color: rgba(255,255,255,0.6); font-size: 1.05rem; }
.hours-grid {
  display: flex; justify-content: center; gap: 3rem;
  margin-top: 2rem; flex-wrap: wrap;
}
.hours-item { text-align: center; }
.hours-item .h-number { font-size: 2.75rem; font-weight: 900; color: var(--sq-orange-light); line-height: 1; }
.hours-item .h-label {
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.25rem;
}

/* ── Reviews ── */
.reviews-section { background: white; }
.review-card {
  background: var(--sq-gray); border-radius: 16px; padding: 2rem;
  height: 100%; transition: all 0.3s ease;
}
.review-card:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.review-stars { color: #FBBF24; font-size: 1.1rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.review-text {
  font-size: 0.925rem; color: #555; line-height: 1.75;
  font-style: italic; margin-bottom: 1.25rem;
}
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--sq-orange); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 0.9rem; }
.review-source { font-size: 0.75rem; color: #999; }

/* ── FAQ ── */
.faq-section { background: var(--sq-gray); }
.accordion-item {
  border: none; border-radius: 12px !important; margin-bottom: 0.75rem;
  overflow: hidden; background: white;
}
.accordion-button {
  font-weight: 600; font-size: 1rem; color: var(--sq-charcoal);
  padding: 1.25rem 1.5rem; background: white;
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) { color: var(--sq-orange); background: white; }
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E8510A'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-body {
  padding: 0 1.5rem 1.25rem; font-size: 0.95rem;
  color: #555; line-height: 1.75;
}

/* ── Contact ── */
.contact-section { background: white; }
.contact-card { background: var(--sq-gray); border-radius: 20px; padding: 2.5rem; }
.contact-card h3 { font-weight: 700; margin-bottom: 1.5rem; }
.contact-detail { display: flex; align-items: flex-start; gap: 1rem; padding: 0.85rem 0; }
.contact-detail-icon {
  width: 44px; height: 44px; background: rgba(232,81,10,0.1);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; fill: var(--sq-orange); }
.contact-detail-text { font-size: 0.95rem; line-height: 1.5; }
.contact-detail-text strong { display: block; color: var(--sq-charcoal); }
.contact-detail-text span, .contact-detail-text a { color: #666; text-decoration: none; }
.contact-detail-text a:hover { color: var(--sq-orange); }
.map-wrapper {
  border-radius: 20px; overflow: hidden; height: 100%;
  min-height: 380px; box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.map-wrapper iframe { width: 100%; height: 100%; border: 0; min-height: 380px; }

/* ── Footer ── */
footer { background: var(--sq-dark); color: rgba(255,255,255,0.5); padding: 3rem 0 2rem; }
footer a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--sq-orange-light); }
.footer-logo img { height: 45px; margin-bottom: 1rem; }
.footer-links { list-style: none; padding: 0; display: flex; gap: 1.5rem; flex-wrap: wrap; margin: 0; }
.footer-links a { font-size: 0.875rem; font-weight: 500; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 2rem; padding-top: 1.5rem; font-size: 0.8rem;
}

/* ── Legal pages ── */
.legal-page {
  max-width: 46rem;
  margin: 0 auto;
  padding: 3rem 1rem 4rem;
  line-height: 1.75;
  color: var(--sq-charcoal);
}
.legal-page h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.legal-page .legal-meta {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #eee;
}
.legal-page h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
  color: var(--sq-charcoal);
}
.legal-page h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
}
.legal-page p, .legal-page li {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.75rem;
}
.legal-page ul, .legal-page ol {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}
.legal-page a { color: var(--sq-orange); }
.legal-page a:hover { color: var(--sq-orange-dark); }
.legal-nav {
  background: var(--sq-gray);
  padding: 0.75rem 0;
  border-bottom: 1px solid #e8e8e8;
}
.legal-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.legal-nav img { height: 40px; }
.legal-nav-links { display: flex; gap: 1rem; flex-wrap: wrap; font-size: 0.875rem; }
.legal-nav-links a { color: var(--sq-charcoal); font-weight: 600; text-decoration: none; }
.legal-nav-links a:hover { color: var(--sq-orange); }

/* ── Service / klantenservice ── */
.service-page {
  max-width: 42rem;
  margin: 0 auto;
  padding: 2.5rem 1rem 4rem;
  color: var(--sq-charcoal);
}
.service-page section.service-faq,
.service-page section.service-form-panel {
  padding: 0;
}
.service-page h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.service-page .service-intro {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.service-faq {
  margin-bottom: 2.5rem;
}
.service-faq-item {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 1.25rem 1.35rem;
  margin-bottom: 1rem;
  background: #fff;
}
.service-faq-item h2 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--sq-charcoal);
  line-height: 1.35;
}
.service-faq-item p {
  font-size: 0.95rem;
  color: #555;
  margin: 0 0 0.65rem;
  line-height: 1.65;
}
.service-faq-item p:last-child { margin-bottom: 0; }
.service-form-panel {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 1.5rem 1.35rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}
.service-form-panel h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 1rem;
}
.service-form .form-label {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.35rem;
}
.service-form .form-control {
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 0.65rem 0.75rem;
}
.service-form .form-control:focus {
  border-color: var(--sq-orange);
  box-shadow: 0 0 0 0.2rem rgba(232, 81, 10, 0.15);
}
.service-form textarea.form-control { min-height: 8rem; }
.service-form .btn-submit {
  background: var(--sq-orange);
  color: #fff;
  font-weight: 700;
  border: 0;
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  width: 100%;
  font-size: 1rem;
}
.service-form .btn-submit:hover { background: var(--sq-orange-light); }
.service-form .btn-submit:disabled { opacity: 0.6; cursor: wait; }
.service-alert {
  border-radius: 8px;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 0.9rem;
}
.service-alert.ok {
  background: rgba(30, 138, 74, 0.12);
  color: #1e8a4a;
  border: 1px solid #1e8a4a;
}
.service-alert.err {
  background: rgba(255, 107, 107, 0.12);
  color: #c44;
  border: 1px solid #ff6b6b;
}
.service-recaptcha-note {
  font-size: 0.75rem;
  color: #888;
  margin-top: 0.75rem;
  line-height: 1.4;
}
.service-recaptcha-note a { color: #666; }

/* ── Responsive ── */
@media (min-width: 768px) {
  .hero-content { padding: 6rem 0 4rem; }
}
@media (max-width: 991px) {
  .hero { min-height: 75vh; }
  .hero-content { padding: 5rem 1rem 3rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 4/3; }
  section { padding: 3.5rem 0; }
}
@media (max-width: 767px) {
  .hero { min-height: 90vh; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hours-grid { gap: 2rem; }
  .btn-group-hero { flex-direction: column; }
  .btn-group-hero .btn-outline-sq, .btn-group-hero .btn-primary-sq {
    width: 100%; justify-content: center;
  }
  .contact-card { padding: 1.5rem; }
  .navbar-collapse { padding: 1rem 0; }
}
@media (max-width: 575px) {
  .top-bar { font-size: 0.78rem; padding: 8px 0.5rem; }
}
