/* =======================
   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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #12181b;
  color: #F6F9FB;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  letter-spacing: 0.01em;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: inline-block;
}
a {
  color: #E6C36F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #fffbe1;
}
ul, ol {
  list-style: none;
}
strong {
  font-weight: 700;
  color: #E6C36F;
}
section {
  width: 100%;
}

/*=========================
  BRAND VARIABLES (FALLBACKS)
===========================*/
:root {
  --color-primary: #19487A;
  --color-secondary: #E6C36F;
  --color-accent: #F6F9FB;
  --color-bg-dark: #12181b;
  --color-bg-section: #191f23;
  --color-metal: #b2b7be;
  --color-shadow: rgba(11,20,30,0.12);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 24px;
  --shadow-main: 0 4px 24px 0 var(--color-shadow);
  --transition-main: all 0.22s cubic-bezier(.4,0,.2,1);
}

/*=====================
  TYPOGRAPHY
=====================*/
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
  color: #F6F9FB;
  line-height: 1.1;
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  color: #E6C36F;
  line-height: 1.2;
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: #b2b7be;
  line-height: 1.22;
}
h4, .h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.12rem;
  margin-bottom: 8px;
  color: #b2b7be;
}
p, li, span {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #d6dce1;
  line-height: 1.6;
}
.subheadline {
  font-size: 1.18rem;
  font-family: var(--font-body);
  color: #b2b7be;
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}
.cta-contact {
  margin-top: 24px;
  font-family: var(--font-body);
  font-size: 1.10rem;
  color: var(--color-metal);
  display: flex;
  align-items: center;
  gap: 10px;
}

/*========================
  CONTAINER & LAYOUT
=========================*/
.container {
  max-width: 1180px;
  padding: 0 18px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-section);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-main);
}
@media (min-width: 900px) {
  .section {
    padding: 54px 40px;
    margin-bottom: 90px;
  }
}

/* Mandatory Flexbox Patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: #191f23;
  border: 1px solid #232930;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(11,20,30,0.13);
  display: flex;
  flex-direction: column;
  min-width: 200px;
  flex: 1 1 260px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 6px 28px 0 rgba(11,20,30,0.18);
  border-color: #E6C36F;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 18px;
  gap: 10px;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }
}

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

/**** Nav & Header ****/
header {
  width: 100%;
  background: #181d22;
  border-bottom: 1.5px solid #232930;
  box-shadow: 0 2px 8px rgba(11, 20, 30, 0.08);
  padding: 0;
  z-index: 99;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 24px;
}
.logo img {
  height: 48px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #F6F9FB;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: background 0.19s, color 0.19s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #233047;
  color: #E6C36F;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  padding: 12px 28px;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  box-shadow: 0 2px 8px rgba(16,23,38,0.13);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.14s;
  display: inline-block;
  margin-left: 24px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #163a62;
  color: #E6C36F;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 18px rgba(11,20,30,0.18);
}
/* Burger menu style */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #E6C36F;
  font-size: 2.2rem;
  cursor: pointer;
  margin-left: 18px;
  display: none;
  z-index: 1001;
  padding: 4px 8px;
  border-radius: var(--radius-md);
  transition: background 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: rgba(230,195,111,0.18);
}
@media (max-width: 1100px) {
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .btn-primary {
    padding: 10px 16px;
    font-size: .98rem;
    margin-left: 6px;
  }
  .header .container {
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  height: 100vh;
  width: 100vw;
  background: #191f23;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 0 0 0;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.53,.25,.32,1.15);
  box-shadow: 2px 0 16px rgba(24,27,36,0.14);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #E6C36F;
  font-size: 2.2rem;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  z-index: 1600;
  border-radius: 50%;
  padding: 8px 12px;
  transition: background 0.16s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: rgba(230,195,111,0.13);
}
.mobile-nav {
  margin-top: 68px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  padding: 0 30px;
}
.mobile-nav a {
  color: #F6F9FB;
  font-family: var(--font-display);
  font-size: 1.15rem;
  padding: 16px 8px;
  border-bottom: 1px solid #232930;
  width: 100%;
  display: block;
  border-radius: var(--radius-sm);
  transition: background 0.19s, color 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #233047;
  color: #E6C36F;
}
@media (min-width:992px) {
  .mobile-menu {
    display: none !important;
  }
}

/*=====================
  HERO SECTION
====================*/
.hero {
  background: linear-gradient(100deg, rgba(25,72,122,0.85) 0%, rgba(18,24,27,0.96) 100%);
  border-bottom: 2px solid #232930;
  padding: 54px 0;
  min-height: 340px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 650px;
}

@media (max-width: 768px) {
  .hero {
    padding: 38px 0 26px 0;
  }
  .hero .container {
    padding: 0 10px;
  }
}

/*=====================
  FEATURE GRID & ICONS
=====================*/
.feature-grid,
.service-list,
.footer-nav ul {  /* to support lists with spacing */
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid li,
.service-list li {
  background: #191f23;
  border: 1px solid #232930;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(11,20,30,0.10);
  padding: 28px 22px 18px 22px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-width: 220px;
  flex: 1 1 220px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, border 0.2s;
  flex-direction: column;
}
.feature-grid li img,
.service-list li img {
  width: 38px;
  height: 38px;
  margin-top: 3px;
  margin-right: 10px;
  filter: grayscale(45%) drop-shadow(1px 2px 0 #E6C36F80);
}
.feature-grid li:hover,
.service-list li:hover {
  border-color: #E6C36F;
  box-shadow: 0 6px 24px rgba(11,20,30,0.17);
}
.service-list li a {
  display: inline-block;
  margin-top: 8px;
  color: #E6C36F;
  border-bottom: 1px dashed #E6C36F;
  transition: color 0.18s;
}
.service-list li a:hover,
.service-list li a:focus {
  color: #fffbe1;
  border-bottom: 1px solid #fffbe1;
}
@media (max-width: 900px) {
  .feature-grid, .service-list {
    gap: 14px;
  }
  .feature-grid li, .service-list li {
    min-width: 170px;
    padding: 16px 12px 11px 12px;
  }
}
@media (max-width: 600px) {
  .feature-grid, .service-list {
    flex-direction: column;
    gap: 10px;
  }
}

/*=====================
  TESTIMONIALS
====================*/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F6F9FB;
  color: #22292E;
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  box-shadow: 0 2px 14px rgba(25,72,122,0.06);
  border-left: 5px solid var(--color-secondary);
  font-family: var(--font-body);
  font-size: 1.10rem;
  line-height: 1.45;
  transition: box-shadow 0.2s, border 0.18s;
}
.testimonial-card p {
  color: #233047;
  margin: 0 0 0 0;
}
.testimonial-card span {
  color: #555e6b;
  font-style: italic;
  font-size: 1rem;
}
.testimonial-card:hover {
  box-shadow: 0 8px 30px 0 rgba(25,72,122,.14);
  border-left: 5px solid #19487A;
}

/* Guarantee readable testimonial contrast */
@media (max-width:600px) {
  .testimonial-card {
    flex-direction: column;
    gap: 6px;
    padding: 16px 10px;
    font-size: 1rem;
  }
}

/*************
  CTA block
**************/
.cta-block {
  background: linear-gradient(95deg,#191f23 80%, #1d2942 100%);
  box-shadow: 0 2px 12px rgba(25,72,122,.11);
  border-radius: var(--radius-lg);
  padding: 38px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.cta-block h2 {
  color: #E6C36F;
  margin-bottom: 10px;
}
.cta-block .btn-primary {
  margin-left: 0;
  margin-top: 8px;
}

/**** Special Notes ****/
.note {
  background: #193a62;
  color: #fff;
  border-radius: var(--radius-md);
  padding: 18px 18px;
  margin: 28px 0 12px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(25,72,122,0.11);
  border-left: 5px solid #E6C36F;
}
.confirmation-message {
  background: #193a62;
  color: #fff;
  border-radius: var(--radius-md);
  padding: 15px 12px;
  margin: 24px 0 18px 0;
  font-size: 1.04rem;
}

/*********************
   FOOTER
**********************/
footer {
  background: #1a232d;
  border-top: 1.5px solid #232930;
  padding: 0;
  width: 100%;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  padding: 38px 0 6px 0;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 6px;
}
.footer-nav a {
  color: #b2b7be;
  font-size: 0.98rem;
  transition: color 0.16s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #E6C36F;
}
.footer-contact p {
  color: #90a0b1;
  font-size: 0.97rem;
}
.footer-content a img {
  width: 52px;
  height: auto;
}
.footer-copy {
  color: #d6dce1;
  text-align: center;
  padding: 12px 0 18px 0;
  font-size: .98rem;
  border-top: 1px solid #232930;
  margin-top: 14px;
}
@media (max-width:850px) {
  .footer-content {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/******************
  COOKIE CONSENT BANNER
*******************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #222c36;
  color: #fff;
  box-shadow: 0 -2px 22px 0 rgba(25,72,122,0.08);
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 9999;
  gap: 16px;
  border-top: 4px solid #E6C36F;
  font-size: 1rem;
  animation: slideUpBanner 0.55s cubic-bezier(.36,.54,.16,1.11);
}
@keyframes slideUpBanner {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
}
.cookie-banner button {
  border: none;
  border-radius: var(--radius-sm);
  padding: 9px 22px;
  background: #19487A;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.14s, color 0.14s, box-shadow 0.15s;
  box-shadow: 0 2px 8px rgba(25,72,122,0.13);
}
.cookie-banner button.accept {
  background: #19487A;
}
.cookie-banner button.reject {
  background: #232930;
  color: #E6C36F;
}
.cookie-banner button.settings {
  background: #E6C36F;
  color: #1a2333;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #163a62;
  color: #fff;
}
.cookie-banner button.settings:hover,
.cookie-banner button.settings:focus {
  background: #d7b159;
  color: #222;
}
.cookie-banner.hide {
  display: none !important;
}

/* Cookie modal popup */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0; right:0; bottom:0;
  background: rgba(25,33,45,0.9);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInOverlay 0.34s;
}
@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #191f23;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 44px rgba(25,72,122,0.16);
  padding: 42px 32px 32px;
  max-width: 440px;
  width: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: popupCookie 0.30s cubic-bezier(.53,.18,.38,1);
}
@keyframes popupCookie {
  from { transform: translateY(40px) scale(0.95); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: #E6C36F;
  font-size: 1.32rem;
  margin-bottom: 16px;
}
.cookie-modal .modal-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-modal .category-label {
  font-size: 1rem;
  color: #b2b7be;
}
.cookie-modal .switch {
  appearance: none;
  width: 46px;
  height: 22px;
  background: #233047;
  border-radius: 17px;
  position: relative;
  outline: none;
  transition: background 0.18s;
  cursor: pointer;
}
.cookie-modal .switch:checked {
  background: var(--color-secondary);
}
.cookie-modal .switch::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.19s;
  box-shadow: 0 1.5px 3px rgba(10,13,16,0.07);
}
.cookie-modal .switch:checked::before {
  transform: translateX(22px);
}
.cookie-modal .switch[disabled],
.cookie-modal .switch[aria-disabled="true"] {
  opacity: 0.52;
  pointer-events: none;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal .close-btn {
  position: absolute;
  right: 20px;
  top: 18px;
  background: none;
  border: none;
  color: #E6C36F;
  font-size: 1.7rem;
  cursor: pointer;
  padding: 4px 7px;
  border-radius: 50%;
  transition: background 0.14s;
}
.cookie-modal .close-btn:focus,
.cookie-modal .close-btn:hover {
  background: rgba(230,195,111,0.15);
}

/*******************************************
   RESPONSIVE
*******************************************/
@media (max-width: 900px) {
  .container {
    max-width: 97vw;
    padding: 0 10px;
  }
  .footer-content {
    padding: 28px 0 6px 0;
  }
}
@media (max-width: 600px) {
  h1, .h1 { font-size: 1.6rem; }
  h2, .h2 { font-size: 1.20rem; }
  h3, .h3 { font-size: 1.06rem; }
  .btn-primary { font-size: .96rem; padding: 8px 10px; }
  .container { padding: 0 5px; }
  .footer-content a img { width:38px; }
  .section { margin-bottom: 36px; padding: 24px 8px; }
}

/**************************************************
   INDUSTRIAL MODERN: METALLIC & SHADOW EFFECTS
***************************************************/
.section, .card, .feature-grid li, .service-list li {
  box-shadow: 0 4px 22px 0 rgba(39,48,59,0.08),0 1.5px 2px rgba(230,195,111,0.11);
  border-radius: var(--radius-md);
}
.card, .feature-grid li, .service-list li {
  border: 1.5px solid #232930;
  background: linear-gradient(102deg,#181d22 85%, #232930 100%);
}
.cta-block, .hero, header, footer {
  box-shadow: 0 1.5px 16px 0 rgba(25,72,122,0.09);
}
.card:before, .feature-grid li:before, .service-list li:before {
  /* Example metallic accent as horizontal bar */
  content: "";
  position: absolute;
  left: 0; top: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #E6C36F55 0%, #b2b7be33 100%);
  border-top-left-radius: var(--radius-md);
  border-top-right-radius: var(--radius-md);
  pointer-events: none;
}

/* INPUTS (if forms are implemented in the future) */
input, textarea, select {
  background: #232930;
  color: #F6F9FB;
  border: 1.5px solid #233047;
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 1rem;
  font-family: var(--font-body);
  margin-bottom: 16px;
  transition: border 0.18s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #E6C36F;
}

/*====================*
 TABLES (if present)
===================*/
table {
  width: 100%;
  border-collapse: collapse;
  background: #191f23;
}
th, td {
  padding: 14px 10px;
  border: 1px solid #232930;
  color: #b2b7be;
}
th {
  background: #222c36;
  color: #E6C36F;
}

/*====================*
 HIDE ELEMENTS WHEN REQUIRED
====================*/
.hide, .hidden {
  display: none !important;
}

/* ================
* Z-INDEX LAYERS
==================*/
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
  z-index: 2500;
}
.mobile-menu {
  z-index: 3000;
}
.cookie-modal-overlay {
  z-index: 9999;
}

/* ============
* UTILITIES
==============*/
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.gap-16 { gap: 16px; }
gap-24 { gap: 24px; }
.rounded { border-radius: var(--radius-lg); }

/* Fix for no overlapping */
.card, .feature-grid li, .service-list li, .testimonial-card {
  margin-bottom: 22px;
}
.section + .section {
  margin-top: 22px;
}

/* Disable highlighting for non-interactive svg icons */
img[alt*="icon-"], svg[alt*="icon-"] {
  user-select: none;
  pointer-events: none;
}

/* Focus states for accessibility */
button:focus, a:focus {
  outline: 2px solid #E6C36F;
  outline-offset: 2px;
}

/******************
* FONT IMPORTS  -- Only if not defined by HTML already
*******************/
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/******************
* END OF CSS
*******************/
