/* ============================================================
   Deniz Schildersbedrijf — Main stylesheet
   Brand: Purple #6B3FA0 / Green #4CAF50
   Mobile-first, semantic, fast.
   ============================================================ */

:root {
  --purple:       #6B3FA0;
  --purple-dark:  #4e2d7a;
  --purple-light: #f3eeff;
  --green:        #4CAF50;
  --green-dark:   #388e3c;
  --white:        #ffffff;
  --off-white:    #f9f8fc;
  --text:         #1a1a2e;
  --text-muted:   #6b7280;
  --border:       #e5e7eb;
  --shadow:       0 2px 16px rgba(107,63,160,0.10);
  --shadow-md:    0 4px 32px rgba(107,63,160,0.14);
  --radius:       12px;
  --radius-sm:    8px;
  --transition:   0.2s ease;
  --max-width:    1200px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.05rem; }
p  { color: var(--text-muted); line-height: 1.75; }
.lead { font-size: 1.15rem; color: var(--text); }

/* ---- Utility ---- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-purple { color: var(--purple) !important; }
.text-green  { color: var(--green) !important; }
.bg-purple { background: var(--purple); }
.bg-off-white { background: var(--off-white); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.section-header { margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p  { font-size: 1.1rem; }
.section-header.text-center p { max-width: 600px; margin: 0 auto; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
}
.btn-primary:hover {
  background: var(--purple-dark);
  border-color: var(--purple-dark);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(107,63,160,0.3);
}
.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  text-decoration: none;
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--purple);
  border-color: var(--purple);
}
.btn-outline:hover {
  background: var(--purple);
  color: var(--white);
  text-decoration: none;
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  text-decoration: none;
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1.1rem; }
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.9rem; }
.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}
.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
  text-decoration: none;
}

/* ---- Navigation ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--purple);
  text-decoration: none;
  flex-shrink: 0;
}
.navbar-brand img {
  height: 44px;
  width: auto;
  border-radius: 6px;
}
.navbar-brand:hover { text-decoration: none; }
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.navbar-nav a {
  color: var(--text);
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  font-size: 0.95rem;
}
.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--purple);
  background: var(--purple-light);
  text-decoration: none;
}
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition);
}
.lang-toggle:hover {
  border-color: var(--purple);
  color: var(--purple);
  text-decoration: none;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--text);
  font-weight: 500;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.mobile-nav a:hover { color: var(--purple); background: var(--purple-light); text-decoration: none; }

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, var(--purple) 0%, #4a2880 60%, #2d1b5e 100%);
  color: var(--white);
  padding: 6rem 0 5rem;
  overflow: hidden;
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-content { z-index: 1; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}
.hero-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 500px;
}
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-stat-item { text-align: left; }
.hero-stat-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}
.hero-image {
  position: relative;
  z-index: 1;
}
.hero-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  max-height: 420px;
}

/* ---- Trust bar ---- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.trust-item svg { color: var(--green); flex-shrink: 0; }

/* ---- Services grid ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.service-card:hover {
  border-color: var(--purple);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--purple-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  flex-shrink: 0;
}
.service-card h3 { font-size: 1.1rem; color: var(--text); }
.service-card p { font-size: 0.95rem; flex: 1; }
.service-card a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--purple);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.25rem;
}
.service-card a:hover { text-decoration: none; color: var(--purple-dark); }

/* ---- CTA Banner ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; }
.cta-banner p  { color: rgba(255,255,255,0.85); margin-bottom: 2rem; font-size: 1.1rem; }
.cta-banner-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- About ---- */
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  min-height: 360px;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.about-stat {
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: var(--purple-light);
  border-radius: var(--radius-sm);
}
.about-stat-number { font-size: 1.75rem; font-weight: 800; color: var(--purple); display: block; line-height: 1; }
.about-stat-label  { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }

/* ---- Reviews ---- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.review-stars { color: #f59e0b; font-size: 1.1rem; letter-spacing: 2px; }
.review-text { font-size: 0.95rem; color: var(--text); font-style: italic; flex: 1; }
.review-author { font-weight: 700; font-size: 0.9rem; color: var(--text-muted); }
.review-location { font-size: 0.8rem; color: var(--text-muted); }

/* ---- Areas ---- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.area-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: all var(--transition);
  text-decoration: none;
  display: block;
}
.area-card:hover {
  border-color: var(--purple);
  background: var(--purple-light);
  transform: translateY(-2px);
  text-decoration: none;
}
.area-card strong { display: block; font-size: 1rem; color: var(--text); }
.area-card span   { font-size: 0.85rem; color: var(--text-muted); }

/* ---- Offerte form ---- */
.offerte-form-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.offer-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.offer-intro-card {
  background: var(--purple-light);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.form-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-section-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--purple-light);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid.cols-3 { grid-template-columns: 2fr 1fr 2fr; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}
.form-group label .req { color: var(--purple); margin-left: 2px; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(107,63,160,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.checkbox-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.6rem;
  margin-top: 0.25rem;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
}
.checkbox-item input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: var(--purple);
  cursor: pointer;
  flex-shrink: 0;
}
.checkbox-item span { font-size: 0.95rem; color: var(--text); }
.privacy-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 0.5rem;
}
.privacy-row input { flex-shrink: 0; margin-top: 3px; }
.privacy-row span { font-size: 0.9rem; color: var(--text-muted); }
.form-submit-row {
  margin-top: 1.75rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.success-box {
  background: #f0fdf4;
  border: 2px solid var(--green);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}
.success-box h2 { color: var(--green-dark); margin-bottom: 0.75rem; }
.success-box p  { color: var(--text-muted); margin-bottom: 1.5rem; }
.offerte-direct-contact {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ---- Contact page ---- */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3.5rem;
  align-items: start;
}
.contact-info-block { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item  {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--purple-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  flex-shrink: 0;
}
.contact-info-text strong { display: block; font-size: 0.85rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.contact-info-text a { color: var(--text); font-weight: 500; font-size: 1rem; }
.contact-info-text a:hover { color: var(--purple); text-decoration: none; }

/* ---- Page hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  padding: 4rem 0 3.5rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p  { color: rgba(255,255,255,0.85); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.75); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { color: rgba(255,255,255,0.4); }

/* ---- Service detail page ---- */
.service-detail-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.service-detail-content h2 { font-size: 1.5rem; margin: 2rem 0 0.75rem; color: var(--text); }
.service-detail-content p  { margin-bottom: 1rem; }
.service-detail-content ul { list-style: disc; padding-left: 1.5rem; }
.service-detail-content ul li { color: var(--text-muted); margin-bottom: 0.5rem; }
.service-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.sidebar-card {
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.sidebar-card h4 { margin-bottom: 0.75rem; color: var(--text); }
.sidebar-cta {
  background: var(--purple);
  color: var(--white);
  text-align: center;
}
.sidebar-cta h4 { color: var(--white); margin-bottom: 0.5rem; }
.sidebar-cta p  { color: rgba(255,255,255,0.85); font-size: 0.9rem; margin-bottom: 1rem; }
.sidebar-areas { display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-areas a {
  color: var(--text);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-areas a:hover { color: var(--purple); text-decoration: none; }

/* ---- Blog ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}
.blog-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; background: var(--off-white); }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; gap: 0.5rem; }
.blog-card-date { font-size: 0.8rem; color: var(--text-muted); }
.blog-card h3 { font-size: 1.1rem; color: var(--text); line-height: 1.4; }
.blog-card p   { font-size: 0.9rem; flex: 1; }
.blog-card a.read-more { font-size: 0.9rem; font-weight: 600; color: var(--purple); margin-top: 0.5rem; display: inline-flex; align-items: center; gap: 0.3rem; }
.blog-post-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}
.projects-filter {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  justify-content: center;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

/* ---- Footer ---- */
footer {
  background: #1a1a2e;
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-brand img { height: 48px; width: auto; border-radius: 6px; }
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); text-decoration: none; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}
.footer-contact-item a { color: rgba(255,255,255,0.6); }
.footer-contact-item a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ---- Alert / flash ---- */
.alert {
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.alert-success { background: #f0fdf4; border: 1.5px solid var(--green); color: #166534; }
.alert-error   { background: #fef2f2; border: 1.5px solid #f87171; color: #991b1b; }

/* ---- Toast ---- */
.site-toast {
  position: fixed;
  top: 1rem;
  left: 50%;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: min(92vw, 340px);
  max-width: min(92vw, 420px);
  padding: 0.95rem 1.1rem;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.16);
  backdrop-filter: blur(10px);
  transform: translate(-50%, -18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease, transform 0.24s ease;
}
.site-toast strong {
  font-size: 0.95rem;
  line-height: 1.2;
}
.site-toast span {
  font-size: 0.88rem;
  line-height: 1.35;
}
.site-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
.site-toast-success {
  color: #14532d;
  background: rgba(240, 253, 244, 0.96);
  border: 1px solid rgba(34, 197, 94, 0.28);
}

/* ---- 404 ---- */
.not-found {
  text-align: center;
  padding: 8rem 1rem;
}
.not-found h1 { font-size: 6rem; color: var(--purple); line-height: 1; }
.not-found h2 { margin-bottom: 1rem; }
.not-found p  { margin-bottom: 2rem; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .about-image { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .blog-post-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 1rem; }
  .navbar-inner {
    height: auto;
    min-height: 68px;
    padding: 0.75rem 0;
    align-items: flex-start;
  }
  .navbar-actions { margin-left: auto; }
  .navbar-brand {
    max-width: calc(100% - 110px);
    align-items: flex-start;
  }
  .navbar-brand span {
    font-size: 0.95rem;
    line-height: 1.2;
  }
  .navbar-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { padding: 0.75rem 1rem 1rem; }
  .contact-inner { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid.cols-3 { grid-template-columns: 1fr; }
  .offer-intro-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .section { padding: 3.5rem 0; }
  .hero { padding: 3.5rem 0 3rem; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .hero-stats { gap: 1rem; }
  .cta-banner-buttons { flex-direction: column; align-items: center; }
  .trust-bar-inner { gap: 1.25rem; }
  .trust-item { font-size: 0.82rem; }
  .projects-filter { justify-content: stretch; }
  .projects-filter .btn { width: 100%; justify-content: center; }
  .breadcrumb { flex-wrap: wrap; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .navbar-actions { gap: 0.5rem; }
  .navbar-actions .btn { display: none; }
  .lang-toggle { padding: 0.35rem 0.65rem; font-size: 0.8rem; }
  .checkbox-group { grid-template-columns: 1fr; }
  .form-card { padding: 1.5rem; }
  .hero { padding: 3rem 0 2.5rem; }
  .hero-badge { font-size: 0.8rem; }
  .hero h1 { font-size: 1.8rem; }
  .hero-subtitle { font-size: 1rem; }
  .page-hero { padding: 3rem 0 2.5rem; }
  .offerte-direct-contact { font-size: 0.9rem; }
}

/* ---- Image placeholders (when actual photos are missing) ---- */
.hero-image img,
.about-image img {
  background: var(--purple-light);
}
/* If img fails to load, the container still has minimum height */
.hero-image {
  min-height: 300px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius);
}
.about-image {
  min-height: 360px;
  background: var(--purple-light);
  border-radius: var(--radius);
}

/* ---- Upload area ---- */
#uploadArea:hover {
  border-color: var(--purple);
  background: var(--purple-light);
}

/* ---- Navbar logo override (prevent distortion) ---- */
.navbar-brand img {
  height: 44px !important;
  width: auto !important;
  object-fit: contain;
}
