/* =========================
   CSS 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #191e2a;
  color: #F7F5F0;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
button, input, textarea, select {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}
:focus {
  outline: 2px solid #DBC49A;
}

/* ======================
   FONT IMPORTS
   ====================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Roboto:wght@400;500;700&display=swap');

/* =======================
   COLOR VARIABLES
   ======================= */
:root {
  --color-primary: #2D3441;
  --color-secondary: #DBC49A;
  --color-accent: #F7F5F0;
  --color-bg-dark: #191e2a;
  --color-neon: #19fff6;
  --color-error: #E94949;
  --shadow-main: 0 4px 24px 0 rgba(17,22,35, 0.14), 0px 1.5px 6px 0 rgba(32,255,246,0.08);
}

/* =================
   GENERAL SPACING
   ================= */
.container {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

/* Card/Section Flex Containers for mandatory spacing */
.card-container, .features-grid, .services-cards, .services-details, .project-highlights, .testimonials, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 0 20px 0;
}
.card {
  background: var(--color-primary);
  color: var(--color-accent);
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow-main);
  position: relative;
  padding: 28px 22px;
  transition: transform .18s, box-shadow .3s;
}
.card:hover {
  box-shadow: 0 6px 30px 0 #19fff633, 0 1.5px 6px 0 #dbc49a55;
  transform: translateY(-4px) scale(1.03);
}
.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: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  color: #232728;
  border-radius: 14px;
  box-shadow: 0 2px 16px #dbc49a20;
  min-width: 260px;
  max-width: 380px;
  flex: 1 1 320px;
  transition: box-shadow .2s;
}
.testimonial-card:hover {
  box-shadow: 0 5px 32px #19fff633;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =====================
   TYPOGRAPHY HIERARCHY
   ===================== */
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.03em;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.01em;
  color: var(--color-secondary);
}
h1 {
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.18;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 8px;
}
h4 {
  font-size: 1rem;
  font-weight: 600;
}
p, ul, ol, li, address {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--color-accent);
}
p + p, ul + p, p + ul { margin-top: 10px; }
strong { font-weight: bold; color: var(--color-secondary); }

/* Icon images */
.features-grid img {
  height: 48px;
  width: 48px;
  filter: drop-shadow(0 0 8px #19fff6cc);
  margin-bottom: 12px;
}

/* =====================
   HEADER & NAVIGATION
   ===================== */
header {
  background: linear-gradient(90deg, #181d28 0%, #232b3b 100%);
  box-shadow: 0 2px 12px #191e2a44;
  position: relative;
  z-index: 20;
  padding-top: 8px;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
nav > a img {
  height: 50px;
}
nav ul {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  margin-left: 24px;
}
nav ul li {
  display: flex;
}
nav a, .mobile-nav a {
  font-family: 'Roboto',Arial,sans-serif;
  color: var(--color-accent);
  padding: 8px 10px;
  font-size: 1.07rem;
  border-radius: 7px;
  transition: background 0.2s, color 0.2s;
}
nav a:hover, nav ul li a:focus, .mobile-nav a:hover, .mobile-nav a:focus {
  background: #19fff610;
  color: #19fff6;
}
nav .cta-primary {
  background: linear-gradient(90deg,#19fff6 0%,#DBC49A 100%);
  color: #2D3441;
  padding: 12px 30px;
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  border-radius: 30px;
  margin-left: 28px;
  box-shadow: 0 2px 18px #19fff622;
  text-shadow: 0 2px 6px #ffffff31, 0 1px #fff4;
  letter-spacing: .015em;
  border: none;
  transition: background .2s, color .2s, box-shadow .2s, transform .15s;
  cursor: pointer;
  outline: none;
}
nav .cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg,#DBC49A 0%,#19fff6 90%);
  color: #222838;
  box-shadow: 0 2px 32px #19fff644;
  transform: scale(1.045);
}

/* Hide mobile menu by default, show button only on mobile */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 17px;
  z-index: 50;
  background: #19fff6;
  color: #2D3441;
  border-radius: 100%;
  border: none;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 12px #dbc49a85;
  transition: background 0.18s, box-shadow 0.2s, transform 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #232b3b;
  color: #19fff6;
  box-shadow: 0 4px 24px #19fff633;
  border: 2px solid #19fff6;
}

/* MOBILE NAV */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(110deg, #232b3b 80%, #19fff633);
  transform: translateX(-110vw);
  opacity: 0;
  z-index: 999;
  transition: transform 0.48s cubic-bezier(.7,0,.3,1), opacity 0.25s;
  display: flex;
  flex-direction: column;
  padding: 24px 0 0 0;
  box-shadow: 0 2px 24px #19fff633;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #19fff6;
  position: absolute;
  right: 24px;
  top: 18px;
  cursor: pointer;
  z-index: 1002;
  background: #191e2a55;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #DBC49A;
  color: #2D3441;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  margin: 75px 0 0 28px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.35rem;
  padding: 12px 8px;
  border-radius: 6px;
  font-weight: 600;
  background: none;
  transition: color 0.23s, background 0.21s;
  min-width: 180px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #19fff6;
  background: #1a212b;
}

/* ===============
   HERO SECTION
   =============== */
.hero {
  background: linear-gradient(120deg, #232b3b 75%, #19fff622 100%);
  padding: 80px 0 50px 0;
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  justify-content: center;
}
.hero h1 {
  color: #19fff6;
  text-shadow: 0 2px 32px #19fff644;
  font-size: 3rem;
}
.hero h2 {
  color: var(--color-secondary);
  font-size: 1.5rem;
  max-width: 680px;
  text-align: center;
}

/* =================
   FEATURES & CARDS
   ================= */
.features-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  align-items: stretch;
  margin: 30px 0 0 0;
}
.features-grid > div {
  background: #232b3b;
  border-radius: 14px;
  padding: 28px 20px;
  flex: 1 1 240px;
  min-width: 220px;
  box-shadow: var(--shadow-main);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .2s, transform .16s;
  border: 1.5px solid transparent;
}
.features-grid > div:hover {
  box-shadow: 0 6px 32px #19fff633, 0 1.5px 6px 0 #dbc49a44;
  border: 1.5px solid #19fff6bb;
  transform: scale(1.04);
}
.features-grid h3 {
  color: #19fff6;
  margin-bottom: 8px;
}
.features-grid p {
  color: #F7F5F0;
}

/* ===============
   SERVICES CARDS
   =============== */
.services-cards, .services-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 25px 0 0 0;
}
.services-cards > div, .services-details > div {
  background: #22293B;
  padding: 26px 22px;
  border-radius: 11px;
  box-shadow: 0 2px 16px #19fff622;
  flex: 1 1 260px;
  min-width: 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .23s, transform .16s;
  border: 1.5px solid transparent;
}
.services-cards > div:hover, .services-details > div:hover {
  box-shadow: 0 6px 34px #19fff655, 0 0 0 2px #19fff688;
  border: 1.5px solid #19fff6cc;
  transform: scale(1.027);
}
.services-cards h3, .services-details h3 {
  color: #DBC49A;
  margin-bottom: 12px;
  font-size: 1.13rem;
}
.services-details span {
  background: #19fff611;
  color: #19fff6;
  font-size: 1rem;
  border-radius: 8px;
  padding: 2px 8px;
  margin-left: 0.75em;
  font-weight: 500;
  font-family: 'Roboto',sans-serif;
}

/* =================
   PROJECT HIGHLIGHTS
   ================= */
.project-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 22px 0 0;
}
.project-highlights > div {
  background: #2d3441;
  border-radius: 13px;
  box-shadow: var(--shadow-main);
  min-width: 240px;
  flex: 1 1 330px;
  padding: 22px 18px 18px 18px;
  color: #F7F5F0;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1.5px solid transparent;
  transition: box-shadow .2s, border .17s, transform .12s;
}
.project-highlights > div:hover {
  border: 1.5px solid #19fff622;
  box-shadow: 0 6px 24px #19fff633, 0 2px 6px 0 #dbc49a40;
  transform: scale(1.03);
}
.project-highlights h3 {
  color: var(--color-secondary);
  margin-bottom: 6px;
}

/* ===============
   CTA & INFO BANNER
   ================ */
.cta-banner, .info-banner {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: linear-gradient(92deg,#232b3b 80%, #19fff633 120%);
  border-radius: 13px;
  box-shadow: 0 2px 18px #2d344150;
  margin-top: 30px;
  padding: 28px 20px;
}
.cta-banner p, .info-banner p {
  color: var(--color-secondary);
  font-size: 1.19rem;
  margin-right: 18px;
  font-weight: 600;
}

/* ==============
   MAP PLACEHOLDER
   ============== */
.map-placeholder {
  background: #22293B;
  border-radius: 9px;
  padding: 18px 12px;
  margin-top: 12px;
  color: #19fff6;
  text-align: center;
  font-size: 1.07rem;
  font-style: italic;
}

/* =====================
   FAQ ACCORDION STYLE
   ===================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-accordion > div {
  background: #232b3b;
  border-radius: 9px;
  padding: 18px 16px 16px 16px;
  box-shadow: 0 2px 14px #19fff622;
  margin-bottom: 14px;
}
.faq-accordion h2 {
  color: #19fff6;
  font-size: 1.18rem;
  margin-bottom: 5px;
  font-family: 'Playfair Display', serif;
}
.faq-accordion p {
  color: #F7F5F0;
}

/* ================
   FOOTER STYLES
   ================ */
footer {
  background: #232b3b;
  color: #F7F5F0;
  padding: 44px 0 24px 0;
  box-shadow: 0 -8px 32px #232B3B44;
  margin-top: 60px;
}
.footer-wrapper {
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 10px 0 0;
}
.footer-wrapper > div {
  min-width: 210px;
}
.footer-wrapper img {
  height: 38px;
  margin-bottom: 8px;
}
.footer-wrapper p {
  font-size: 0.98rem;
  color: #F7F5F0;
  margin-bottom: 0;
}
.footer-wrapper nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-wrapper nav a {
  color: #dbc49a;
  font-size: 0.99rem;
  margin-bottom: 0;
  border-radius: 5px;
  padding: 6px 6px 6px 0;
  transition: color 0.18s, background 0.22s;
}
.footer-wrapper nav a:hover, .footer-wrapper nav a:focus {
  color: #19fff6;
  background: #192029;
}

/* =====================
   COOKIE CONSENT BANNER
   ===================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: linear-gradient(92deg,#232b3b 80%, #19fff644 120%); 
  color: #F7F5F0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 26px;
  padding: 24px 22px;
  box-shadow: 0 -2px 30px #19fff644;
  z-index: 2000;
  animation: bannerUp 0.66s cubic-bezier(.7,0,.3,1);
  border-top: 2.5px solid #19fff655;
}
@keyframes bannerUp {
  from { transform: translateY(100vh); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner p {
  max-width: 520px;
  font-size: 1.05rem;
  color: #F7F5F0;
}
.cookie-btn {
  background: #19fff6;
  color: #2D3441;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  padding: 10px 18px;
  margin-right: 8px;
  font-size: 1rem;
  margin-bottom: 0;
  box-shadow: 0 2px 18px #19fff622;
  cursor: pointer;
  transition: background .2s, color .2s, transform .1s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #22293B;
  color: #19fff6;
  border: 1.3px solid #19fff6;
  transform: scale(1.04);
}
.cookie-btn.settings {
  background: #2D3441;
  color: #19fff6;
  border: 1.1px solid #19fff6;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: #191e2acc;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeOverlay .3s;
}
@keyframes fadeOverlay {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #232b3b;
  color: #F7F5F0;
  border-radius: 13px;
  box-shadow: 0 12px 32px #19fff633, 0 2px 8px #232b3b77;
  max-width: 480px;
  width: 90%;
  padding: 30px 30px 24px 30px;
  position: relative;
  animation: showModal .4s cubic-bezier(.7,0,.3,1);
}
@keyframes showModal {
  from { transform: translateY(36px) scale(.96); opacity:0; }
  to   { transform: translateY(0) scale(1); opacity:1; }
}
.cookie-modal h2 {
  color: #DBC49A;
  font-size: 1.35rem;
  margin-bottom: 12px;
  font-family: 'Playfair Display',serif;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  margin: 12px 0;
  font-size: 1rem;
  gap: 14px;
}
.cookie-modal .toggle {
  width: 36px;
  height: 22px;
  border-radius: 13px;
  background: #22293B;
  position: relative;
  border: 1px solid #19fff6;
  margin-left: 8px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal .toggle.disabled {
  background: #22293B77;
  opacity: .6;
  cursor: not-allowed;
}
.cookie-modal .toggle .dot {
  width: 16px;
  height: 16px;
  background: #19fff6;
  border-radius: 50%;
  transition: transform .22s cubic-bezier(.7,0,.3,1);
  position: absolute;
  left: 3px;
}
.cookie-modal .toggle.checked .dot {
  transform: translateX(13px);
  background: #DBC49A;
}
.cookie-modal .modal-btns {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}
.cookie-close {
  position: absolute;
  top: 13px;
  right: 16px;
  background: none;
  color: #19fff6;
  border: none;
  font-size: 1.7rem;
  cursor: pointer;
  transition: color .19s, background .19s;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-close:hover, .cookie-close:focus {
  background: #DBC49A;
  color: #2D3441;
}

/* ==============
   LISTS & LINKS
   ============= */
ul, ol {
  margin: 0 0 18px 26px;
  list-style-type: disc;
}
ul > li, ol > li {
  margin-bottom: 7px;
  line-height: 1.6;
  color: #F7F5F0;
}
.text-section ul {
  margin-bottom: 4px;
}

/* ==============
   UTILITY CLASSES
   ============== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cta-primary {
  display: inline-block;
  margin-top: 10px;
}

/* =====================
   RESPONSIVE DESIGN
   ===================== */
@media (max-width: 1024px) {
  .container {max-width: 950px;}
  nav {max-width: 950px;}
  .features-grid, .services-cards, .project-highlights, .testimonials, .services-details, .footer-wrapper {gap: 18px;}
}
@media (max-width: 900px) {
  nav ul {gap: 15px;}
  .footer-wrapper {flex-direction: column; gap: 32px; align-items: flex-start;}
}
@media (max-width: 768px) {
  .container {max-width: 96vw;}
  nav ul, nav .cta-primary {display: none;}
  .mobile-menu-toggle {display: flex;}
  nav {justify-content: flex-start;}
  .footer-wrapper {flex-direction: column; gap: 30px; align-items: flex-start;}
  .hero {padding-top: 58px; min-height: 220px;}
  .hero h1 {font-size: 2.15rem;}
  .cta-banner, .info-banner {flex-direction: column; gap: 16px; text-align: center;}
  .section {padding: 28px 8px;}
  .features-grid, .services-cards, .services-details, .project-highlights, .testimonials, .content-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .feature-item, .card, .testimonial-card, .services-cards > div, .services-details > div, .project-highlights > div {
    min-width: unset;
    max-width: unset;
  }
  .mobile-menu {padding-top: 17px;}
  .mobile-nav {margin-top: 63px;}
}
@media (max-width: 540px) {
  .hero .content-wrapper {padding: 0 6vw;}
  h1 {font-size: 1.58rem;}
  h2 {font-size: 1.19rem;}
  body {font-size: 15px;}
  .footer-wrapper {
    gap: 18px;
    padding: 2px 0 0 0;
  }
}

/* ===============
   MICRO-INTERACTIONS
   =============== */
.cta-primary, .cookie-btn, .footer-wrapper nav a, nav a, .mobile-nav a, nav .cta-primary {
  transition: background .2s, color .2s, box-shadow .22s, transform .1s;
}
.card, .testimonial-card, .footer-wrapper nav a, .features-grid > div, .services-cards > div, .services-details > div, .project-highlights > div {
  transition: box-shadow .2s, border .17s, transform .1s;
}

/* ============================
   ENSURE NO OVERLAPPING & GAPS
   ============================ */
.card-container > *, .features-grid > *, .services-cards > *, .services-details > *, .project-highlights > *, .testimonials > *, .content-grid > * {
  margin-bottom: 20px;
}

/* ================
   ALIGNMENT FLEXBOX
   ================ */
.section {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
/* Text-image-section for all devices, vertical on mobile */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: center;
  }
}

/* MANUAL: fix spacing for content wrappers using gap */
.content-wrapper {
  gap: 32px;
}

/* ================
   Forms (Generic)
   ================ */
input, textarea, select {
  border: 1px solid #DBC49A;
  border-radius: 5px;
  padding: 10px 12px;
  background: #232b3b;
  color: #F7F5F0;
  font-size: 1rem;
  margin-bottom: 16px;
  transition: border .18s, box-shadow .2s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #19fff6;
  box-shadow: 0 2px 12px #19fff633;
}
label {
  display: block;
  font-size: 1rem;
  color: #DBC49A;
  margin-bottom: 4px;
}

/* ================
   ERROR STATE (Forms)
   ================ */
input.error, textarea.error {
  border-color: var(--color-error);
  background: #e949491a;
  color: #E94949;
}

/* ================
   SCROLLBAR (Modern)
   ================ */
::-webkit-scrollbar {
  width: 10px;
  background: #22293B;
}
::-webkit-scrollbar-thumb {
  background: #DBC49A99;
  border-radius: 6px;
  box-shadow: 0 2px 12px #2d344144;
}

/* ================
   ACCESSIBILITY
   ================ */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation-duration: 0.01ms !important;
  }
}
