/* =========================
   Vintage Retro CSS – Uxoririnde Dokumentenservice
   ========================= */

/* === RESET & NORMALIZE === */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }
body { line-height: 1.6; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
table { border-collapse: collapse; width: 100%; }
th, td { padding: 8px 12px; }
input, button, textarea, select { font: inherit; }
button { background: none; border: none; padding: 0; cursor: pointer; }

/* === VINTAGE RETRO BRAND PALETTE & FONTS === */
:root {
  --color-primary: #174058;    /* Navy/Teal – retro dark */
  --color-secondary: #B1C4D6; /* Muted blue-grey – retro faded */
  --color-accent: #F6FAFB;    /* Pale paper-like accent */
  --color-cream: #F5EDD4;     /* Cream, for warmth */
  --color-ochre: #E2A743;     /* Ochre, retro highlight */
  --color-brown: #6E4A2A;     /* Typic brown retro */
  --color-red: #BC4749;       /* Muted deep red accent */
  --color-green: #A5C882;     /* Retro faded green */
  --color-bg-body: #F5EDD4;
  --color-bg-card: #FFF9EA;
  --color-bg-section: #F6FAFB;
  --color-pattern: #e9dccb;
  --color-shadow: rgba(55,38,21,0.09);
  --color-text-dark: #24221D;
  --color-text-heading: #6E4A2A;
  --color-border: #DCCFB2;
  --color-link: #174058;
  --font-display: 'Montserrat', 'Arial Rounded MT Bold', 'Arial', sans-serif;
  --font-body: 'Roboto', 'Century Gothic', 'Arial', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500&display=swap');

body {
  background: var(--color-bg-body);
  color: var(--color-text-dark);
  font-family: var(--font-body);
  font-size: 16px;
  min-height: 100vh;
  word-break: break-word;
  position: relative;
}

/* === LAYOUT CONTAINERS === */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-section);
  border-radius: 20px;
  box-shadow: 0 4px 24px var(--color-shadow), 0 1.5px 0 var(--color-pattern) inset;
  position: relative;
  /* retro repeat pattern */
  z-index: 1;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.card-container { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 24px;
}

.card {
  background: var(--color-bg-card);
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 32px var(--color-shadow);
  position: relative;
  border: 1.5px solid var(--color-border);
  padding: 24px;
  min-width: 260px;
  flex: 1 1 260px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: #fffefb;
  border-radius: 16px;
  padding: 24px 32px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px var(--color-shadow);
  border: 1px solid var(--color-border);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-text-heading);
  letter-spacing: 0.02em;
  font-weight: 700;
  text-shadow: 0.5px 1.5px var(--color-pattern);
  margin-bottom: 12px;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.18;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 600;
}
.button, .cta-btn {
  font-family: var(--font-display);
  font-size: 1.13rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-transform: uppercase;
}

p, ul, ol, li, span, table, th, td {
  font-family: var(--font-body);
  color: var(--color-text-dark);
}

strong {
  font-weight: 700;
  letter-spacing: 0.01em;
}

ul {
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 8px;
  padding-left: 32px;
  position: relative;
  font-size: 1rem;
  min-height: 28px;
}
ul li img {
  width: 22px;
  height: 22px;
  position: absolute;
  left: 0;
  top: 2px;
}

ol {
  margin-left: 20px;
}

a {
  transition: color 0.2s;
  color: var(--color-link);
}
a:hover, a:focus {
  color: var(--color-ochre);
  outline: none;
}

/* === HEADER & NAVBAR === */
header {
  background: var(--color-primary);
  padding: 0 0 0 0;
  box-shadow: 0 4px 28px var(--color-shadow);
  position: sticky;
  top: 0;
  z-index: 101;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px 12px 16px;
  max-width: 1200px;
}

header img {
  height: 56px;
  width: auto;
  margin-right: 16px;
  filter: contrast(1.1) sepia(0.03);
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: var(--color-cream);
  font-family: var(--font-display);
  font-size: 1.01rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 8px;
  border-radius: 8px;
  transition: background 0.16s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-ochre);
  color: var(--color-primary);
}

.cta-btn {
  background: var(--color-ochre);
  color: var(--color-brown);
  border-radius: 24px;
  padding: 10px 32px;
  border: 2px solid var(--color-brown);
  box-shadow: 0 2px 4px var(--color-shadow);
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.17s;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-brown);
  color: var(--color-ochre);
  box-shadow: 0 6px 32px var(--color-shadow);
}

/* ========== MOBILE NAVIGATION ========== */
.mobile-menu-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 200;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: var(--color-ochre);
  font-size: 2.1rem;
  border-radius: 50%;
  box-shadow: 0 2px 17px var(--color-shadow);
  border: 2px solid var(--color-secondary);
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--color-ochre);
  color: var(--color-brown);
  outline: none;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--color-primary);
  color: var(--color-cream);
  z-index: 250;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 22px;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.77,.01,.38,1.09);
  box-shadow: 8px 0 38px var(--color-shadow);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 12px 28px 0 0;
  background: var(--color-ochre);
  color: var(--color-brown);
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  transition: background 0.16s, color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-brown);
  color: var(--color-ochre);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 8px;
  padding: 36px 42px 0 36px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-cream);
  padding: 15px 0;
  width: 100%;
  text-align: left;
  border-radius: 8px;
  transition: background 0.13s, color 0.13s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-ochre);
  color: var(--color-brown);
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 16px;
  }
  .cta-btn {
    padding: 9px 16px;
  }
}

@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    gap: 10px;
  }
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 800px) {
  .main-nav, .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle { display: flex; }
  .container { padding: 0 8px; }
}

/* === HERO AND SECTION === */
section {
  background: var(--color-bg-section);
  border-radius: 20px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 4px 28px var(--color-shadow);
  position: relative;
}
section .container {
  padding-top: 0;
  padding-bottom: 0;
}

/* Subtle retro background pattern: diagonal lines using a pseudo-element */
section::before {
  content: '';
  display: block;
  position: absolute;
  left: 0; top: 0; right: 0; bottom: 0;
  opacity: 0.10;
  z-index: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(135deg, var(--color-pattern), var(--color-pattern) 3px, transparent 3px, transparent 18px);
  border-radius: 20px;
}
section > .container, section > .container > * {
  position: relative;
  z-index: 2;
}

/* === ABOUT Retro Side-by-side === */
.text-section {
  background: transparent;
  padding: 0 0 10px 0;
  border-radius: 12px;
  margin-bottom: 16px;
  flex: 1 1 220px;
}
.text-section ul, .text-section ol {
  margin-bottom: 12px;
}

/* === SERVICE CARDS === */
.service-card {
  background: var(--color-bg-card);
  border: 1.5px solid var(--color-border);
  border-radius: 16px;
  box-shadow: 0 6px 24px var(--color-shadow);
  padding: 24px 20px 28px 20px;
  margin-bottom: 20px;
  min-width: 230px;
  max-width: 355px;
  flex: 1 1 275px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.17s;
  position: relative;
}
.service-card h3 {
  font-size: 1.18rem;
  color: var(--color-brown);
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.service-card span {
  font-size: 1.02rem;
  background: var(--color-cream);
  color: var(--color-brown);
  border-radius: 6px;
  padding: 2px 11px;
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
}
.service-card a {
  margin-top: 14px;
  padding: 8px 24px;
  background: var(--color-secondary);
  color: var(--color-brown);
  border-radius: 24px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 1px 7px var(--color-shadow);
  border: 1.5px solid var(--color-primary);
  transition: background 0.13s, color 0.13s, box-shadow 0.18s;
}
.service-card a:hover, .service-card a:focus {
  background: var(--color-ochre);
  color: var(--color-primary);
  box-shadow: 0 4px 32px var(--color-shadow);
}
.service-card:hover {
  box-shadow: 0 11px 38px var(--color-shadow);
  transform: translateY(-4px) scale(1.02);
}

/* === TABLES === */
table {
  background: #fffcf4;
  border-radius: 9px;
  overflow: hidden;
  border: 1.5px solid var(--color-border);
  box-shadow: 0 3px 11px var(--color-shadow);
  margin-bottom: 24px;
}
th {
  background: var(--color-secondary);
  color: var(--color-brown);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.07rem;
  border-bottom: 2.5px solid var(--color-brown);
}
td {
  color: var(--color-brown);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-card);
}
tbody tr:last-child td {
  border-bottom: none;
}

/* === TESTIMONIALS === */
.testimonial-card {
  min-width: 220px;
  max-width: 410px;
  font-size: 1.02rem;
  background: #fffefb;
  color: #24221d;
  border-left: 8px solid var(--color-ochre);
  border-radius: 16px;
  transition: box-shadow 0.15s, transform 0.18s;
}
.testimonial-card span {
  font-family: var(--font-display);
  color: var(--color-brown);
  font-weight: 600;
  margin-top: 5px;
}
.testimonial-card:hover {
  box-shadow: 0 9px 36px var(--color-shadow);
  transform: translateY(-3px) scale(1.015) rotate(-1.2deg);
}

/* === CTA BLOCKS === */
.cta-btn, .service-card a {
  transition: background 0.18s, color 0.14s, box-shadow 0.16s;
  outline: none;
}
.cta-btn:focus {
  box-shadow: 0 0 0 3px var(--color-secondary);
}

/* === FOOTER === */
footer {
  background: var(--color-primary);
  color: var(--color-cream);
  border-top: 7px solid var(--color-ochre);
  box-shadow: 0 -4px 34px var(--color-shadow);
  padding: 38px 0 15px 0;
  font-size: 0.96rem;
  margin-top: 32px;
  position: relative;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
footer img {
  height: 48px;
  margin-bottom: 5px;
  filter: contrast(1.1) sepia(0.09);
}
.footer-nav {
  display: flex;
  gap: 18px;
  margin-bottom: 3px;
}
.footer-nav a {
  color: var(--color-cream);
  padding: 2px 11px;
  border-radius: 5px;
  font-family: var(--font-display);
  transition: background 0.13s, color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--color-ochre);
  color: var(--color-primary);
}
.footer-contact {
  text-align: center;
  color: var(--color-cream);
  font-family: var(--font-body);
  margin: 0 0 4px 0;
}
.footer-contact a {
  color: var(--color-cream);
  text-decoration: underline;
}
footer p:last-child {
  font-size: 0.96rem;
  color: var(--color-secondary);
  margin-top: 8px;
  letter-spacing: 0.01em;
}

/* === COOKIE CONSENT BANNER & MODAL === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--color-cream);
  color: var(--color-brown);
  box-shadow: 0 -8px 30px var(--color-shadow);
  padding: 20px 10vw 14px 10vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  z-index: 9999;
  font-size: 1.09rem;
  animation: fadeInBanner 0.6s cubic-bezier(.6,.01,.35,1.13);
}
@keyframes fadeInBanner {
  from { transform: translateY(90px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 9px;
}
.cookie-btn-accept, .cookie-btn-reject, .cookie-btn-settings {
  padding: 8px 21px;
  border-radius: 22px;
  border: 1.5px solid var(--color-brown);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--color-ochre);
  color: var(--color-brown);
  box-shadow: 0 2px 7px var(--color-shadow);
  margin-bottom: 0;
  transition: background 0.13s, color 0.13s;
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: var(--color-brown);
  color: var(--color-cream);
}
.cookie-btn-reject {
  background: var(--color-red);
  color: var(--color-cream);
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: var(--color-brown);
  color: var(--color-red);
}
.cookie-btn-settings {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: var(--color-brown);
  color: var(--color-secondary);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(23,64,88,0.34);
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModalBg 0.36s cubic-bezier(.6,.01,.35,1.13);
}
@keyframes fadeInModalBg {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal-inner {
  background: var(--color-bg-card);
  border: 1.5px solid var(--color-border);
  border-radius: 20px;
  padding: 34px 20px 24px 20px;
  min-width: 290px;
  max-width: 400px;
  box-shadow: 0 16px 46px var(--color-shadow);
  animation: popModal .4s cubic-bezier(.67,.01,.41,1.08);
}
@keyframes popModal {
  from { transform: scale(0.82); opacity: 0;} to { transform: scale(1); opacity: 1; }
}
.cookie-modal-inner h2 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--color-brown);
  font-family: var(--font-display);
}
.cookie-modal-cat {
  margin-bottom: 19px;
  padding: 10px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--color-border);
}
.cookie-modal-cat:last-child { border-bottom: none; }
.cookie-modal-cat label {
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-brown);
  min-width: 170px;
  letter-spacing: 0.01em;
}
.cookie-toggle {
  appearance: none;
  width: 32px;
  height: 18px;
  background: var(--color-secondary);
  border-radius: 9px;
  position: relative;
  outline: none;
  cursor: pointer;
  border: 1.5px solid var(--color-primary);
  transition: background 0.16s;
  margin-right: 8px;
}
.cookie-toggle:checked {
  background: var(--color-ochre);
}
.cookie-toggle:before {
  content: '';
  position: absolute; top: 2.5px; left: 3px;
  width: 12px; height: 12px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 2px 7px var(--color-shadow);
  transition: transform 0.16s;
}
.cookie-toggle:checked:before {
  background: var(--color-brown);
  transform: translateX(13px);
}
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 18px;
  justify-content: flex-end;
}

/* === BUTTONS General === */
button, .button {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.02em;
  font-weight: 600;
  border-radius: 28px;
  border: 2px solid var(--color-ochre);
  background: var(--color-brown);
  color: var(--color-cream);
  padding: 8px 30px;
  margin-bottom: 0;
  cursor: pointer;
  box-shadow: 0 2px 7px var(--color-shadow);
  transition: background 0.18s, color 0.13s, border 0.15s, box-shadow 0.16s;
  outline: none;
}
button:hover:not(:disabled), button:focus:not(:disabled), .button:hover, .button:focus {
  background: var(--color-ochre);
  color: var(--color-brown);
  border: 2px solid var(--color-brown);
  box-shadow: 0 6px 36px var(--color-shadow);
}
button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* === RESPONSIVE BREAKPOINTS === */
@media (max-width: 1120px) {
  .container { max-width: 96vw; }
}
@media (max-width: 900px) {
  .container { max-width: 99vw; }
  .section {
    padding: 34px 8px;
    margin-bottom: 44px;
  }
  section {
    padding: 32px 8px;
    margin-bottom: 44px;
  }
  .service-card { padding: 20px 12px; }
}
@media (max-width: 800px) {
  h1 { font-size: 1.88rem; }
  h2 { font-size: 1.45rem; }
  .section, section {
    padding: 18px 5px;
    margin-bottom: 30px;
  }
  .content-wrapper, .card-container, .content-grid {
    flex-direction: column !important;
    gap: 18px;
  }
  .testimonial-card, .card, .service-card {
    min-width: 94vw;
    max-width: 100vw;
    padding: 17px 7vw;
    margin-bottom: 17px;
  }
  .footer-nav { gap: 10px; }
}

@media (max-width: 620px) {
  .cookie-banner {
    padding: 12px 13px 12px 13px;
    font-size: 1.01rem;
  }
  .cookie-modal-inner {
    padding: 19px 5px 12px 7px;
    min-width: 85vw;
  }
}

@media (max-width: 768px) {
  .container { padding: 0 3vw; }
  .content-wrapper, .card-container, .content-grid {
    flex-direction: column !important;
    gap: 17px;
    align-items: stretch !important;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 14px;
    align-items: center !important;
  }
  .testimonial-card, .card, .service-card {
    min-width: 88vw;
    padding: 15px 3vw;
  }
  .footer-contact { font-size: 0.97rem; }
  footer img {
    height: 38px;
  }
}

/* Align list icons & fix image size in features */
.content-wrapper ul li img, .feature-item img {
  width: 22px;
  height: 22px;
  margin-right: 9px;
  position: absolute;
  left: 0;
  top: 2px;
}

/* Visually distinctive vintage patterns - deco corner in cards */
.card::after, .service-card::after, .testimonial-card::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0; right: 0;
  width: 46px; height: 46px;
  background: url("data:image/svg+xml,%3Csvg width='46' height='46' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath opacity='.13' d='M0 46Q13 24 46 0V46H0Z' fill='%23174058'/%3E%3C/svg%3E") no-repeat center center;
  background-size: contain;
  z-index: 0;
}

/* =============== PRINT STYLES =============== */
@media print {
  header, footer, .cookie-banner, .mobile-menu, .mobile-menu-toggle { display: none !important; }
  .container, .section, section, main { box-shadow: none !important; background: #fff !important; }
  .card, .service-card, .testimonial-card { box-shadow: none !important; border: 1px solid #bdbdbd; }
}

/* === VISUAL MICRO-INTERACTIONS === */
.card, .service-card, .testimonial-card { transition: box-shadow 0.19s, transform 0.16s; }
.card:hover, .service-card:hover, .testimonial-card:hover {
  box-shadow: 0 12px 38px var(--color-shadow);
  transform: scale(1.012) rotate(-0.7deg);
}

input, textarea {
  border-radius: 7px;
  border: 1.5px solid var(--color-secondary);
  background: var(--color-cream);
  padding: 7px 9px;
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--color-brown);
  transition: border 0.14s;
}
input:focus, textarea:focus {
  border: 1.5px solid var(--color-brown);
  outline: none;
}

::-webkit-input-placeholder { color: #b8b099; }
::-moz-placeholder { color: #b8b099; }
:-ms-input-placeholder { color: #b8b099; }
::placeholder { color: #b8b099; }

/* For accessibility & color contrast in testimonials */
.testimonial-card p, .testimonial-card span {
  color: #24221d;
}

/* =============== CUSTOM SCROLLBAR =============== */
body::-webkit-scrollbar {
  width: 12px;
  background: var(--color-bg-section);
}
body::-webkit-scrollbar-thumb {
  background: var(--color-secondary);
  border-radius: 10px;
}
body::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary);
}

/* =============== END =============== */
