/* ---------------------------------------------------------------------
   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,
main, 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 {
  scroll-behavior: smooth;
  height: 100%;
}
body {
  min-height: 100vh;
  color: #F8F9FA;
  background: #151B22;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #EEC643;
  text-decoration: none;
  transition: color 0.15s;
}
a:hover, a:focus {
  color: #fff4ad;
}
ul, ol {
  list-style: none;
}

/* ---------------------------------------------------------------------
   VARIABLES (fallbacks provided where critical)
----------------------------------------------------------------------*/
:root {
  --color-primary: #17324D;
  --color-secondary: #EEC643;
  --color-accent: #F8F9FA;
  --color-bg-dark: #151B22;
  --color-bg-light: #232C36;
  --color-bg-metal: #1A222A;
  --color-border: #303A46;
  --color-shadow: rgba(23, 50, 77, 0.18);

  --font-display: 'Roboto Slab', serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* ---------------------------------------------------------------------
   TYPOGRAPHY (Industrial-feel, brand fonts)
----------------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display, 'Roboto Slab', serif);
  font-weight: 700;
  color: #F8F9FA;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 { font-size: 2.75rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 8px; }

.subtitle {
  font-family: var(--font-display, 'Roboto Slab', serif);
  font-size: 1.125rem;
  color: var(--color-secondary, #EEC643);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  font-weight: 600;
  text-shadow: 0 2px 6px #111B;
}

strong, b {
  color: var(--color-secondary, #EEC643);
  font-weight: 700;
}

body, p, li, th, td {
  font-family: var(--font-body, 'Open Sans', Arial, sans-serif);
  font-weight: 400;
}

p {
  margin-bottom: 14px;
  color: #D6E0EA;
  font-size: 1rem;
}

.text-section p,
.text-section ul,
.text-section ol {
  color: #B6C2CE;
}

.text-section ul, .text-section ol {
  padding-left: 24px;
  margin-bottom: 10px;
  list-style: disc inside;
}

.text-section li {
  margin-bottom: 6px;
}

/* Hierarchy in tables (for prices, etc.) */
.service-title {
  font-family: var(--font-display, 'Roboto Slab', serif);
  font-weight: 700;
  font-size: 1.1rem;
  color: #F8F9FA;
}
.service-desc {
  font-size: 1rem;
  color: #B6C2CE;
}
.service-price {
  font-family: var(--font-display, 'Roboto Slab', serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-secondary, #EEC643);
}

/* ------------------------------------------------------------------
   LAYOUT: CONTAINER, SECTIONS, WRAPPERS (FLEXBOX ONLY)
-------------------------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 18px;
}

.main-nav,
.footer-main,
.card-container,
.card-grid,
.content-grid,
.feature-grid,
.service-list,
.service-grid,
.testimonial-slider,
.contact-info-block,
.footer-links,
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

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

.section,
main > section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-metal, #1A222A);
  border-radius: 18px;
  box-shadow: 0 6px 34px -12px rgba(23, 50, 77, 0.12);
  position: relative;
  overflow: visible;
}

main > section.cta-section,
main > section.thankyou-confirmation {
  background: var(--color-primary, #17324D);
  margin-bottom: 0;
}

/* Ensure spacing for last section */
main > section:last-child {
  margin-bottom: 70px;
}

.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;
}

/* Feature grid and service grid - industrial blocky look */
.feature-grid, .service-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.feature-item, .service-item, .service-block {
  background: var(--color-bg-light, #232C36);
  border-radius: 14px;
  box-shadow: 0 2px 10px var(--color-shadow);
  padding: 28px 22px 24px 22px;
  flex: 1 1 315px;
  min-width: 275px;
  max-width: 100%;
  border: 1.5px solid #25344A;
  min-height: 210px;
  transition: box-shadow 0.2s, border 0.18s;
  position: relative;
}
.feature-item:hover,
.service-item:hover,
.service-block:hover {
  box-shadow: 0 8px 24px -6px #17324D55;
  border: 1.5px solid var(--color-secondary, #EEC643);
}

/* Cards for reviews and testimonials - bright readable text */
.testimonials {
  background: #F8F9FA;
  color: #17324D;
  border-radius: 20px;
  box-shadow: 0 8px 44px -10px #1113;
  padding: 40px 16px;
}
.testimonials h2,
.testimonials .testimonial-author {
  color: #17324D;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  color: #222;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px -8px #17324D58;
  border-left: 5px solid var(--color-secondary, #EEC643);
  flex: 1 1 334px;
  min-width: 260px;
  max-width: 100%;
  transition: box-shadow 0.21s, border 0.17s;
  margin-bottom: 20px;
  align-items: flex-start;
}
.testimonial-card p {
  color: #17324D;
  font-size: 1rem;
  margin-bottom: 12px;
}
.testimonial-author {
  color: #555;
  font-size: 0.96rem;
  font-style: italic;
  font-family: var(--font-body, 'Open Sans', Arial, sans-serif);
}
.testimonial-card:hover {
  box-shadow: 0 10px 38px -10px var(--color-secondary, #EEC643);
  border-left: 5px solid var(--color-primary, #17324D);
}

/* Contact block & privacy note */
.contact-info-block {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  padding: 24px 0;
}
.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}
.privacy-note {
  background: #222D39;
  color: #E0E9F2;
  border-left: 5px solid var(--color-secondary, #EEC643);
  border-radius: 8px;
  padding: 18px 22px;
  font-size: .99rem;
  max-width: 340px;
}
.privacy-note a { color: var(--color-secondary, #EEC643); text-decoration: underline; }
.privacy-note a:hover { color: var(--color-primary, #17324D); }

/* Pricing table - blocky, industrial */
.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 34px;
}
.pricing-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: #232C36;
  border-radius: 12px;
  padding: 14px 20px;
  border-left: 6px solid var(--color-secondary, #EEC643);
  box-shadow: 0 2px 8px -2px #1118;
}
.pricing-row .service-title {
  flex: 2 1 190px;
}
.pricing-row .service-desc {
  flex: 5 1 340px;
}
.pricing-row .service-price {
  flex: 0 0 109px;
  text-align: right;
}
.transparency-note {
  background: #1E2431;
  border-radius: 8px;
  padding: 12px 16px;
  color: #F8F9FA;
  border-left: 5px solid var(--color-secondary, #EEC643);
  font-size: 0.96rem;
}

/* Map placeholder styling (location page) */
.map-placeholder {
  background: #222D39;
  color: #B6C2CE;
  border-radius: 10px;
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin: 22px 0;
  font-family: var(--font-display, 'Roboto Slab', serif);
}
.transport-options {
  margin: 22px 0 0 0;
}
.transport-options ul {
  color: #EEC643;
  padding-left: 24px;
  list-style: disc;
}
.transport-options li {
  margin-bottom: 9px;
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  background: var(--color-primary, #17324D);
  color: #F8F9FA;
  border-radius: 18px;
  box-shadow: 0 6px 24px -10px #1118;
  padding: 40px 20px;
  text-align: center;
}
.cta-section .btn-primary {
  margin-bottom: 14px;
}
.cta-section a, .cta-section a:visited {
  color: #fff59c;
  text-decoration: underline;
}
.cta-section a:hover {
  color: #fff4ad;
}

/* -------------------------------------------------------------------
   BUTTONS & INTERACTION
--------------------------------------------------------------------*/
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 13px 38px 13px 38px;
  font-family: var(--font-display, 'Roboto Slab', serif);
  font-size: 1.12rem;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.21s, color 0.20s, box-shadow 0.14s;
  box-shadow: 0 2px 14px -6px #17324D66;
  margin-right: 10px;
  text-align: center;
}
.btn-primary {
  color: #151B22;
  background: #EEC643;
  border: 2.5px solid #EEC643;
  box-shadow: 0 4px 20px -10px #EEC64399;
}
.btn-primary:hover, .btn-primary:focus {
  background: #17324D;
  color: #EEC643;
  border-color: #EEC643;
}

.btn-secondary {
  color: #F8F9FA;
  background: #17324D;
  border: 2.2px solid #EEC643;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #EEC643;
  color: #151B22;
}

/* -------------------------------------------------------------------
   HEADER & MAIN NAV, LOGO
--------------------------------------------------------------------*/
header {
  background: #151B22;
  border-bottom: 2px solid #222D39;
  box-shadow: 0 4px 22px -10px #19304D22;
  padding: 0;
  position: sticky;
  top: 0; left: 0;
  z-index: 99;
  width: 100%;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 16px;
}
.logo {
  display: flex;
  align-items: center;
  height: 55px;
  width: auto;
}
.logo img {
  height: 46px;
  width: auto;
  filter: brightness(1.07);
}

.main-nav {
  gap: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.main-nav a {
  color: #EEC643;
  font-family: var(--font-display, 'Roboto Slab', serif);
  font-size: 1.01rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 7px 0 7px 0;
  transition: color 0.16s;
  position: relative;
}
.main-nav a:not(.btn-primary)::after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: #EEC643;
  transition: width 0.2s;
  position: absolute;
  bottom: -3px; left: 0;
}
.main-nav a:not(.btn-primary):hover::after {
  width: 80%;
}
.main-nav a.active,
.main-nav a:focus {
  color: #fff4ad;
}

/* Hide main nav on mobile */
@media (max-width: 1023px) {
  .main-nav {
    display: none !important;
  }
}

.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #EEC643;
  font-size: 2.2rem;
  cursor: pointer;
  margin-left: 12px;
  transition: color 0.2s;
  z-index: 201;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: #fff4ad;
}
@media (min-width: 1024px) {
  .mobile-menu-toggle { display: none; }
}

/* ---------------------------------------------------------------------
   MOBILE BURGER MENU OVERLAY (SLIDE IN/OUT)
----------------------------------------------------------------------*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: #161c23ee;
  backdrop-filter: blur(3px);
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.36s cubic-bezier(.77,0,.18,1), opacity 0.25s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: #fff;
  background: none;
  border: none;
  position: absolute;
  top: 24px; right: 34px;
  z-index: 10101;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #EEC643;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 92px;
  margin-right: 28px;
  background: #232C36;
  border-radius: 14px 0 0 14px;
  padding: 30px 36px 30px 26px;
  min-width: 240px;
  box-shadow: 0 8px 44px -12px #19304DBB;
}
.mobile-nav a {
  color: #EEC643;
  font-family: var(--font-display, 'Roboto Slab', serif);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color 0.12s, border 0.19s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #fff4ad;
  border-bottom: 2px solid #fff4ad;
}
@media (min-width: 1024px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Overlay for interaction when open (lock background etc.) */
body.menu-open {
  overflow: hidden;
}

/* -------------------------------------------------------------------
   HERO SECTION & IMAGE SECTIONS
--------------------------------------------------------------------*/
.hero {
  background: linear-gradient(94deg, #192637 84%, #EEC64380 100%);
  border-radius: 20px;
  padding: 64px 0 54px 0;
  min-height: 320px;
  box-shadow: 0 8px 48px -12px #17324D44;
  margin-bottom: 54px;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero h1 {
  color: #EEC643;
  font-size: 2.9rem;
  letter-spacing: 0.05em;
  line-height: 1.08;
  text-shadow: 0 4px 32px #17324D77;
}
.hero .subtitle {
  color: #F8F9FA;
  font-size: 1.24rem;
}
.hero p {
  color: #EEC643;
  font-size: 1.12rem;
  margin-bottom: 14px;
}

/* ---------------------------------------------------------------------
   FOOTER
----------------------------------------------------------------------*/
footer {
  background: #151B22;
  padding: 0 0 0 0;
  border-top: 2px solid #232C36;
}
footer .container {
  padding: 0 18px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 34px;
  padding: 35px 0 20px 0;
}
.footer-logo img {
  height: 36px;
  filter: grayscale(25%) brightness(1.2);
  margin-bottom: 6px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links a {
  color: #EEC643;
  font-family: var(--font-display, 'Roboto Slab', serif);
  font-weight: 500;
  font-size: .97rem;
  transition: color 0.17s;
}
.footer-links a:hover {
  color: #fff4ad;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: #AFBACB;
  font-size: 0.97rem;
}
.footer-bottom {
  border-top: 1.5px solid #232C36;
  padding: 16px 0;
  font-size: .94rem;
  color: #8395AF;
  text-align: center;
}

/* ---------------------------------------------------------------------
   THANK YOU PAGE
----------------------------------------------------------------------*/
.thankyou-confirmation {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 340px;
  background: #232C36;
  border-radius: 18px;
  box-shadow: 0 8px 24px -10px #17324D66;
}
.thankyou-confirmation h1 {
  color: #EEC643;
  margin-bottom: 14px;
}
.thankyou-confirmation p {
  color: #D6E0EA;
  margin-bottom: 20px;
}

/* ---------------------------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
----------------------------------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 14000;
  width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  background: #232C36F2;
  box-shadow: 0 -2px 30px -2px #191F2522;
  padding: 22px 12px 22px 12px;
  gap: 24px;
  border-top: 3.5px solid var(--color-secondary, #EEC643);
  animation: fadeInBottom 0.6s ease;
}
@keyframes fadeInBottom {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  color: #F8F9FA;
  font-size: .99rem;
  flex: 2 1 380px;
  margin-bottom: 8px;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 0;
}
.cookie-btn, .cookie-btn-primary, .cookie-btn-secondary {
  padding: 9px 24px;
  border-radius: 7px;
  font-family: var(--font-display, 'Roboto Slab', serif);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin-right: 6px;
  margin-left: 0;
  transition: background 0.18s, color 0.17s, box-shadow 0.14s;
}
.cookie-btn-primary {
  background: var(--color-secondary, #EEC643);
  color: #151B22;
  box-shadow: 0 2px 10px -6px #EEC64398;
}
.cookie-btn-primary:hover, .cookie-btn-primary:focus {
  background: var(--color-primary, #17324D);
  color: #EEC643;
}
.cookie-btn-secondary {
  background: none;
  color: #EEC643;
  border: 2px solid #EEC643;
}
.cookie-btn-secondary:hover, .cookie-btn-secondary:focus {
  background: #17324D;
  color: #EEC643;
}
.cookie-btn {
  background: none;
  color: #F8F9FA;
  border: 2px solid #232C36;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: #222D39;
}

.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(20,24,34, 0.92);
  z-index: 15001;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.cookie-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.cookie-modal-content {
  background: #232C36;
  border-radius: 16px;
  box-shadow: 0 16px 64px -12px #19304D99;
  color: #F8F9FA;
  padding: 38px 34px 34px 34px;
  min-width: 340px;
  max-width: 96vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookie-modal-content h3 {
  font-size: 1.25rem;
  color: #EEC643;
  margin-bottom: 0.2em;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 22px;
  background: none;
  border: none;
  color: #EEC643;
  font-size: 2.0rem;
  cursor: pointer;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
.cookie-category input[type="checkbox"]:not(:disabled) {
  accent-color: #EEC643;
}
.cookie-category input:disabled + span {
  color: #848D95;
  opacity: 0.8;
}

/* ---------------------------------------------------------------------
   RESPONSIVE: MOBILE FIRST
----------------------------------------------------------------------*/
@media (max-width: 1023px) {
  .container {
    max-width: 100vw;
    padding: 0 8px;
  }
  .hero, .section, main > section {
    border-radius: 0;
    padding: 24px 4px;
  }
  .feature-grid, .service-list, .service-grid, .card-container, .testimonial-slider, .content-grid, .footer-main, .contact-info-block {
    gap: 12px;
  }
  .feature-item, .service-item, .service-block, .testimonial-card {
    min-width: 80vw;
    flex: 1 1 100%;
    padding: 20px 9px 18px 16px;
    font-size: .96rem;
  }
  .pricing-row {
    flex-direction: column;
    gap: 3px;
    min-width: 88vw;
    padding: 11px 7px;
    font-size: .95rem;
  }
  .pricing-row .service-title, .pricing-row .service-desc, .pricing-row .service-price {
    flex: unset;
    width: 100%;
    min-width: 0;
    text-align: left;
  }
  .testimonials {
    border-radius: 0;
    padding: 22px 4px;
  }
  .footer-main {
    flex-direction: column;
    gap: 12px;
    padding: 30px 0 12px 0;
    align-items: flex-start;
  }
}

/* FLEX DIRECTION SWITCHES FOR STACKED MOBILE */
@media (max-width: 768px) {
  .feature-grid, .service-list, .service-grid, .card-container, .testimonial-slider, .content-grid, .contact-info-block, .footer-main {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .cookie-modal-content {
    min-width: 94vw;
    max-width: 98vw;
    padding: 20px 7px 18px 10px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 6px;
    gap: 12px;
  }
}

/* ---------------------------------------------------------------------
   SMALL INTERACTIVE BITS (checkbox, focus)
----------------------------------------------------------------------*/
input, button, select, textarea {
  font-family: var(--font-body, 'Open Sans', Arial, sans-serif);
  outline: none;
}
button:focus, input:focus, .btn-primary:focus, .btn-secondary:focus {
  outline: 2px solid var(--color-secondary, #EEC643);
  outline-offset: 2px;
}

/* Checkbox custom
.cookie-category input[type="checkbox"] {
  accent-color: #EEC643;
}
*/

/* Micro-hover for feature/service icons & card icons */
.feature-item img, .service-item img, .service-block img, .contact-details img, .location-block img {
  filter: grayscale(24%) brightness(1.13) contrast(1.08);
  height: 34px;
  width: 34px;
  margin-bottom: 6px;
  transition: filter 0.2s, transform 0.13s;
}
.feature-item:hover img, .service-item:hover img, .service-block:hover img {
  filter: grayscale(0%) brightness(1.23) drop-shadow(0 2px 5px #EEC64355);
  transform: scale(1.06) rotate(-5deg);
}


/* Icon alignment in contact details */
.contact-details p, .location-block p {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #F8F9FA;
  font-size: 1rem;
}
.contact-details a, .location-block a {
  color: #EEC643;
  text-decoration: underline;
}

/* Hide default outline for images */
img:focus {
  outline: 0;
}

/* ---------------------------------------------------------------------
   UTILITIES & HELPERS
----------------------------------------------------------------------*/
.hide, .d-none { display: none !important; }

.centered {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-center {
  text-align: center !important;
}

.mt-2 { margin-top: 12px; }
.mt-3 { margin-top: 22px; }
.mb-2 { margin-bottom: 12px; }
.mb-3 { margin-bottom: 22px; }

/* Ensure no overlapping of content */
[class*="container"],
[class*="card"],
[class*="section"],
.content-wrapper,
.feature-item,
.service-item {
  margin-bottom: 20px;
}
[class*="container"] > *:not(:last-child) {
  margin-bottom: 20px;
}

/* Scrollbar for industrial feel (optional) */
::-webkit-scrollbar { width: 8px; background: #232C36; }
::-webkit-scrollbar-thumb { background: #151B22; border-radius: 6px; }

/* ---------------------------------------------------------------------
   END OF STYLE SHEET
----------------------------------------------------------------------*/