/* =======================
   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, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #232728;
  color: #F7F6F2;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img, picture {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
a {
  color: #8AB16D;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #BCE977;
}
ul, ol {
  margin: 0 0 16px 24px;
  padding: 0;
}
li {
  margin-bottom: 8px;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #F7F6F2;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
h1 { font-size: 2.375rem; margin-bottom: 24px; }
h2 { font-size: 1.75rem; margin-bottom: 18px; }
h3 { font-size: 1.32rem; margin-bottom: 10px; }
h4 { font-size: 1.1rem; margin-bottom: 6px; }
strong, b {
  font-weight: 700;
  color: #BBDBB0;
}
p, .subheadline { margin-bottom: 16px; }

@media (max-width: 768px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.12rem; }
  h3 { font-size: 1rem; }
}

/* ===================
    VARIABLES
=================== */
:root {
  --primary: #23445B;
  --primary-dark: #192f3e;
  --secondary: #8AB16D;
  --secondary-dark: #3d4a30;
  --accent: #F7F6F2;
  --grey-900: #232728;
  --grey-800: #303539;
  --grey-600: #47525A;
  --grey-400: #757E86;
  --border: #3e4448;
  --shadow-dark: 0 4px 16px rgba(36,44,59,0.22);
  --radius: 13px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}
/* For robust support: font stack fallbacks */
body { font-family: var(--font-body); }
h1,h2,h3,h4,h5,h6,.hero h1 { font-family: var(--font-display); }

/* ===================
   LAYOUT & CONTAINER
=================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 26px 10px;
  }
}

/* Flexbox layout patterns */
.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;
}
@media (max-width: 768px) {
  .content-grid,
  .text-image-section,
  .feature-grid,
  .team-grid {
    flex-direction: column!important;
    gap: 18px !important;
  }
}

/* ===================
   HEADER & NAVIGATION
=================== */
header {
  background: var(--grey-900);
  box-shadow: 0 3px 10px rgba(16,18,23,0.18);
  border-bottom: 1.5px solid var(--border);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding-top: 0; padding-bottom: 0;
}
.logo img {
  height: 39px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: var(--font-display);
}
.main-nav a {
  font-size: 1rem;
  color: #B1C6E2;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:active
{ color: var(--accent); background: var(--grey-800); }
.button.primary {
  background: var(--secondary);
  color: var(--primary-dark);
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 1px;
  padding: 12px 25px;
  margin-left: 24px;
  box-shadow: var(--shadow-dark);
  cursor: pointer;
  font-size: 1.09rem;
  transition: background .2s, color .16s, transform .16s;
  outline: none;
  display: inline-flex; align-items: center;
  gap: 8px;
}
.button.primary:hover, .button.primary:focus {
  background: #BCE977;
  color: var(--primary);
  transform: translateY(-2px) scale(1.04);
}
.button.secondary {
  border: 2px solid var(--secondary);
  background: transparent;
  color: var(--secondary);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 1px;
  padding: 12px 25px;
  margin-top: 20px;
  box-shadow: var(--shadow-dark);
  cursor: pointer;
  font-size: 1.05rem;
  transition: background .18s, color .16s, border-color .2s, transform .14s;
}
.button.secondary:hover, .button.secondary:focus {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--secondary-dark);
  transform: translateY(-2px) scale(1.03);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--secondary);
  padding: 8px 12px;
  cursor: pointer;
  z-index: 1002;
  transition: color .15s;
}
.mobile-menu-toggle:focus { outline: 2px solid var(--secondary); }

@media (max-width: 980px) {
  .main-nav { display: none; }
  .button.primary { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* =============
  MOBILE NAV
=============== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,39,40, 0.96);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.62,.35,.53,1);
  z-index: 1201;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--accent);
  margin: 20px 20px 0 0;
  cursor: pointer;
  z-index: 1202;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 24px 36px 0 40px;
}
.mobile-nav a {
  color: var(--secondary);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  padding: 18px 0;
  width: 100%;
  border-bottom: 1px solid var(--border);
  transition: color.17s, background .15s;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 3px;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--grey-800);
  color: var(--accent);
}
@media (min-width:981px) {
  .mobile-menu { display: none!important; }
}

/* =========================
   HERO SECTION
========================= */
.hero {
  background: linear-gradient(95deg, #23445B 70%, #464C51 93%, #232728 100%);
  padding: 48px 0 52px 0;
  min-height: 230px;
  border-radius: 0 0 28px 28px;
  margin-bottom: 42px;
  box-shadow: 0 6px 32px rgba(36,44,59,0.14);
}
.hero .container {
  display: flex;
  align-items: center;
  min-height: 165px;
}
.hero .content-wrapper {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  color: var(--accent);
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 15px;
  text-shadow: 0 4px 20px rgba(23,35,53,0.12);
}
.hero .subheadline {
  color: var(--secondary);
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin-bottom: 18px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .hero { padding: 30px 0 35px 0; min-height: 70px; margin-bottom: 28px; }
  .hero h1 { font-size: 1.2rem; }
  .hero .content-wrapper { padding: 0 1px; }
}

/* =========================
   FEATURE / CARD GRID
========================= */
.feature-grid, .team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 32px;
}
.feature-item, .team-member {
  background: var(--grey-800);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px 0 rgba(50,60,65,0.23);
  padding: 26px 20px 20px 20px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 12px;
  position: relative;
  transition: transform 0.14s cubic-bezier(.7,.26,.56,1), box-shadow .14s;
}
.feature-item img, .team-member img {
  height: 45px;
  width: 45px;
  margin-bottom: 10px;
  filter: brightness(0.92) grayscale(18%);
}
.feature-item h3, .team-member h3 {
  color: var(--secondary);
  font-size: 1.21rem;
  font-family: var(--font-display);
  letter-spacing: 0.6px;
}
.feature-item p, .team-member p {
  font-size: 1rem;
  color: var(--accent);
  line-height: 1.5;
}
.feature-item:hover, .feature-item:focus, .team-member:hover {
  box-shadow: 0 8px 34px 0 rgba(74,86,108,.19);
  border-color: var(--secondary);
  transform: translateY(-3px) scale(1.03);
}
@media (max-width: 900px) {
  .feature-item, .team-member {
    min-width: 160px;
    max-width: 100%;
    width: 100%;
    font-size: .97rem;
  }
  .feature-grid, .team-grid { gap: 16px; }
}

/* Testimonials */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--accent);
  color: #222a2e;
  border-radius: var(--radius);
  box-shadow: 0 2px 13px rgba(44,56,71,0.10);
  border: 1.5px solid #d1d9d1;
  margin-bottom: 20px;
  font-size: 1.06rem;
  position: relative;
  transition: box-shadow .14s, border .14s;
}
.testimonial-card strong {
  color: var(--primary-dark);
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-left: 14px;
}
.testimonial-card p {
  color: #222a2e;
  font-weight: 500;
}
.testimonial-card:hover {
  box-shadow: 0 6px 36px 0 rgba(44,56,71,0.16);
  border: 2.5px solid var(--secondary);
}

/* =====================
   LISTS & CONTENT
====================== */
.text-section {
  background: var(--grey-800);
  border-radius: var(--radius);
  padding: 24px 20px;
  margin-bottom: 24px;
  box-shadow: 0 2px 14px 0 rgba(50,60,65,0.08);
  border: 1.5px solid var(--border);
}
ul.contact-details {
  list-style: none;
  margin: 0 0 22px 0;
  padding: 0;
}
ul.contact-details li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 9px 0;
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: 0.2px;
  font-size: 1.03rem;
}
ul.contact-details img {
  width: 22px; height:22px;
}
ul li strong { color: var(--secondary); }

/* =====================
    BUTTONS & INTERACTIONS
======================= */
.button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  transition: box-shadow .16s, background .15s, color .13s, border-color .15s, transform .12s;
  outline: none;
}
.button:active {
  box-shadow: none;
  transform: scale(0.97);
}

/* ===================
   FOOTER
=================== */
footer {
  background: var(--grey-900);
  border-top: 1.5px solid var(--border);
  color: var(--accent);
  font-size: 1rem;
  margin-top: 56px;
  padding: 0; /* Remove default padding       */
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px 20px;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.14rem;
  color: var(--accent);
  font-weight: 700;
}
.footer-brand img {
  width: 36px;
  height: 36px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav a {
  color: var(--secondary);
  font-weight: 500;
  letter-spacing: .7px;
  font-size: 1rem;
  transition: color .18s;
}
.footer-nav a:hover, .footer-nav a:focus { color: #BCE977; }
.footer-contact {
  color: var(--accent);
  font-size: .98rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-contact img {
  width: 17px; height:17px; vertical-align: middle; margin-right: 6px;
}
.footer-social {
  gap: 16px; display: flex; flex-direction: row; align-items: center;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
    padding: 20px 10px;
    text-align: left;
  }
  .footer-brand img { width:28px; height:28px; }
}

/* ====================
  COOKIE CONSENT BANNER
====================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  background: var(--grey-800);
  color: var(--accent);
  z-index: 1502;
  box-shadow: 0 -2px 18px 0 rgba(40,54,65,0.21);
  border-top: 2px solid var(--secondary);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-banner-inner {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  width: 100%;
  max-width: 1050px;
  padding: 0 14px;
}
.cookie-banner p { margin-bottom: 0; color: var(--accent); font-size: 1rem; }
.cookie-banner-buttons {
  display: flex;
  gap: 10px;
}
.cookie-banner .cookie-btn {
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  padding: 9px 22px;
  cursor: pointer;
  transition: background .15s, color .13s, border .14s;
  box-shadow: 0 2px 6px 0 rgba(36,44,59,0.11);
}
.cookie-banner .accept {
  background: var(--secondary);
  color: var(--primary-dark);
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: #BCE977;
  color: var(--primary-dark);
}
.cookie-banner .reject {
  background: #38443a;
  color: var(--accent);
  border: 2px solid #486650;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #27402f;
  color: #eef5e6;
  border-color: #8AB16D;
}
.cookie-banner .settings {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #203a29;
  color: #BCE977;
  border-color: #BCE977;
}
@media (max-width: 700px) {
  .cookie-banner-inner { flex-direction: column; gap: 15px; }
  .cookie-banner { padding:10px 0; }
}

/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 2000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(35,44,45,0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .22s;
  opacity: 1;
}
.cookie-modal {
  background: var(--grey-900);
  color: var(--accent);
  border-radius: 12px;
  box-shadow: 0 7px 32px 0 rgba(41,55,59,0.19);
  max-width: 410px;
  width: 96vw;
  padding: 26px 25px 20px 25px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookieModalSlideIn .41s cubic-bezier(.62,.39,.22,1);
}
@keyframes cookieModalSlideIn {
  0%{opacity:0; transform: translateY(40px) scale(0.98);}
  100%{opacity:1; transform: none;}
}
.cookie-modal h3 { color: var(--secondary); font-size: 1.31rem; margin-bottom: 12px; }
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category label {
  color: var(--accent);
  font-size: 1rem;
  cursor: pointer;
  font-family: var(--font-body);
}
.cookie-toggle {
  appearance: none;
  display: inline-block;
  width: 36px; height: 19px;
  background: #535e5c;
  border-radius: 15px;
  position: relative;
  outline: none;
  cursor: pointer;
  vertical-align: middle;
  transition: background .18s;
}
.cookie-toggle:checked {
  background: var(--secondary);
}
.cookie-toggle::before {
  content: '';
  display: block;
  width: 15px; height: 15px;
  background: #fff;
  border-radius: 50%;
  position: absolute; left:2px; top:2px;
  transition: left .18s;
  box-shadow: 0 2px 6px 0 rgba(30,34,41,0.09);
}
.cookie-toggle:checked::before {
  left: 19px;
}
.cookie-category .always-on {
  color: #A8B8B0;
  font-size: 0.98rem;
  margin-left: 8px;
  font-style: italic;
}
.cookie-modal-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  font-size: 1.02rem;
  font-family: var(--font-display);
  background: #353841;
  color: var(--accent);
  border: none;
  border-radius: var(--radius);
  padding: 9px 17px;
  font-weight: 600;
  transition: background .14s, color .13s;
  cursor: pointer;
}
.cookie-modal .accept {
  background: var(--secondary);
  color: var(--primary-dark);
}
.cookie-modal .accept:hover, .cookie-modal .accept:focus {
  background: #BCE977;
  color: var(--primary-dark);
}
.cookie-modal .close {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--border);
}
.cookie-modal .close:hover, .cookie-modal .close:focus {
  border-color: var(--secondary);
  color: var(--secondary);
}

/* ===================
     LIST UTILITIES
=================== */
ul, ol { padding-left: 28px; margin-bottom: 16px; }

/* ===================
     UTILITIES & ANIMATIONS
=================== */
@media (max-width: 640px) {
  html { font-size: 93%; }
  h1, h2, h3, h4 { line-height: 1.2; }
  .cookie-modal { padding: 13px 6px; font-size: .98rem; }
  .footer-nav, .footer-contact { font-size: .96rem; }
  .feature-item, .team-member, .testimonial-card { padding: 14px 9px; font-size: .99rem; }
}
@media (max-width:400px) {
  .cookie-modal { padding: 9px 1px; }
}
/* Animation for burger menu */
.mobile-menu { will-change: transform, opacity; }
.mobile-menu.open { box-shadow: 8px 0 34px 4px rgba(36,44,59,.33); }

/* Misc Utilities */
.mb-20 { margin-bottom: 20px !important; }
.mt-20 { margin-top: 20px !important; }
.bordered {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 20px;
  background: var(--grey-800);
  margin-bottom: 14px;
}

/* ===================
   SPACING / GAP UTILITIES
=================== */
.gap-8 { gap:8px; }
.gap-12 { gap:12px; }
.gap-16 { gap:16px; }
.gap-20, .feature-grid, .card-container, .content-grid, .testimonial-group, .text-image-section, .team-grid { gap:20px; }
.gap-24 { gap: 24px; }

/* ==========================
     INDUSTRIAL MODERN DECOR
============================ */
.card, .feature-item, .team-member, .testimonial-card {
  /* Subtle metallic effect: */
  background-image: linear-gradient(98deg, rgba(47,55,63,0.15) 0%, rgba(35,39,40,0.11) 88%);
  box-shadow: 0px 1.5px 10px 0 rgba(55,60,73,0.11);
}

.section, .content-wrapper, .feature-grid, .testimonial-group, .card-container, .card {
  /* Give space between components using margin/gaps */
}

/* ================
    ACCESSIBILITY
================= */
:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
  z-index: 3;
}

/* ===== SCROLLBAR (styled for urban/industrial) =====*/
::-webkit-scrollbar {
  width: 9px;
  background: #33393a;
}
::-webkit-scrollbar-thumb {
  background: #484d4f;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #365570;
}

/* ========================
   END OF INDUSTRIAL MODERN
======================== */