/* 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.15;
  -webkit-text-size-adjust: 100%;
}
body {
  background: #181d22;
  color: #f2f2f2;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.05em;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #B8822C;
  text-decoration: underline;
  transition: color 0.2s;
  outline: none;
}
a:hover, a:focus {
  color: #94640C;
  text-decoration: none;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #f2f2f2;
  letter-spacing: 0.04em;
}
h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 20px;
  border-left: 6px solid #B8822C;
  padding-left: 12px;
}
h3 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 500;
}
p {
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 18px;
}
strong, b {
  color: #B8822C;
  font-weight: 600;
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
main {
  flex: 1 1 auto;
}
body {
  display: flex;
  flex-direction: column;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(30,53,87,0.82);
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(10,20,30,0.10), 0 1.5px 4px rgba(70,60,10,0.10);
  border: 1.5px solid #2c3440;
}

/* Cards & Grids */
.card-container, .feature-grid, .industry-grid, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  background: #232b32;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.10);
  border: 1.5px solid #32373f;
  padding: 28px 24px;
  color: #f2f2f2;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  min-width: 260px;
  flex: 1 1 280px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 40px rgba(180,130,44,0.19), 0 1.5px 8px rgba(70,60,10,0.13);
  transform: translateY(-6px) scale(1.02);
  border-color: #B8822C;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.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: center;
  gap: 20px;
  background: #F2F2F2;
  color: #232b32;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(30,53,87,0.10);
  border: 1.5px solid #B8822C;
  margin-bottom: 20px;
  font-size: 1.07rem;
  transition: border 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 40px rgba(73,73,73,0.12);
  border-color: #94640C;
}
.testimonial-card span {
  font-weight: bold;
  color: #1E3557;
  font-size: 0.99rem;
  margin-top: 5px;
  align-self: flex-end;
}

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

.partner-logos {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 16px;
}
.partner-logos img {
  height: 48px;
  background: #232b32;
  border-radius: 8px;
  padding: 10px;
  border: 1px solid #2c3440;
}

/* Header and Navigation */
header {
  background: #1E3557;
  border-bottom: 4px solid #94640C;
  box-shadow: 0 2px 12px rgba(30,53,87,0.14);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  gap: 20px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
header nav a {
  color: #F2F2F2;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 7px 13px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  font-size: 1rem;
}
header nav a:hover, header nav a:focus {
  background: #232b32;
  color: #B8822C;
}
header .cta {
  background: #B8822C;
  color: #181d22 !important;
  border-radius: 7px;
  padding: 8px 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-left: 12px;
  box-shadow: 0 2px 10px rgba(184,130,44,0.08);
  border: 1px solid #94640C;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
header .cta:hover, header .cta:focus {
  background: #94640C;
  color: #f2f2f2 !important;
  border-color: #B8822C;
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #F2F2F2;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 16px;
  transition: color 0.2s, background 0.2s;
  border-radius: 6px;
  z-index: 1102;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #232b32;
  color: #B8822C;
}

/* Mobile Slide Menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(27,31,38,0.96);
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.45,0,0.55,1);
  display: flex;
  flex-direction: column;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  color: #F2F2F2;
  background: none;
  border: none;
  font-size: 2rem;
  padding: 18px 22px 8px 20px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #B8822C;
  background: #232b32;
  border-radius: 50%;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
  align-items: flex-start;
  padding: 0 40px;
}
.mobile-nav a {
  color: #F2F2F2;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 0;
  letter-spacing: 0.04em;
  border-bottom: 1.5px solid #2c3440;
  width: 100%;
  border-radius: 0;
  transition: color 0.18s, background 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #B8822C;
  background: #232b32;
}

/* Hamburger Visibility */
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}

/* CTA button */
.cta {
  background: #B8822C;
  color: #232b32;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 7px;
  padding: 12px 28px;
  margin-top: 6px;
  margin-bottom: 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1rem;
  box-shadow: 0 2px 10px rgba(184,130,44,0.09);
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  display: inline-block;
  outline: none;
}
.cta:hover, .cta:focus {
  background: #94640C;
  color: #F2F2F2;
}

/* Form Elements */
input, select, textarea {
  background: #232b32;
  color: #f2f2f2;
  border: 1.5px solid #1E3557;
  border-radius: 6px;
  padding: 12px;
  width: 100%;
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  transition: border-color 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid #B8822C;
  border-color: #B8822C;
}
button {
  font: inherit;
}

/* Section styles */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  border-radius: 18px;
  background: rgba(26,30,36,0.89);
}

/* Footer Styles */
footer {
  background: #232b32;
  color: #f2f2f2;
  border-top: 3px solid #B8822C;
  box-shadow: 0 -2px 8px rgba(30,53,87,0.09);
  padding: 28px 0;
  position: relative;
  z-index: 2;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
footer nav {
  display: flex;
  gap: 14px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
footer nav a {
  color: #f2f2f2;
  text-decoration: none;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.15s;
}
footer nav a:hover, footer nav a:focus {
  color: #B8822C;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #a7a9ad;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.footer-brand img {
  height: 32px;
  border-radius: 7px;
  background: #181d22;
  padding: 3px;
}

/* Responsive Flex direction */
@media (max-width: 900px) {
  .feature-grid, .industry-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .content-wrapper {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    gap: 10px;
  }
  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  .section, section { padding: 26px 6px; }
  .container { padding: 0 8px; }
  .testimonial-card { padding: 15px; }
  .mobile-nav { padding: 0 15px; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.4rem; margin-bottom: 12px; }
  h2 { font-size: 1.05rem; }
  .cta { font-size: 0.99rem; padding: 10px 15px; }
  .footer-brand img { height: 28px; }
  .partner-logos img { height: 36px; }
}

/* Text-Image Section Responsive */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
}

/* Custom Icon Style */
img[alt^="icon-"] {
  height: 38px;
  width: 38px;
  object-fit: contain;
  vertical-align: middle;
  margin-right: 12px;
  display: inline-block;
  filter: contrast(1.12) grayscale(0.18) brightness(1.1) drop-shadow(0 2px 4px rgba(0,0,0,0.10));
  background: #232b32;
  border-radius: 7px;
  padding: 4.5px;
  border: 1px solid #888c98;
  box-shadow: 0 1px 4px rgba(30,40,60,0.10);
}

/* Industrial Modern Details */
.section {
  background: linear-gradient(90deg, rgba(30,53,87,0.95) 60%, rgba(40,40,40,0.98) 100%);
  border: 1.5px solid #30353b;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* Special Features */
.feature-grid > div, .industry-grid > div {
  background: #232b32;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(30,53,87,0.08);
  border: 1.2px solid #2c3440;
  padding: 24px 18px;
  color: #f2f2f2;
  min-width: 210px;
  flex: 1 1 220px;
  transition: box-shadow 0.2s, border 0.2s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.feature-grid > div:hover, .industry-grid > div:hover {
  box-shadow: 0 8px 30px rgba(180,130,44,0.13);
  border-color: #94640C;
}

/* Lists with icons */
ul li img {
  margin-right: 13px;
  vertical-align: middle;
  background: transparent;
  border-radius: 0;
  border: none;
  box-shadow: none;
  height: 28px;
  width: 28px;
  padding: 0;
}

/* Misc alignment helpers */
.company-history,
.mission-section,
.brand-values {
  margin-bottom: 22px;
}

.team-snippet {
  background: #232b32;
  color: #f2f2f2;
  border-radius: 10px;
  padding: 18px 18px 10px 18px;
  border-left: 5px solid #94640C;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  background: #232b32;
  color: #f2f2f2;
  padding: 20px 10px 22px 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-top: 3px solid #B8822C;
  z-index: 1202;
  box-shadow: 0 -4px 24px rgba(30,53,87,0.14);
  animation: slideUpBanner 0.33s cubic-bezier(.5,.7,.5,1) both;
}
@keyframes slideUpBanner {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-btn, .cookie-modal-btn {
  background: #B8822C;
  color: #181d22;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  border-radius: 7px;
  padding: 10px 18px;
  margin-left: 8px;
  font-size: 0.99rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.17s;
  box-shadow: 0 1.5px 6px rgba(184,130,44,0.11);
  outline: none;
}
.cookie-banner-btn:hover, .cookie-modal-btn:hover,
.cookie-banner-btn:focus, .cookie-modal-btn:focus {
  background: #94640C;
  color: #f2f2f2;
}
.cookie-banner-btn.reject {
  background: #232b32;
  color: #B8822C;
  border: 1.5px solid #B8822C;
}
.cookie-banner-btn.reject:hover,
.cookie-banner-btn.reject:focus {
  background: #B8822C;
  color: #232b32;
}
.cookie-banner-btn.settings {
  background: none;
  color: #B8822C;
  border: 1.5px solid #B8822C;
}
.cookie-banner-btn.settings:hover, .cookie-banner-btn.settings:focus {
  background: #181d22;
  color: #f2f2f2;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(18,22,26,0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1221;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #F2F2F2;
  color: #232b32;
  border-radius: 14px;
  padding: 32px 28px 24px 28px;
  max-width: 400px;
  width: 92vw;
  box-shadow: 0 6px 42px rgba(30,53,87,0.21);
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1.04em;
  position: relative;
}
.cookie-modal h3 {
  color: #1E3557;
  font-size: 1.13rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 14px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #232b32;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #94640C;
}
.cookie-modal-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #d3d3d3;
  padding: 7px 0 7px 0;
  font-size: 1.03em;
}
.cookie-toggle {
  accent-color: #B8822C;
  width: 22px; height: 22px;
}
/* Essential cookie always enabled */
.cookie-category.essential .cookie-toggle:disabled {
  opacity: 0.6;
}

.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 8px;
  justify-content: flex-end;
}

/* Misc utility classes */
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-20 { gap: 20px; }
.mt-20 { margin-top: 20px; }

/* Accessibility Focus State */
a:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline: 2px dashed #B8822C;
  outline-offset: 2px;
}

/* ----- INDUSTRIAL FONT Fallback if not loaded from Google Fonts externally ----- */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: local('Montserrat'), local('Montserrat-Regular');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular');
}

/* -- END CSS -- */
