/* ------------------------------------------------------------
   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;
}
html {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background-color: #161C24;
  color: #F2F2F2;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
*, *:before, *:after {
  box-sizing: border-box;
}
a {
  color: #FFB800;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fff;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
  padding-left: 0;
}
ul li, ol li {
  margin-bottom: 8px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
button, .cta {
  font-family: inherit;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  margin-bottom: 32px;
  background: #232A34;
  color: #F2F2F2;
  border-radius: 8px;
  overflow: hidden;
}
th, td {
  padding: 14px 16px;
  border-bottom: 1px solid #2A3540;
  text-align: left;
  font-size: 16px;
}
th {
  background: #1A3A5E;
  color: #FFB800;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
caption {
  caption-side: top;
  color: #FFB800;
  font-size: 1.125rem;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* ------------------------------------------------------------
   BRAND FONTS & BASE TYPOGRAPHY
------------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #F2F2F2;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: #FFB800;
  text-shadow: 1px 1px 0 #222, 0 1px 10px #1a3a5e80;
}
h2 {
  font-size: 2rem;
  color: #F2F2F2;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  color: #FFB800;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.25rem;
  color: #B6BDC6;
}
p, address {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #B6BDC6;
}
strong, b {
  font-weight: 700;
  color: #FFB800;
}

/* ------------------------------------------------------------
   INDUSTRIAL MODERN COLOR SCHEME & BACKGROUND EFFECTS
------------------------------------------------------------ */
body {
  background-color: #161C24;
  background-image: linear-gradient(135deg, #181C20 75%, transparent 100%), linear-gradient(170deg, #161C24 70%, #232A34 120%);
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #232A34;
  border-radius: 15px;
  box-shadow: 0 4px 20px 0 #11182099, 0 1px 2px #ffffff0d inset;
  border: 1px solid #313742;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #20252B;
  border-radius: 13px;
  border: 1.5px solid #3b4250;
  margin-bottom: 20px;
  padding: 28px 24px;
  box-shadow: 0 5px 20px 0 #181c2070, 0 1px 2px #fff1 inset;
  position: relative;
  min-width: 260px;
  flex: 1 1 300px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.card h3 {
  color: #FFB800;
  font-size: 1.13rem;
}

.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;
  background: #F2F2F2;
  color: #22304C;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px 0 #1a3a5e33, 0 1px 2px #232a340f inset;
  border-left: 6px solid #FFB800;
  max-width: 500px;
}
.testimonial-card p {
  color: #22304C;
  font-size: 1.05rem;
  line-height: 1.4;
  margin-bottom: 0;
}
.testimonial-card span {
  color: #1A3A5E;
  font-weight: 600;
  font-size: 0.98rem;
}
.testimonial-card div {
  display: flex;
  align-items: center;
  gap: 4px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ------------------------------------------------------------
   HEADER & NAVIGATION
------------------------------------------------------------ */
header {
  width: 100%;
  background: #181C20;
  border-bottom: 2px solid #232A34;
  box-shadow: 0 1px 14px 0 #13182255;
  z-index: 16;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}
header img {
  height: 46px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
header nav a {
  color: #F2F2F2;
  font-weight: 500;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.06rem;
  letter-spacing: 0.02em;
  padding: 3px 8px 3px 8px;
  border-radius: 6px;
  transition: background 0.16s, color 0.16s;
}
header nav a:hover, header nav a:focus {
  background: #FFB800;
  color: #22304C;
}

/* ---------------------------------------------------------------
   MOBILE NAVIGATION / HAMBURGER MENU
--------------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  z-index: 30;
  top: 22px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: #232A34;
  color: #FFB800;
  font-size: 2.4rem;
  border-radius: 8px;
  border: 1px solid #FFB800;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 6px 0 #13182266;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #FFB800;
  color: #232A34;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #181C20ee;
  box-shadow: -7px 0 40px 10px #1a3a5ec0;
  z-index: 99;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.71,-0.14,.2,1.22);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.0rem;
  color: #FFB800;
  background: transparent;
  border: none;
  align-self: flex-end;
  margin: 22px 24px 8px 0;
  cursor: pointer;
  transition: color 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
  background: #FFB800;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 32px 28px 0 38px;
  gap: 32px;
}
.mobile-nav a {
  color: #F2F2F2;
  font-size: 1.3rem;
  padding: 8px 12px;
  border-radius: 5px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  transition: background 0.13s, color 0.13s;
  margin-bottom: 8px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFB800;
  color: #232A34;
}

/* ------------------------------------------------------------
   HERO, CTA BUTTON STYLING
------------------------------------------------------------ */
.cta {
  display: inline-block;
  font-size: 1.09rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 8px;
  background: #1A3A5E;
  color: #FFB800;
  margin-right: 10px;
  margin-top: 8px;
  box-shadow: 0 2px 8px 0 #232A3499;
  position: relative;
  letter-spacing: 0.025em;
  transition: background 0.17s, color 0.17s, box-shadow 0.19s, transform 0.15s;
}
.cta.primary {
  background: linear-gradient(95deg, #1A3A5E 70%, #232A34 100%);
  color: #FFB800;
  border: 1.5px solid #FFB800;
  text-shadow: 0 1px 0 #181c2088;
}
.cta.secondary {
  background: #FFB800;
  color: #1A3A5E;
  border: 1.5px solid #1A3A5E;
  text-shadow: 0 1px 0 #fff2;
}
.cta:hover, .cta:focus {
  background: #FFB800;
  color: #232A34;
  box-shadow: 0 4px 22px 0 #FFB80055;
  transform: translateY(-2px) scale(1.035);
}
.cta.secondary:hover {
  background: #1A3A5E;
  color: #FFB800;
  border-color: #FFB800;
}

/* ------------------------------------------------------------
   BLOG, PRODUCT, SERVICE, FAQ, FOOTER, MISC
------------------------------------------------------------ */
.service-grid, .product-listings, .blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-grid > div, .product-listings > div, .blog-list > article {
  flex: 1 1 270px;
  min-width: 220px;
  background: #20252B;
  border: 1.5px solid #3b4250;
  border-radius: 11px;
  box-shadow: 0 2px 10px #1a3a5e27;
  padding: 24px 20px 20px 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s, transform 0.14s;
}
.service-grid > div:hover,
.product-listings > div:hover,
.blog-list > article:hover {
  box-shadow: 0 6px 24px 0 #FFB80033, 0 1px 2px #30394733 inset;
  transform: translateY(-2px) scale(1.015);
}
.category-nav {
  margin-bottom: 18px;
  margin-top: 4px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #FFB800;
  gap: 18px;
}
.category-nav a {
  color: #FFB800;
  font-weight: 600;
  transition: color 0.12s;
}
.category-nav a:hover, .category-nav a:focus {
  color: #F2F2F2;
  text-decoration: underline;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-list dt {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  color: #FFB800;
  margin-bottom: 3px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.faq-list dd {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #B6BDC6;
  margin-bottom: 10px;
  margin-left: 22px;
}

footer {
  margin-top: 58px;
  background: #131822;
  border-top: 2px solid #232A34;
  padding: 36px 0 22px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
}
footer nav {
  display: flex;
  gap: 16px;
  flex-direction: column;
}
footer nav a {
  color: #FFB800;
  font-size: 0.97rem;
  line-height: 1.3;
  transition: color 0.13s;
}
footer nav a:hover {
  color: #fff;
}
footer .text-section {
  font-size: 0.97rem;
  color: #B6BDC6;
  min-width: 260px;
}
footer .newsletter-section {
  min-width: 260px;
  background: #232A34;
  border-radius: 9px;
  padding: 22px 20px 14px 20px;
  box-shadow: 0 1px 8px #FFB80022;
}
footer h3 {
  margin-bottom: 9px;
  font-size: 1.15rem;
  color: #FFB800;
  font-weight: 700;
}
footer address, footer address a {
  color: #B6BDC6;
  font-size: 0.98rem;
  font-style: normal;
}

/* ------------------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
------------------------------------------------------------ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1999;
  width: 100%;
  max-width: 100vw;
  background: #232A34;
  color: #F2F2F2;
  border-top: 4px solid #FFB800;
  box-shadow: 0 -2px 16px 0 #1a3a5e70;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 20px 18px 20px;
  animation: bannerIn 0.33s ease-out;
}
@keyframes bannerIn {
  0% { opacity: 0; transform: translateY(80px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  color: #F2F2F2;
  margin-bottom: 4px;
  font-size: 1.01rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  margin-top: 6px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 11px 22px;
  margin-right: 8px;
  border-radius: 7px;
  border: 1.5px solid #FFB800;
  background: #1A3A5E;
  color: #FFB800;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s, border 0.15s;
}
.cookie-btn.accept {
  background: #FFB800;
  color: #232A34;
}
.cookie-btn.reject {
  background: #1A3A5E;
  color: #FFB800;
}
.cookie-btn.settings {
  background: #232A34;
  color: #FFB800;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #FFB800;
  color: #232A34;
  box-shadow: 0 1px 8px 0 #FFB80033;
  border-color: #FFB800;
}

/* Cookie Modal Styles */
.cookie-modal {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  z-index: 2003;
  left: 50%;
  top: 50%;
  width: 95vw;
  max-width: 430px;
  min-width: 270px;
  background: #232A34;
  color: #F2F2F2;
  border-radius: 14px;
  border: 2.5px solid #FFB800;
  box-shadow: 0 6px 40px 0 #1a3a5ec0;
  padding: 38px 30px 28px 30px;
  transform: translate(-50%,-50%) scale(0.96);
  opacity: 0;
  transition: opacity 0.21s, transform 0.21s;
}
.cookie-modal.open {
  display: flex;
  opacity: 1;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h2{
  color: #FFB800;
  margin-bottom: 14px;
  font-size: 1.19rem;
}
.cookie-modal .cookie-categories {
  width: 100%;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 1rem;
}
.cookie-modal label {
  font-size: 1rem;
  cursor: pointer;
  color: #F2F2F2;
}
.cookie-modal .toggle {
  width: 40px;
  height: 24px;
  background: #1A3A5E;
  position: relative;
  border-radius: 13px;
  margin-left: 6px;
  transition: background 0.12s;
  border: 1px solid #FFB800;
  display: flex;
  align-items: center;
}
.cookie-modal .toggle input {
  opacity: 0;
  width: 40px;
  height: 24px;
  cursor: pointer;
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
}
.cookie-modal .slider {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FFB800;
  transition: left 0.15s;
}
.cookie-modal .toggle input:checked + .slider {
  left: 18px;
  background: #FFB800;
}
.cookie-modal .cookie-btn-row {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.cookie-modal .cookie-btn {
  padding: 8px 18px;
  font-size: 1rem;
  border-radius: 6px;
}
/* Overlay for modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; top:0; right: 0; bottom:0;
  background: #232A34cc;
  z-index: 2002;
}
.cookie-modal.open + .cookie-modal-overlay {
  display: block;
}

/* ------------------------------------------------------------
   UTILITY CLASSES & SPACING SYSTEM
------------------------------------------------------------ */
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 32px !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 32px !important; }
.gap-1 { gap: 8px !important; }
.gap-2 { gap: 16px !important; }
.gap-3 { gap: 32px !important; }

/* ------------------------------------------------------------
   RESPONSIVE DESIGN (FLEXBOX ONLY!)
------------------------------------------------------------ */
@media (max-width: 1100px) {
  .content-wrapper, .service-grid, .product-listings, .blog-list, .card-container, .content-grid {
    gap: 16px;
  }
  header .container {
    flex-direction: row;
    gap: 16px;
  }
  .content-wrapper {
    padding: 0 0;
  }
}

@media (max-width: 900px) {
  .container { padding: 0 6px; }
  .content-wrapper, .service-grid, .product-listings, .blog-list, .card-container, .content-grid {
    gap: 12px;
  }
  .section {
    padding: 28px 10px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .service-grid > div, .product-listings > div, .blog-list > article, .card {
    min-width: 70vw;
    flex: 1 1 90vw;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 12px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .section {
    padding: 24px 4px;
    margin-bottom: 36px;
  }
  .card-container, .service-grid, .product-listings, .blog-list {
    flex-direction: column;
    gap: 16px;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
    justify-content: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .testimonial-card {
    max-width: 100%;
  }
  .content-wrapper {
    gap: 12px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  h3 {
    font-size: 1.08rem;
  }
}
@media (max-width: 500px) {
  .section { padding: 13px 1px; }
  .cookie-banner { padding: 9px 4px 8px 4px; }
  .cookie-modal { padding: 18px 10px 18px 10px; min-width: 140px; }
  .service-grid > div, .product-listings > div, .blog-list > article, .card {
    min-width: unset;
    padding: 18px 8px 10px 8px;
  }
}
/* Extra adjustments for extreme small screens */
@media (max-width: 380px) {
  .mobile-menu { font-size: 15px; }
  .mobile-nav a { font-size: 1.07rem; }
}

/* ------------------------------------------------------------
   MICRO-INTERACTIONS & HOVER EFFECTS
------------------------------------------------------------ */
button, a.btn, .cta, .cookie-btn {
  transition: background 0.17s, color 0.17s, box-shadow 0.14s, transform 0.12s;
}
button:active, .cta:active, .cookie-btn:active  {
  transform: scale(0.96);
  box-shadow: none;
}
/* Focus outlines for a11y */
button:focus, .cta:focus, .cookie-btn:focus, .mobile-menu-toggle:focus {
  outline: 2.5px solid #FFB800;
  outline-offset: 2px;
}

/* ------------------------------------------------------------
   BRAND METALLIC ACCENTS
------------------------------------------------------------ */
/* Add thin metallic bottom border to cards, CTAs, footer nav links */
.card, .service-grid > div, .product-listings > div, .blog-list > article {
  border-bottom: 2.5px solid #B6BDC6;
}
.cta, .cookie-btn {
  box-shadow: 0 1px 8px #FFB80044;
}
footer nav a {
  border-bottom: 1.5px solid #FFB80033;
  padding-bottom: 1px;
}

/* ------------------------------------------------------------
   INDUSTRIAL FONTS & URBAN FEEL
------------------------------------------------------------ */
h1, h2, h3, h4 {
  text-transform: none;
  letter-spacing: 0.015em;
}

/* Metal/tech divider effect */
.divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, #242832 30%, #FFB800 50%, #242832 70%);
  border: none;
  margin: 27px 0;
  opacity: 0.7;
}

/* ------------------------------------------------------------
   SCROLLBAR (nice for industrial feel)
------------------------------------------------------------ */
::-webkit-scrollbar {
  width: 13px;
  background: #20252B;
}
::-webkit-scrollbar-thumb {
  background: #394353;
  border-radius: 8px;
  border: 3px solid #232A34;
}
::-webkit-scrollbar-thumb:hover {
  background: #FFB800;
}

/* ------------------------------------------------------------
   OVERRIDES & SPECIALS
------------------------------------------------------------ */
/* Remove default outline from *:active for prettier UX */
*:active { outline: none; }

/* Remove focus for mouse but keep for keyboard */
:focus:not(:focus-visible) {
  outline: none !important;
}

/* Hide visually but keep accessible */
.visually-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ------------------------------------------------------------
   END OF FILE
------------------------------------------------------------ */