/* =============================
   CSS RESET & NORMALIZATION
   ============================= */
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.5;
  background: #23272b;
  color: #F9F9F9;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  color: inherit;
  outline: none;
}
button { cursor: pointer; }

/* =============================
   FONTS
   ============================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;600;700&display=swap');

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  background: #23272b;
  color: #F9F9F9;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F9F9F9;
  font-weight: 700;
  letter-spacing: 0.015em;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 16px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  font-weight: 600;
}
p, .text-section, .content-wrapper p {
  font-size: 1rem;
  color: #e3e6ea;
  margin-bottom: 14px;
}

.content-wrapper {
  max-width: 1020px;
  margin: 0 auto;
}

/* =============================
   COLORS & BRAND ACCENTS
   ============================= */
:root {
  --primary: #274560;
  --secondary: #8BC34A;
  --accent: #F9F9F9;
  --bg-dark: #23272b;
  --bg-darker: #181a1b;
  --steel: #888d95;
  --metallic: #424b54;
  --shadow: rgba(45,53,60,0.13);
  --headerHeight: 68px;
}

/* =============================
   CONTAINERS & LAYOUT
   ============================= */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}
.header-flex, .footer-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.footer-flex {
  align-items: flex-start;
  gap: 40px;
  margin-top: 32px;
  margin-bottom: 0;
}

/* Generic section spacing */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
section:last-child, .section:last-child {
  margin-bottom: 0;
}

/* Content wrappers with spacing */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* =============================
   HEADER & NAVIGATION
   ============================= */
header {
  background: var(--bg-darker);
  box-shadow: 0 2px 8px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1100;
}
.site-logo {
  height: 46px;
  margin: 8px 0;
  filter: grayscale(0.25) brightness(1.1) drop-shadow(0px 1px 4px #111); /* Industrial effect */
  transition: filter 0.2s;
}
.site-logo:hover { filter: grayscale(0) brightness(1.18) drop-shadow(0px 1px 8px #2c373d); }

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #e3e6ea;
  font-size: 1rem;
  letter-spacing: 0.03em;
  padding: 8px 6px;
  border-radius: 3px;
  transition: background 0.14s, color 0.14s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--primary);
  color: var(--secondary);
}
.btn-primary {
  padding: 12px 28px;
  background: linear-gradient(90deg, var(--primary) 82%, var(--metallic) 100%);
  color: #fff;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 5px;
  border: none;
  box-shadow: 0 4px 16px var(--shadow);
  letter-spacing: 0.08em;
  transition: background 0.18s, color 0.14s, transform 0.15s;
  margin-left: 12px;
  margin-top: 4px;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--metallic);
  color: var(--secondary);
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 7px 30px #1012149c;
}
.btn-secondary {
  padding: 10px 24px;
  background: var(--secondary);
  color: var(--bg-dark);
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 700;
  border-radius: 5px;
  font-size: 1rem;
  margin-top: 16px;
  border: none;
  letter-spacing: 0.06em;
  box-shadow: 0 2px 8px var(--shadow);
  transition: background 0.17s, color 0.12s, transform 0.14s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--metallic);
  color: var(--secondary);
  transform: translateY(-1.5px) scale(1.035);
}

/* =============================
   MOBILE NAVIGATION
   ============================= */
.mobile-menu-toggle {
  display: none;
  background: var(--primary);
  color: #fff;
  font-size: 2rem;
  border-radius: 7px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 23px;
  top: 12px;
  z-index: 1200;
  transition: background 0.12s, box-shadow 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 3px 8px var(--shadow);
}
/* Hamburger appears (main nav hides) below 992px */
@media (max-width: 991px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #181a1bf3;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(100vw);
  transition: transform 0.39s cubic-bezier(.72,.03,.27,1.08);
  opacity: 1;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 2.2rem;
  margin: 18px 18px 0 0;
  align-self: flex-end;
  transition: color 0.14s;
  z-index: 2002;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  margin-top: 40px;
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat',Arial,sans-serif;
  color: #fff;
  font-size: 1.3rem;
  padding: 12px 6px 12px 4px;
  border-left: 4px solid transparent;
  border-radius: 0 8px 8px 0;
  transition: background 0.14s, border-color 0.14s, color 0.14s;
  min-width: 180px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--primary);
  border-left: 4px solid var(--secondary);
  color: var(--secondary);
}
@media (min-width: 992px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* =============================
   HERO & FEATURE SECTIONS
   ============================= */
.hero {
  background: linear-gradient(100deg, var(--metallic) 12%, var(--bg-dark) 100%);
  border-radius: 9px;
  box-shadow: 0 6px 32px 2px #10141a18;
  margin-bottom: 42px;
  color: #fff;
}
.hero .container { padding-top: 32px; padding-bottom: 32px; }
.hero h1 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 20px;
}
.hero p {
  color: #e3e6ea;
  font-size: 1.14rem;
  margin-bottom: 20px;
}

.features, .features.section {
  background: #20242b;
  border-radius: 7px;
  box-shadow: 0 3px 18px #1a202352;
  padding-top: 44px;
  padding-bottom: 44px;
  margin-bottom: 60px;
}
.features h2 {
  color: var(--secondary);
  font-size: 1.45rem;
  margin-bottom: 22px;
  letter-spacing: 0.02em;
}

/* =============================
   FLEX LAYOUTS FOR CARDS & GRIDS
   ============================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  flex: 1 1 270px;
  min-width: 216px;
  max-width: 100%;
  background: #262c32;
  border-radius: 8px;
  box-shadow: 0 5px 24px 0 #10141b26;
  padding: 30px 26px 26px 26px;
  margin-bottom: 20px;
  position: relative;
  border: 1px solid #323743;
  transition: transform 0.17s, box-shadow 0.14s, border-color 0.18s;
}
.card:hover, .card:focus-within {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 10px 32px #11192788;
  border-color: var(--secondary);
}
.card img {
  margin-bottom: 18px;
  filter: grayscale(45%) brightness(1.15) drop-shadow(0px 1px 6px #202b31);
}

.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;
}
.text-section {
  background: #23272b;
  border-left: 6px solid var(--primary);
  padding: 18px 20px;
  border-radius: 9px 17px 12px 6px/12px 23px 9px 4px;
  margin-bottom: 24px;
  color: #e3e6ea;
}

.feature-grid, .service-grid, .shop-usps-grid, .promotion-grid, .category-list, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 16px;
}
.feature-grid li, .service-grid li, .promotion-grid > div, .shop-usps-grid > div, .category-list li, .service-list li {
  background: #23272b;
  border-radius: 8px;
  padding: 24px 18px 20px 18px;
  min-width: 210px;
  flex: 1 1 220px;
  box-shadow: 0 2px 14px #0e141b16;
  border: 1px solid #303743;
  margin-bottom: 20px;
  transition: box-shadow 0.13s, border-color 0.14s, transform 0.17s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid li img, .service-grid li img, .promotion-grid > div img, .shop-usps-grid > div img, .category-list li img, .service-list li img {
  max-width: 48px;
  margin-bottom: 6px;
  filter: grayscale(35%) brightness(1.15) drop-shadow(0px 1px 6px #232b33);
}
.promotion-grid > div:hover, .feature-grid li:hover, .shop-usps-grid > div:hover {
  box-shadow: 0 10px 30px #111c316a;
  border-color: var(--secondary);
  transform: translateY(-4px) scale(1.02);
}
.category-list li {
  flex: 1 1 160px;
  min-width: 160px;
  align-items: center;
  display: flex;
  gap: 15px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.06rem;
}
.service-price {
  color: var(--secondary);
  font-weight: 700;
  margin-top: 5px;
  font-size: 1rem;
}

/* =============================
   TESTIMONIALS
   ============================= */
.testimonials {
  background: var(--accent);
  color: #232b32;
  border-radius: 8px;
  box-shadow: 0 8px 32px #28313e19;
  padding-top: 38px;
  padding-bottom: 38px;
  margin-bottom: 70px;
}
.testimonials h2 {
  color: var(--primary);
  margin-bottom: 28px;
}
.testimonial-card {
  background: #fff;
  color: #23272b;
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 16px #19202418;
  margin-bottom: 24px;
  padding: 20px;
  position: relative;
  border-left: 5px solid var(--primary);
  min-width: 0;
  transition: box-shadow 0.18s, border-color 0.17s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 32px #27314c29;
  border-color: var(--secondary);
}
.testimonial-card p {
  color: #23272b;
  font-weight: 500;
  font-size: 1.10rem;
  margin-bottom: 0;
  flex: 1; 
}
.testimonial-meta {
  font-size: 0.97rem;
  color: var(--steel);
  font-style: italic;
  margin-left: 10px;
}

/* =============================
   FOOTER STYLES
   ============================= */
footer {
  margin-top: 56px;
  background: var(--bg-darker);
  padding: 36px 0 22px 0;
  box-shadow: 0 -2px 12px #10101424;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-flex > div, .footer-nav {
  flex: 1 1 190px;
  margin-bottom: 15px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 15px 0;
}
.footer-nav a {
  color: #e3e6ea;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus { color: var(--secondary); }
footer img { max-height: 34px; margin-bottom: 8px; }
footer .social-links {
  display: flex;
  gap: 16px;
  margin-top: 6px;
  margin-bottom: 15px;
}
footer .social-links a {
  border-radius: 50%;
  background: #20242b;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  transition: background 0.14s;
}
footer .social-links a:hover {
  background: var(--primary);
}
.newsletter-signup {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin-top: 12px;
}
.newsletter-signup h3 { color: var(--secondary); font-size: 1.11rem; margin-bottom: 4px; }
.newsletter-signup p { font-size: 0.96rem; color: #c9ced2; }

/* =============================
   CONTACT INFO STYLES
   ============================= */
.contact-summary, .contact-info, .contact-form, .map-embed {
  background: #23272b;
  border-radius: 8px;
  margin-bottom: 60px;
  box-shadow: 0 2px 12px #10101413;
}
.contact-summary h2, .contact-info h2, .contact-form h2, .map-embed h2 {
  color: var(--secondary);
}
.contact-summary a, .contact-info a {
  color: var(--secondary);
  font-weight: 600;
  transition: color 0.15s;
  word-break: break-all;
}
.contact-summary a:hover, .contact-info a:hover, .contact-summary a:focus, .contact-info a:focus { color: var(--primary); }
.contact-info ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 18px;
  margin-top: 12px;
}

/* =============================
   TABLES/LISTS IN CONTENT
   ============================= */
ul, ol {
  padding-left: 20px;
  margin-bottom: 12px;
  color: #e3e6ea;
  font-size: 1rem;
}
li {
  margin-bottom: 6px;
  line-height: 1.5;
}

/* =============================
   UTILITY: FLEXBOX LAYOUTS
   ============================= */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =============================
   COOKIE CONSENT BANNER & MODAL
   ============================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #22252b;
  color: #fff;
  box-shadow: 0 -2px 14px #1a1a2280;
  border-top: 5px solid var(--primary);
  z-index: 2200;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 22px 24px;
  font-size: 1rem;
  animation: cookieFadeIn 0.49s cubic-bezier(.12,.69,.23,1.2) 1;
}
@keyframes cookieFadeIn {
  from { opacity: 0; transform: translateY(80px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
}
.cookie-banner button {
  padding: 8px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 5px;
  border: none;
  margin-left: 2px;
  transition: background 0.13s, color 0.13s, transform 0.13s;
}
.cookie-accept {
  background: var(--secondary);
  color: var(--bg-dark);
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #69a92a;
  color: #fff;
}
.cookie-reject {
  background: var(--primary);
  color: #fff;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: var(--metallic);
  color: var(--secondary);
}
.cookie-settings {
  background: transparent;
  color: #fff;
  border: 1.5px solid var(--metallic);
}
.cookie-settings:hover, .cookie-settings:focus {
  color: var(--secondary);
  border-color: var(--secondary);
}

/* Cookie preferences modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(20,23,30,0.85);
  z-index: 2300;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalIn 0.44s cubic-bezier(.45,.27,.30,1.11) 1;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(46px) scale(.88); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal {
  min-width: 320px; max-width: 99vw; width: 430px;
  background: #2c353d;
  color: #fff;
  border-radius: 13px;
  box-shadow: 0 8px 40px #11112869;
  padding: 32px 30px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h3 {
  color: var(--secondary);
  font-size: 1.19rem;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-weight: 600;
  color: var(--accent);
}
.cookie-toggle {
  appearance: none;
  width: 36px; height: 19px;
  background: var(--steel);
  border-radius: 32px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
  vertical-align: middle;
  margin-right: 4px;
}
.cookie-toggle:checked {
  background: var(--secondary);
}
.cookie-toggle:disabled {
  background: #bbbcc0;
  cursor: not-allowed;
}
.cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 2px;
  top: 2.1px;
  width: 15px; height: 15px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.18s;
}
.cookie-toggle:checked:before {
  left: 19px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 18px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.65rem;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { color: var(--secondary); }
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 15px;
  justify-content: flex-end;
}

/* =============================
   RESPONSIVE DESIGN
   ============================= */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 991px) {
  .header-flex, .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .footer-flex {
    gap: 28px;
  }
}
@media (max-width: 850px) {
  .feature-grid, .service-grid, .shop-usps-grid, .promotion-grid, .category-list, .service-list {
    flex-direction: column;
    min-width: 0;
    gap: 18px;
  }
  .content-wrapper { gap: 18px; }
  .hero .container, .features.section, .testimonials, .contact-summary, .contact-info, .contact-form, .map-embed {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 768px) {
  .content-grid, .card-container, .feature-grid, .service-grid,
  .shop-usps-grid, .promotion-grid, .service-list, .category-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .footer-flex {
    flex-direction: column;
    gap: 22px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .section, section {
    padding: 26px 7px;
    margin-bottom: 40px;
  }
  .card {
    padding: 18px 8px 16px 14px;
  }
  .hero, .features, .testimonials, .contact-summary, .contact-info, .contact-form, .map-embed {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .mobile-menu { padding-right: 0; }
}
@media (max-width: 500px) {
  .container {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .main-nav, .footer-nav {
    gap: 13px;
  }
}

/* =============================
   INDUSTRIAL MODERN EXTRAS
   ============================= */
body {
  background: #23272b url('assets/metal-bg.jpg') repeat top left fixed;
  background-size: cover;
}
.section, .features, .testimonials, .contact-summary, .contact-info, .contact-form, .map-embed {
  border: 1.5px solid #282f39;
  box-shadow: 0 10px 40px #1c232e24, 0 1.5px 2px #31363c33 inset;
}
.card, .feature-grid li, .service-grid li, .shop-usps-grid > div, .category-list li, .service-list li, .promotion-grid > div {
  box-shadow: 0 3px 17px #2e34423a, 0 1.2px 1.5px #4b5a6a1a inset;
  border: 1.5px solid #353d49;
}
.card::before, .feature-grid li::before, .service-grid li::before, .shop-usps-grid > div::before, .promotion-grid > div::before {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  border-radius: 8px;
  border-top: 2.5px solid rgba(255,255,255,0.07);
  border-bottom: 2.5px solid rgba(36,57,64,0.13);
  z-index: 0;
}

/* Metallic badges, lines, etc. */
.feature-grid li h3, .service-grid li h3, .shop-usps-grid > div h3, .promotion-grid > div h3, .card h3 {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  text-shadow: 0 1.2px 2.2px #181f271c, 0 0.5px 0.5px #b7bdc2;
}

hr {
  border: none;
  border-top: 2px solid #232a33;
  margin: 30px 0;
  background: none;
}

/* ========== MICROINTERACTIONS ========== */
a, .btn-primary, .btn-secondary, .main-nav a, .footer-nav a,
.mobile-nav a, .category-list li, .feature-grid li, .service-grid li {
  transition: color 0.14s, background 0.15s, box-shadow 0.13s, border-color 0.14s, transform 0.13s;
}
.card, .feature-grid li, .service-grid li, .promotion-grid > div, .shop-usps-grid > div, .testimonial-card {
  transition: box-shadow 0.18s, border-color 0.16s, transform 0.18s;
}

.card:active, .feature-grid li:active, .service-grid li:active, .promotion-grid > div:active {
  transform: scale(0.97);
}

/* ========== SELECTION COLOR ========== */
::selection {
  background: var(--secondary);
  color: var(--primary);
}

/* ========== SCROLLBAR STYLING ========== */
@media (min-width: 900px) {
  ::-webkit-scrollbar { width: 16px; background: #262c30; }
  ::-webkit-scrollbar-thumb { background: #353c44; border-radius: 9px; border: 3px solid #262c30; }
  ::-webkit-scrollbar-thumb:hover { background: #8BC34A; }
}

/* =============================
   PRINT FRIENDLY
   ============================= */
@media print {
  header, .main-nav, .footer-flex, .mobile-menu,
  .mobile-menu-toggle, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  body, .container { background: #fff !important; color: #23272b !important; }
}
