/*
 * Coatmalloot Website Styles
 */

:root {
  --red: #E63946;
  --black: #000000;
  --blue: #0047AB;
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --dark-gray: #212529;

  --primary: var(--red);
  --secondary: var(--blue);
  --accent: var(--black);
  --background: var(--white);
  --text: var(--black);

  --font-primary: 'Inter', sans-serif;

  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 8rem;

  --transition-fast: 0.2s ease;
  --transition-medium: 0.4s ease;
  --transition-slow: 0.8s ease;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --closure-banner-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--closure-banner-height) + 100px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  padding-top: var(--closure-banner-height);
  font-family: var(--font-primary);
  font-weight: 300;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--background);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

/* =========================================================
   SLUITINGSBALK
   ========================================================= */

.closure-banner {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  padding: 10px 20px;
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.45;
}

.closure-banner p {
  margin: 0;
}

.closure-banner-contact {
  margin-top: 3px !important;
  font-weight: 400;
}

.closure-banner a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.closure-banner a:hover,
.closure-banner a:focus {
  color: var(--white);
  text-decoration-thickness: 2px;
}

/* =========================================================
   TYPOGRAFIE
   ========================================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-md);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
  margin-bottom: var(--spacing-md);
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: var(--spacing-md);
}

.section-title {
  position: relative;
  margin-bottom: var(--spacing-lg);
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background-color: var(--primary);
}

.section-subtitle {
  position: relative;
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  font-size: 1.5rem;
}

.section-subtitle::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

/* =========================================================
   ALGEMENE LAYOUT
   ========================================================= */

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

section {
  padding: var(--spacing-xl) 0;
}

/* =========================================================
   LOADER
   ========================================================= */

.loader {
  position: fixed;
  top: var(--closure-banner-height);
  left: 0;
  width: 100%;
  height: calc(100% - var(--closure-banner-height));
  background-color: var(--background);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition:
    opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.loader.fade-out {
  opacity: 0;
}

.loader[style*="visibility: hidden"] {
  display: none;
}

.loader-content {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
}

.logo-text {
  display: flex;
  justify-content: center;
}

.logo-text .logo-image {
  height: 200px;
  width: auto;
  opacity: 0;
  filter: blur(5px) drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
  transform: translateY(10px);
  animation: logoReveal 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) forwards;
}

@keyframes logoReveal {
  0% {
    opacity: 0;
    filter: blur(5px);
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

/* =========================================================
   HEADER HOMEPAGE
   ========================================================= */

.header {
  position: fixed;
  top: var(--closure-banner-height);
  left: 0;
  width: 100%;
  padding: var(--spacing-md) 0;
  z-index: 100;
  transition:
    background-color var(--transition-medium),
    padding var(--transition-medium),
    top var(--transition-fast);
}

.header.scrolled {
  background-color: var(--background);
  padding: var(--spacing-sm) 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-list a {
  color: var(--white);
}

.header.scrolled .nav-list a {
  color: var(--text);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: inline-block;
  position: relative;
  z-index: 10;
}

.logo-image {
  height: 75px;
  width: auto;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  transform-origin: left center;
  opacity: 0;
  transform: scale(0.8);
}

.scrolled .logo-image {
  opacity: 1;
  transform: scale(1);
}

.nav-list {
  display: flex;
  gap: var(--spacing-md);
}

.nav-link {
  position: relative;
  font-weight: 400;
  padding: var(--spacing-xs) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width var(--transition-medium);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transition:
    transform var(--transition-medium),
    opacity var(--transition-medium),
    background-color var(--transition-medium);
}

.header.scrolled .menu-toggle span {
  background-color: var(--text);
}

/* =========================================================
   HERO HOMEPAGE
   ========================================================= */

.hero {
  position: relative;
  height: calc(100vh - var(--closure-banner-height));
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-color: var(--accent);
  background-image: url('header.jpg');
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero-background::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.powder-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: float linear infinite;
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0;
  }

  25% {
    opacity: 0.5;
  }

  75% {
    opacity: 0.5;
  }

  100% {
    transform: translate(var(--float-x, 100px), -100px) scale(0);
    opacity: 0;
  }
}

.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-md);
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-logo {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: var(--spacing-md);
}

.hero-logo-image {
  height: 200px;
  width: auto;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
  opacity: 1;
}

.scrolled-down .hero-logo-image {
  opacity: 0;
  transform: scale(0.8);
}

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-md);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

/* =========================================================
   ABOUT
   ========================================================= */

.about {
  background-color: var(--light-gray);
}

.about-content {
  max-width: 800px;
}

/* =========================================================
   SERVICES
   ========================================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
}

.service-card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition:
    transform var(--transition-medium),
    box-shadow var(--transition-medium);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin-bottom: var(--spacing-md);
  border-radius: 50%;
  overflow: hidden;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
   GALLERY
   ========================================================= */

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-sm);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 3 / 4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* =========================================================
   FORMULIER
   ========================================================= */

.quote {
  background-color: var(--light-gray);
}

.quote-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: var(--spacing-md);
}

.form-group label {
  display: block;
  margin-bottom: var(--spacing-xs);
  font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--spacing-sm);
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  background-color: var(--white);
  color: var(--text);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: var(--primary);
  background-color: rgba(230, 57, 70, 0.05);
}

.file-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-sm);
  border: 1px dashed #ddd;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: border-color var(--transition-fast);
}

.file-label:hover {
  border-color: var(--primary);
}

.file-text {
  font-weight: 400;
}

input[type="file"] {
  display: none;
}

.photo-feedback {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin-top: 10px;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: var(--white);
  font-size: 0.95rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.photo-feedback.has-files {
  font-weight: 600;
}

.photo-feedback.error {
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 600;
}

.form-message {
  display: none;
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 6px;
  font-weight: 600;
  line-height: 1.5;
}

.form-message.success {
  border: 1px solid #319c54;
  background-color: rgba(49, 156, 84, 0.15);
  color: var(--text);
}

.privacy-note {
  font-size: 0.9rem;
}

.field-help {
  margin: 8px 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.82;
}

.pickup-address-fields {
  display: none;
  padding: 18px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.pickup-address-fields.is-visible {
  display: block;
}

.terms-notice {
  margin: 20px 0;
  padding: 16px 18px;
  border-left: 4px solid #111;
  background: rgba(0, 0, 0, 0.04);
  line-height: 1.6;
}

.terms-notice p {
  margin: 0;
}

.terms-notice p + p {
  margin-top: 8px;
}

.terms-notice a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =========================================================
   PRIJZEN
   ========================================================= */

.price-list-intro {
  max-width: 980px;
  margin: 0 auto 28px;
  line-height: 1.65;
}

.price-table-card {
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.price-table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.price-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  table-layout: fixed;
}

.price-table th,
.price-table td {
  padding: 15px 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  text-align: left;
  vertical-align: top;
  line-height: 1.45;
}

.price-table th {
  background: #111;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
}

.price-table tbody tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.025);
}

.price-table th:nth-child(1),
.price-table td:nth-child(1) {
  width: 34%;
}

.price-table th:nth-child(2),
.price-table td:nth-child(2) {
  width: 28%;
}

.price-table th:nth-child(3),
.price-table td:nth-child(3),
.price-table th:nth-child(4),
.price-table td:nth-child(4) {
  width: 19%;
  text-align: right;
  white-space: nowrap;
}

.price-list-note {
  max-width: 1120px;
  margin: 24px auto 0;
  padding: 18px 20px;
  border-left: 4px solid #111;
  border-radius: 0 8px 8px 0;
  background: rgba(0, 0, 0, 0.045);
  line-height: 1.65;
}

.service-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 28px auto 0;
}

.service-info-card {
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.035);
  line-height: 1.6;
}

.service-info-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.service-info-card p {
  margin: 0;
}

/* =========================================================
   CONTACT
   ========================================================= */

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-md);
}

.contact-item h3 {
  margin-bottom: var(--spacing-xs);
}

.contact-item a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =========================================================
   FOOTER
   ========================================================= */

.footer {
  background-color: #111111;
  color: #ffffff;
  padding: 2.2rem 0 1rem;
}

.footer .container {
  max-width: 1200px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
  margin: 0;
  padding: 0 0 1.75rem;
}

.footer-column h3 {
  margin: 0 0 0.9rem;
  color: #8f8f8f;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: 0;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin: 0;
  padding: 0;
}

.footer-column li {
  margin: 0;
  padding: 0;
}

.footer-column a {
  display: inline-block;
  color: #d0d0d0;
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.45;
  opacity: 0.9;
  transition:
    color var(--transition-fast),
    opacity var(--transition-fast);
}

.footer-column a:hover,
.footer-column a:focus {
  color: #ffffff;
  opacity: 1;
}

.footer-social-column {
  justify-self: start;
}

.instagram-link {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
}

.instagram-link svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  opacity: 0.8;
}

.footer-bottom {
  margin: 0;
  padding: 0.85rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #777777;
  font-size: 0.7rem;
  font-weight: 300;
}

.footer-bottom p {
  margin: 0;
}

/* =========================================================
   SEO-PAGINA'S
   ========================================================= */

.seo-page {
  padding-top: 0;
  background: #ffffff;
  color: #151515;
}

/* Header SEO */

.seo-header {
  width: 100%;
  background: #111111;
  color: #ffffff;
  border-bottom: 1px solid #292929;
}

.seo-header-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/*
 * Hier gebruiken de SEO-pagina's nu logo.png.
 * Dit is hetzelfde donkere-achtergrondlogo als op de homepage.
 */

.seo-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.seo-logo img {
  display: block;
  width: auto;
  height: 65px;
  max-width: 230px;
  object-fit: contain;
}

.seo-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.seo-nav a {
  position: relative;
  color: #dddddd;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1;
  transition: color 0.2s ease;
}

.seo-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.2s ease;
}

.seo-nav a:hover,
.seo-nav a:focus {
  color: #ffffff;
}

.seo-nav a:hover::after,
.seo-nav a:focus::after {
  width: 100%;
}

/* Hero SEO */

.seo-hero {
  padding: 3.6rem 0 3.2rem;
  background: #171717;
  color: #ffffff;
}

.seo-content {
  max-width: 820px;
}

.seo-eyebrow {
  margin: 0 0 0.65rem;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.seo-hero h1 {
  margin: 0 0 1rem;
  max-width: 850px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.seo-lead {
  margin: 0 0 0.9rem;
  max-width: 760px;
  color: #e2e2e2;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.65;
}

.seo-hero p:not(.seo-eyebrow):not(.seo-lead) {
  max-width: 760px;
  margin: 0 0 0.9rem;
  color: #bcbcbc;
  font-size: 0.92rem;
  line-height: 1.65;
}

/* Secties SEO */

.seo-section {
  padding: 2.8rem 0;
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
}

.seo-section-light {
  background: #fafafa;
}

.seo-section-dark {
  background: #222222;
  color: #ffffff;
  border-bottom: 0;
}

.seo-section h2,
.seo-cta h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.seo-section p {
  max-width: 800px;
  margin: 0 0 0.8rem;
  color: #555555;
  font-size: 0.92rem;
  line-height: 1.65;
}

.seo-section-dark h2 {
  color: #ffffff;
}

.seo-section-dark p:not(.seo-eyebrow) {
  color: #c8c8c8;
}

/* Cards SEO */

.seo-cards,
.seo-link-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.seo-cards-six {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.seo-card,
.seo-link-card {
  padding: 1.25rem;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: none;
}

.seo-card h3,
.seo-link-card h3 {
  margin: 0 0 0.45rem;
  color: #222222;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.seo-card p,
.seo-link-card p {
  margin: 0;
  color: #666666;
  font-size: 0.84rem;
  line-height: 1.55;
}

.seo-section-dark .seo-card {
  background: #2a2a2a;
  border-color: #373737;
}

.seo-section-dark .seo-card h3 {
  color: #ffffff;
}

.seo-section-dark .seo-card p {
  color: #bbbbbb;
}

/* Interne SEO-links */

.seo-link-card {
  display: block;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.seo-link-card:hover {
  transform: translateY(-2px);
  border-color: #bbbbbb;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.seo-link-card span {
  display: inline-block;
  margin-top: 0.65rem;
  color: var(--primary);
  font-size: 0.74rem;
  font-weight: 600;
}

/* SEO-buttons */

.seo-primary-button,
.seo-secondary-button {
  display: inline-block;
  margin-top: 0.65rem;
  padding: 0.72rem 1.05rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.3;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.seo-primary-button {
  background: var(--primary);
  border: 1px solid var(--primary);
  color: #ffffff;
}

.seo-primary-button:hover,
.seo-primary-button:focus {
  background: transparent;
  color: var(--primary);
}

.seo-secondary-button {
  background: transparent;
  border: 1px solid #333333;
  color: #333333;
}

.seo-secondary-button:hover,
.seo-secondary-button:focus {
  background: #222222;
  color: #ffffff;
}

.seo-button-light {
  border-color: #aaaaaa;
  color: #ffffff;
}

.seo-button-light:hover,
.seo-button-light:focus {
  background: #ffffff;
  border-color: #ffffff;
  color: #111111;
}

/* SEO CTA */

.seo-cta {
  padding: 3rem 0;
  background: #151515;
  color: #ffffff;
}

.seo-cta h2 {
  color: #ffffff;
}

.seo-cta p:not(.seo-eyebrow) {
  max-width: 760px;
  margin: 0 0 0.8rem;
  color: #bbbbbb;
  font-size: 0.92rem;
  line-height: 1.65;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 992px) {
  .contact-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr 0.7fr;
    gap: 2.5rem;
  }

  .seo-header-inner {
    min-height: 90px;
  }

  .seo-logo img {
    height: 58px;
  }

  .seo-nav {
    gap: 1.2rem;
  }
}

@media (max-width: 800px) {
  .service-info-grid {
    grid-template-columns: 1fr;
  }

  .seo-cards,
  .seo-link-cards,
  .seo-cards-six {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    z-index: 101;
  }

  .nav {
    position: fixed;
    top: var(--closure-banner-height);
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: calc(100vh - var(--closure-banner-height));
    background-color: var(--background);
    padding: var(--spacing-xl) var(--spacing-md);
    transition:
      right var(--transition-medium),
      top var(--transition-fast),
      height var(--transition-fast);
    z-index: 100;
    overflow-y: auto;
  }

  .nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-list a {
    color: var(--text);
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 1.8rem 0 0.9rem;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem 2.5rem;
    padding-bottom: 1.4rem;
  }

  .footer-social-column {
    justify-self: start;
  }

  .hero {
    min-height: 500px;
  }

  .seo-header-inner {
    min-height: auto;
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .seo-logo img {
    height: 54px;
  }

  .seo-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 0.65rem 1.1rem;
  }

  .seo-nav a {
    font-size: 0.78rem;
  }

  .seo-hero {
    padding: 2.7rem 0 2.4rem;
  }

  .seo-section {
    padding: 2.3rem 0;
  }

  .seo-cta {
    padding: 2.5rem 0;
  }
}

@media (max-width: 700px) {
  .price-table-card {
    border-radius: 8px;
  }

  .price-table th,
  .price-table td {
    padding: 13px 14px;
    font-size: 0.9rem;
  }

  .price-list-note {
    padding: 15px 16px;
  }
}

@media (max-width: 600px) {
  .closure-banner {
    padding: 9px 14px;
    font-size: 0.82rem;
  }
}

@media (max-width: 576px) {
  section {
    padding: var(--spacing-lg) 0;
  }

  .container {
    padding: 0 var(--spacing-sm);
  }

  .services-grid,
  .gallery-container {
    grid-template-columns: 1fr;
  }

  .hero-logo-image,
  .logo-text .logo-image {
    height: 150px;
  }

  .footer {
    padding: 1.6rem 0 0.85rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding-bottom: 1.25rem;
  }

  .footer-column h3 {
    margin-bottom: 0.55rem;
    font-size: 0.8rem;
  }

  .footer-column ul {
    gap: 0.25rem;
  }

  .footer-column a {
    font-size: 0.76rem;
  }

  .footer-bottom {
    padding-top: 0.75rem;
    font-size: 0.68rem;
    text-align: left;
  }

  .seo-logo img {
    height: 50px;
    max-width: 190px;
  }

  .seo-hero h1 {
    font-size: 2rem;
  }

  .seo-hero,
  .seo-section,
  .seo-cta {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .seo-card,
  .seo-link-card {
    padding: 1rem;
  }
}

/* =========================================================
   ANIMATIES
   ========================================================= */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.fade-in-delay-1 {
  animation: fadeIn 0.8s ease 0.2s forwards;
  opacity: 0;
}

.fade-in-delay-2 {
  animation: fadeIn 0.8s ease 0.4s forwards;
  opacity: 0;
}

.fade-in-delay-3 {
  animation: fadeIn 0.8s ease 0.6s forwards;
  opacity: 0;
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
  white-space: nowrap;
}