/* ============================
   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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background: #131818;
  color: #E6F2EE;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
img,svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #F0B900;
  text-decoration: none;
  transition: color 0.2s;
  font-family: inherit;
}
a:hover, a:focus {
  color: #FFD85A;
}
ul, ol {
  padding-left: 1.5em;
}
button, input[type="button"], input[type="submit"] {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* ============================
   BRAND / BASE COLORS
   ============================ */
:root {
  --primary: #085E53;
  --secondary: #E6F2EE;
  --accent: #D29E00;
  --gray-dark: #23292A;
  --gray: #4B5050;
  --gray-light: #A2ACAF;
  --text-main: #E6F2EE;
  --text-dark: #23292A;
  --bg-main: #131818;
  --bg-card: #222728;
  --bg-metal: #081013;
  --shadow: 0 2px 16px 0 rgba(30,48,53,0.22);
}

/* ============================
   TYPOGRAPHY
   ============================ */
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--text-main);
  background: var(--bg-main);
  letter-spacing: 0.01em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #fff;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.75rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.375rem; margin-bottom: 10px; }
h4 { font-size: 1.13rem; }
.hero h1, .hero h2, .hero h3 {
  color: #fff;
  text-shadow: 0 2px 8px rgba(30,30,35,0.17);
}
strong {
  font-weight: 700;
  color: var(--accent);
}
p, ul, ol, li {
  font-size: 1.08rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
ul li, ol li {
  margin-bottom: 4px;
}
blockquote {
  font-size: 1.15rem;
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 18px;
  color: var(--primary);
}

/* ============================
   CONTAINER & SECTION SPACING
   ============================ */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 18px;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--bg-card);
  margin-bottom: 20px;
  position: relative;
  border-radius: 10px;
  box-shadow: var(--shadow);
  border: 1.5px solid #303535;
  transition: box-shadow 0.23s, transform 0.26s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 28px 0 rgba(241,218,41,0.11), 0 2px 18px 0 rgba(41,85,121,0.18), var(--shadow);
  transform: translateY(-5px) scale(1.01);
}

.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 {
  flex: 1 1 320px;
  min-width: 260px;
}
.address-map {
  flex: 1 1 260px;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* Spacing patterns for .testimonial-card and .feature-item */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  color: var(--text-dark);
  border-radius: 13px;
  box-shadow: 0 2px 14px 0 rgba(41,41,30,0.13),0 1px 8px 0 var(--primary),var(--shadow);
  margin-bottom: 24px;
  border-left: 6px solid var(--accent);
  position: relative;
  min-width: 0;
}
.testimonial-card blockquote {
  color: var(--primary);
}
.testimonial-card span {
  font-size: 0.98rem;
  font-weight: 600;
  color: #45484c;
  margin-left: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

/* ============================
   INDUSTRIAL MODERN AESTHETIC
   ============================ */
body {
  background: linear-gradient(120deg, #131818 0%, #23292A 100%);
  background-repeat: no-repeat;
}
.section, main section, .hero {
  border-radius: 16px;
  box-shadow: 0 1px 18px 0 rgba(41, 41, 30, 0.07), var(--shadow);
  background: var(--bg-card);
  border: 1.5px solid #23292A;
}

/* Metallic effects for accents */
hr, .brand img, .logo img {
  filter: brightness(1.08) contrast(1.2) drop-shadow(0 0 2px var(--accent));
}
h1, h2, h3, .cta.primary {
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero, .hero .container {
  background: linear-gradient(112deg, #131818 68%, #262B2D 120%)
    center/cover no-repeat;
  color: #fff;
  border-bottom: 1.5px solid var(--gray-dark);
  padding: 48px 20px 44px 20px;
  min-height: 320px;
}

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

.features .features-grid > div {
  background: var(--bg-main);
  border: 1.5px solid #262B2D;
  border-radius: 9px;
  box-shadow: 0 1px 14px 0 rgba(37,48,49,0.13);
  padding: 26px 20px 18px 20px;
  min-width: 220px;
  transition: box-shadow 0.22s, transform 0.22s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.features .features-grid > div img {
  width: 38px;
  height: 38px;
  filter: grayscale(45%) brightness(1.2) drop-shadow(0 2px 6px #08231b)
    drop-shadow(0 0 1px var(--accent));
}
.features .features-grid > div:hover, .features .features-grid > div:focus-within {
  box-shadow: 0 2px 18px 0 var(--accent),0 2px 18px 0 var(--primary), var(--shadow);
  transform: translateY(-3px) scale(1.02);
  border-color: var(--accent);
}

/* ============================
   BUTTONS & CTA
   ============================ */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--text-dark);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.09rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 8px;
  border: none;
  padding: 13px 32px 13px 26px;
  margin: 10px 0 0 0;
  box-shadow: 0 2px 10px 0 rgba(210,158,0,0.24);
  transition: background 0.2s, color 0.2s, transform 0.19s, box-shadow 0.14s;
  cursor: pointer;
  letter-spacing: 0.05em;
  outline: none;
  gap: 8px;
}
.cta.primary {
  background: linear-gradient(90deg, #F0B900 90%, #B99009 100%);
  color: #23292A;
  border: 2px solid #FFD85A;
  box-shadow: 0 2px 18px rgba(210,158,0,0.08);
}
.cta:hover, .cta:focus {
  background: #D29E00;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 28px 0 rgba(255,216,90,0.12);
  outline: 2px solid var(--accent);
}

/* ============================
   HEADER, NAVIGATION, BRANDING
   ============================ */
header {
  background: var(--bg-metal);
  box-shadow: 0 2px 10px rgba(16,23,28,0.12);
  position: relative;
  z-index: 100;
  border-bottom: 2px solid #181d1a;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}
.logo img {
  height: 46px;
  width: auto;
  filter: grayscale(30%) brightness(1.3) drop-shadow(0 2px 5px #999) drop-shadow(0 1.2px 1px var(--accent));
}
.main-nav {
  display: flex;
  gap: 22px;
}
.main-nav a {
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  color: #E6F2EE;
  padding: 4px 6px;
  border-bottom: 2px solid transparent;
  font-weight: 600;
  transition: color 0.17s, border-bottom 0.22s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--accent);
  border-bottom: 2.5px solid var(--accent);
}
header .cta.primary {
  margin-left: 22px;
  min-width: 154px;
}

/* ============================
   MOBILE MENU
   ============================ */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: #23292A;
  font-size: 2rem;
  padding: 9px 18px;
  border-radius: 8px;
  margin-left: 18px;
  border: 2px solid #ffd85a;
  cursor: pointer;
  z-index: 211;
  transition: background 0.18s, color 0.15s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--primary);
  background: #ffd85a;
  color: #333;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 88vw;
  max-width: 345px;
  background: linear-gradient(120deg, #131818 89%, #222728 100%);
  box-shadow: 8px 0 24px 0 rgba(25,25,17,0.23);
  transform: translateX(-120%);
  transition: transform 0.33s cubic-bezier(0.56, 0.14, 0.29, 0.95);
  z-index: 2032;
  padding: 22px 28px 26px 26px;
  gap: 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--secondary);
  color: var(--primary);
  font-size: 2rem;
  border: 2px solid var(--primary);
  border-radius: 6px;
  padding: 3px 14px;
  margin-bottom: 22px;
  cursor: pointer;
  box-shadow: 0 2px 7px rgba(4,28,40,0.10);
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent);
  color: #fff;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}
.mobile-nav a {
  font-size: 1.17rem;
  color: var(--accent);
  text-transform: uppercase;
  padding: 13px 0 13px 6px;
  border-bottom: 1.5px solid #363c3c;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.03em;
  font-weight: 600;
  transition: color 0.17s, border-left 0.14s, background 0.14s;
  border-left: 3.5px solid transparent;
  border-radius: 3px 18px 18px 3px;
  background: transparent;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff;
  background: rgba(210,158,0,0.08);
  border-left: 3.5px solid var(--accent);
  outline: none;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 11px;
  }
  header .cta.primary {
    margin-left: 10px;
  }
}
@media (max-width: 920px) {
  .main-nav {
    gap: 7px;
  }
  header .cta.primary {
    display: none;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 2px;
    padding: 8px 7px;
  }
}
@media (max-width: 830px) {
  .main-nav a {
    font-size: 0.95rem;
  }
}
@media (max-width: 780px) {
  .main-nav {
    display: none;
  }
  header .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .logo img {
    height: 38px;
  }
}

/* ============================
   MAIN LAYOUT - FLEX ONLY
   ============================ */
main {
  display: flex;
  flex-direction: column;
  gap: 34px;
  margin: 0;
  padding-top: 0;
}

.features .content-wrapper,
.services .content-wrapper,
.legal .content-wrapper,
.about-story .content-wrapper,
.confirmation .content-wrapper,
.contact-details .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: flex-start;
}

/* ============================
   FOOTER
   ============================ */
footer {
  background: var(--bg-metal);
  color: #c7cfcc;
  padding: 38px 0 28px 0;
  margin-top: 44px;
  border-top: 2px solid #181d1a;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex: 2 1 240px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.footer-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-bottom 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
  border-bottom: 2px solid var(--accent);
}
.contact-info {
  flex: 2 1 260px;
  font-size: 0.99rem;
  color: #c7cfcc;
  line-height: 1.6;
}
.brand {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  color: #BACAC5;
}
.brand img {
  height: 44px;
  margin-bottom: 5px;
}
.brand p {
  font-size: 1.04rem;
}

/* ============================
   RESPONSIVE DESIGN
   ============================ */
@media (max-width: 768px) {
  .container, main {
    padding: 0 8px;
  }
  .content-wrapper, .features .features-grid, .content-grid,
  .services .content-wrapper, .testimonial-card, .feature-item,
  .about-story .content-wrapper, .contact-details .content-wrapper {
    flex-direction: column;
    gap: 18px!important;
  }
  .section, main section, .hero {
    padding: 26px 8px;
    border-radius: 0 0 12px 12px;
  }
  .testimonial-card {
    padding: 14px 7px 14px 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    font-size: 1rem;
    margin-bottom: 14px;
  }
  .features .features-grid > div {
    padding: 17px 10px 14px 10px;
    min-width: 0;
  }
  .brand img {
    height: 30px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 0 10px;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.65rem;margin-bottom:12px; }
  h2 { font-size: 1.25rem;margin-bottom:13px; }
  .section, main section, .hero{
    padding: 12px 2px 15px 3px;
    border-radius: 0;
  }
}

/* ============================
   MISC. CLASSES AND LAYOUT
   ============================ */
/* Confirmation page */
.confirmation .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 5px;
}
.confirmation .cta.primary {
  margin-top: 18px;
  align-self: flex-start;
}

/* Legal section styles */
.legal .content-wrapper {
  background: var(--bg-card);
  border-radius: 10px;
  border: 1.5px solid #181d1a;
  padding: 24px 24px 18px 16px;
  margin-top: 8px;
  box-shadow: var(--shadow);
}
.legal .text-section {
  color: var(--secondary);
  font-size: 1.02rem;
}

/* Utility & common layout */
ul li {
  margin-bottom: 7px;
}

/* ============================
   COOKIE CONSENT BANNER
   ============================ */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg,#222728 89%, #A2ACAF 100%);
  color: var(--secondary);
  padding: 16px 20px 19px 20px;
  z-index: 3000;
  box-shadow: 0 -1px 12px rgba(18,24,24,0.22);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.cookie-consent-banner p {
  color: #f7f7f7;
  font-size: 1rem;
  flex: 2 1 300px;
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex: 1 1 200px;
}
.cookie-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 6.5px;
  border: none;
  padding: 9px 20px;
  transition: background 0.17s, color 0.16s, transform 0.15s;
}
.cookie-actions .accept {
  background: var(--accent);
  color: #23292A;
  border: 2px solid #ffd85a;
  margin-right: 4px;
}
.cookie-actions .accept:hover, .cookie-actions .accept:focus{
  background: #FFD85A;
  color: var(--primary);
  transform: translateY(-1.5px) scale(1.04);
}
.cookie-actions .reject {
  background: #23292A;
  color: #FFD85A;
  border: 2px solid var(--accent);
}
.cookie-actions .reject:hover, .cookie-actions .reject:focus{
  background: var(--primary);
  color: #FFD85A;
}
.cookie-actions .settings {
  background: var(--secondary);
  color: var(--primary);
  border: 1.5px solid #A2ACAF;
}
.cookie-actions .settings:hover, .cookie-actions .settings:focus{
  background: #E6F2EE;
  color: #742002;
  border-color: #FFD85A;
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    font-size: 0.98rem;
    padding: 10px 4px 13px 10px;
  }
  .cookie-actions {
    flex-direction: row;
    gap: 7px;
    width: 100%;
  }
}

/* Cookie consent modal */
.cookie-modal {
  position: fixed;
  z-index: 3100;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(18,24,24,0.77);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s cubic-bezier(.5,.05,.45,1);
}
.cookie-modal.show {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #212729;
  color: var(--secondary);
  border-radius: 12px;
  padding: 31px 24px 22px 24px;
  min-width: 290px;
  max-width: 99vw;
  box-shadow: 0 6px 38px 0 #181d1a, 0 1px 12px 0 var(--primary);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-content h2 {
  color: var(--accent);
  font-size: 1.39rem;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 11px;
  gap: 12px;
}
.cookie-category label {
  font-size: 0.99rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fef8e9;
}
.cookie-toggle {
  accent-color: var(--accent);
  width: 22px;
  height: 22px;
  margin-right: 3px;
}
.cookie-toggle[disabled] {
  filter: grayscale(100%) brightness(0.91);
  background: #a0a8a0;
  cursor: not-allowed;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 17px;
  font-size: 2.2rem;
  color: var(--accent);
  background: transparent;
  border: none;
  cursor: pointer;
  line-height: 1;
}
.cookie-modal-close:hover, .cookie-modal-close:focus{
  color: #fff;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 7px;
  justify-content: flex-end;
}
.cookie-modal-actions .accept {
  background: var(--accent);
  color: #23292A;
  border: 2px solid #ffd85a;
}
.cookie-modal-actions .accept:hover, .cookie-modal-actions .accept:focus{
  background: #FFD85A;
  color: var(--primary);
}
.cookie-modal-actions .cancel {
  background: #23292A;
  color: #FFD85A;
  border: 2px solid var(--accent);
}
.cookie-modal-actions .cancel:hover, .cookie-modal-actions .cancel:focus{
  background: var(--primary);
  color: #FFD85A;
}

/* ============================
   ANIMATION & MICROINTERACTIONS
   ============================ */
.cta, .card, .features .features-grid > div {
  transition: box-shadow 0.23s, transform 0.22s, background 0.18s;
}
.card:hover, .features .features-grid > div:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 3px 24px 0 var(--accent), 0 2px 18px 0 var(--primary), var(--shadow);
}
.mobile-menu {
  transition: transform 0.33s cubic-bezier(0.56, 0.14, 0.29, 0.95);
}
.cookie-consent-banner {
  animation: slideUpBanner 0.8s cubic-bezier(.4,1.6,.65,1) both;
}
@keyframes slideUpBanner {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal.show .cookie-modal-content {
  animation: cookieModalIn 0.5s cubic-bezier(.65,1.6,.31,1) both;
}
@keyframes cookieModalIn {
  from { transform: translateY(90px) scale(0.92); opacity:0; }
  to { transform: translateY(0) scale(1); opacity:1; }
}

/* ============================
   UTILITY: Other Common
   ============================ */
ul,ol {
  margin-bottom: 7px;
}
b,
strong {
  color: var(--accent);
  font-weight: bolder;
}

/* Ensure minimum margin between cards/sections */
.card, .features .features-grid > div, .testimonial-card, .hero, .section, .services, .about, .contact-call, .confirmation, .legal {
  margin-bottom: 24px;
}

/* Remove unwanted absolute positioning for content, only decorative logic allowed above */
/* No CSS grid or column properties are used anywhere */
