/* 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #131926;
  color: #f4f4f6;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #D4AF37;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #fff;
}
/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #f4f4f6;
  letter-spacing: 0.01em;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
strong {
  color: #D4AF37;
  font-weight: 700;
}
p, li, address, cite {
  font-size: 1rem;
  color: #d0d4dd;
  line-height: 1.7;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 18px;
}
li {
  margin-bottom: 12px;
}
blockquote {
  border-left: 4px solid #D4AF37;
  padding-left: 18px;
  font-style: italic;
  color: #1b2432;
  background: #fff;
  border-radius: 8px 4px 4px 8px;
}
cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  color: #1b2432;
  font-size: 0.95rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #192337;
  border-radius: 14px;
  box-shadow: 0 4px 32px rgba(20,23,31,0.08);
}

/* FLEXBOX LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 -12px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 280px;
  min-width: 280px;
  background: #202b3a;
  border: 1.5px solid #434c5e;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(24,49,79,0.07);
  padding: 26px 22px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover,
.card:focus-within {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 36px rgba(30,34,48,0.18);
  z-index: 2;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(24,49,79,0.13);
  margin-bottom: 24px;
  transition: box-shadow 0.2s, border-color 0.2s;
  border: 1.5px solid #D4AF37;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px rgba(24,49,79,0.18);
  border-color: #18314F;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #1a2332;
  border-radius: 10px;
  padding: 18px 18px 18px 16px;
  border-left: 4px solid #D4AF37;
  margin-bottom: 16px;
}

/* MAIN NAVIGATION */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
  padding: 20px 0 18px 0;
  width: 100%;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #f4f4f6;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.18s, color 0.16s;
}
.main-nav a.cta-btn {
  background: #D4AF37;
  color: #131926;
  font-weight: bold;
}
.main-nav a.cta-btn:hover,
.main-nav a.cta-btn:focus {
  background: #18314F;
  color: #D4AF37;
}
.main-nav a:hover:not(.cta-btn),
.main-nav a:focus:not(.cta-btn) {
  background: #272f42;
  color: #D4AF37;
}
.main-nav img {
  height: 36px;
  margin-right: 16px;
  vertical-align: middle;
}

header {
  background: #131926;
  border-bottom: 2px solid #232e44;
  position: relative;
  z-index: 20;
}

/* MOBILE NAV STYLES */
.mobile-menu-toggle {
  display: none;
  background: #131926;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  padding: 0 10px;
  cursor: pointer;
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: 35;
  border-radius: 8px;
  transition: background 0.14s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #192337;
  color: #D4AF37;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100dvh;
  width: 100vw;
  background: rgba(19,25,38,0.99);
  z-index: 50;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.55,.07,.75,.9);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 38px 24px 24px 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 15px;
  right: 22px;
  background: transparent;
  border: none;
  color: #D4AF37;
  font-size: 2.1rem;
  cursor: pointer;
  z-index: 100;
  padding: 4px 6px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 48px;
  width: 85vw;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 12px 6px;
  border-radius: 6px;
  background: #192337;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: background 0.13s, color 0.14s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #232e44;
  color: #D4AF37;
}

/* HERO SECTION */
.hero {
  padding: 60px 0 48px 0;
  background: linear-gradient(160deg,#1a2332 60%,#232e44 100%);
  box-shadow: 0 4px 28px rgba(30,34,48,0.13);
  margin-bottom: 54px;
}
.hero .container {
  width: 100%;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 700px;
  gap: 26px;
}
.hero h1 {
  color: #fff;
  font-size: 2.8rem;
  line-height: 1.17;
}
.hero p {
  color: #d0d4dd;
  font-size: 1.16rem;
  margin-bottom: 12px;
}

/* CTA BUTTONS */
.cta-btn {
  display: inline-block;
  background: #D4AF37;
  color: #18314F;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  padding: 13px 32px;
  border: none;
  border-radius: 9px;
  box-shadow: 0 1px 6px rgba(212,175,55,0.14);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 15px;
  transition: box-shadow 0.18s, background 0.15s, color 0.13s, transform 0.12s;
  outline: none;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #184b78;
  color: #D4AF37;
  box-shadow: 0 4px 20px rgba(212,175,55,0.22);
  transform: scale(1.03);
}
.cta-button-group {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

/* FEATURES */
.features ul, .services ul, .services ol {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-left: 0;
  list-style: none;
}
.features li, .services li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #181e2b;
  border-radius: 8px;
  padding: 17px 21px;
  color: #f4f4f6;
  font-size: 1.05rem;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  box-shadow: 0 1px 9px rgba(19,25,38,.10);
  min-width: 180px;
  flex: 1 1 250px;
}
.features li img, .services li img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(1.22) contrast(1.1);
}
.features h2, .services h2 {
  color: #D4AF37;
}

/* SERVICE CARDS */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 22px;
}
.service-card {
  background: #232e44;
  border: 2px solid #374252;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(24,49,79,0.10);
  padding: 28px 22px 26px 22px;
  flex: 1 1 260px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  color: #f4f4f6;
  transition: box-shadow 0.18s, border-color 0.16s, transform 0.13s;
}
.service-card:hover {
  border-color: #D4AF37;
  box-shadow: 0 10px 48px rgba(212,175,55,0.15);
  transform: translateY(-2px) scale(1.02);
}
.service-card strong {
  color: #D4AF37;
  margin-bottom: 8px;
}
.service-card a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 6px 0 0 0;
  color: #D4AF37;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: underline;
  margin-top: auto;
  font-size: 1rem;
}

/* PRICING TABLE */
.pricing-table {
  margin: 32px 0 22px 0;
}
.pricing-table h3 {
  color: #D4AF37;
  font-size: 1.1rem;
  margin-bottom: 11px;
}
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  background: #181e2b;
  color: #f4f4f6;
  font-size: 1.02rem;
  border-radius: 10px;
  box-shadow: 0 1px 10px rgba(24,49,79,0.06);
  overflow: hidden;
}
.pricing-table tr {
  border-bottom: 1px solid #232e44;
}
.pricing-table td {
  padding: 10px 15px;
}
.pricing-table td:last-child {
  color: #D4AF37;
  font-weight: 700;
}

/* FAQ / TEXT SECTIONS */
.text-section {
  margin-top: 18px;
  gap: 16px;
  display: flex;
  flex-direction: column;
}
.text-section h2 {
  margin-top: 22px;
  color: #D4AF37;
}
.text-section h3 {
  color: #fff;
  margin-top: 12px;
}
.text-section ul, .text-section ol {
  margin-left: 18px;
}
.text-section a {
  text-decoration: underline;
}

/* CTA SECTION */
.cta {
  margin-bottom: 0;
  background: #232e44;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -3px 22px rgba(24,49,79,.08);
  padding: 46px 20px 40px 20px;
  text-align: center;
  align-items: center;
}
.cta h2 {
  color: #D4AF37;
  margin-bottom: 18px;
}
.cta .cta-btn {
  font-size: 1.2rem;
  margin-top: 14px;
}

/* CONTACT DETAILS */
.contact-details {
  background: #181e2b;
  color: #fff;
  border-radius: 10px;
  padding: 18px 20px;
  margin-top: 20px;
  font-size: 1.04rem;
}
.contact-details a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #D4AF37;
  text-decoration: underline;
}

/* FOOTER */
footer {
  background: #131926;
  border-top: 2px solid #232e44;
  padding: 40px 0 30px 0;
  font-size: 0.98rem;
}
footer .container {
  width: 100%;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 50px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img {
  width: 44px;
  height: auto;
}
.footer-contact {
  color: #f4f4f6;
  margin-bottom: 14px;
  font-size: 1.05rem;
  min-width: 200px;
}
.footer-contact a {
  color: #D4AF37;
}
.footer-nav,
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #c2cbd8;
  font-size: 1rem;
}
.footer-nav a,
.legal-links a {
  color: #c2cbd8;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: color 0.16s;
  font-size: 0.95rem;
}
.footer-nav a:hover, .legal-links a:hover {
  color: #D4AF37;
}

/* LEGAL / INFO / THANK YOU */
.legal {
  margin-top: 44px;
  background: #181e2b;
  padding: 44px 26px 44px 26px;
  border-radius: 14px;
  box-shadow: 0 1px 16px rgba(24,49,79,0.08);
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #181e2b;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 26px 18px 22px 28px;
  box-shadow: 0 -2px 30px rgba(24,49,79,0.21);
  z-index: 2000;
  font-size: 1rem;
  transition: transform 0.28s;
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
}
.cookie-btn-group {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.cookie-btn {
  background: #D4AF37;
  color: #18314F;
  border: none;
  padding: 10px 21px;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.12s, color 0.13s, box-shadow 0.15s;
  cursor: pointer;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #18314F;
  color: #D4AF37;
  box-shadow: 0 2px 12px rgba(212,175,55,0.18);
}
.cookie-btn.secondary {
  background: #232e44;
  color: #fff;
  border: 1.2px solid #D4AF37;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #D4AF37;
  color: #232e44;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -56%);
  background: #131926;
  color: #fff;
  min-width: 280px;
  max-width: 97vw;
  max-height: 88vh;
  z-index: 2100;
  border-radius: 16px;
  box-shadow: 0 8px 56px rgba(24,49,79,.28);
  padding: 36px 30px 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalIn 0.36s cubic-bezier(.5,.1,.55,1.2);
}
@keyframes modalIn {
  from {opacity:0; transform:translate(-50%,-80%);}
  to { opacity:1; transform:translate(-50%,-56%); }
}
.cookie-modal-title {
  font-size: 1.42rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #D4AF37;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 14px;
}
.cookie-category label {
  color: #fff;
  font-size: 1.09rem;
}
.cookie-switch {
  appearance: none;
  background: #232e44;
  width: 48px;
  height: 26px;
  border-radius: 14px;
  position: relative;
  outline: none;
  margin: 0;
  cursor: pointer;
  transition: background 0.12s;
}
.cookie-switch:checked {
  background: #D4AF37;
}
.cookie-switch::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.15s, background 0.13s;
}
.cookie-switch:checked::before {
  left: 24px;
  background: #18314F;
}
.cookie-modal-btns {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: transparent;
  font-size: 1.7rem;
  color: #D4AF37;
  border: none;
  cursor: pointer;
}
.cookie-essential {
  color: #aaa;
  margin-left: 5px;
  font-size: 0.94em;
  font-style: italic;
}

/* RESPONSIVE FLEX & DESIGN */
@media (max-width: 1100px) {
  .main-nav {
    gap: 12px;
  }
  .content-wrapper {
    gap: 20px;
  }
  .footer-nav, .legal-links {
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width: 900px) {
  .container {
    padding: 0 12px;
  }
  .footer-logo img {
    width: 36px;
  }
}
@media (max-width: 820px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 6vw;
  }
  .section, .hero {
    padding: 32px 8px;
  }
  .footer {
    padding: 32px 0 22px 0;
  }
  .service-cards {
    flex-direction: column;
    gap: 18px;
  }
  .features ul, .services ul, .services ol {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 21px;
    align-items: flex-start;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 600px) {
  body, .section, .legal, .hero, .container {
    padding-left: 0;
    padding-right: 0;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  .service-card {
    min-width: 0;
    width: 100%;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 14px;
  }
  .cta {
    padding: 32px 9px 28px 9px;
  }
}

/* SCROLLBAR STYLES for industrial look */
body::-webkit-scrollbar {
  width: 12px;
  background: #181e2b;
}
body::-webkit-scrollbar-thumb {
  background: #292f37;
  border-radius: 8px;
}

/* FONT IMPORTS (fallback syntax for browser support) */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lato:400,700&display=swap');

/* MICRO-INTERACTIONS */
input, button, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  background: none;
}
button:active {
  transform: scale(0.98);
}

/* Z-INDEX FOR OVERLAYS */
.mobile-menu,
.cookie-consent-banner,
.cookie-modal {
  z-index: 2000;
}

/* PREVENT CARD OVERLAP */
.card, .service-card, .testimonial-card, .feature-item, .section {
  margin-bottom: 20px;
}

/* FOCUS VISIBLE STYLES for accessibility */
a:focus, button:focus, .cta-btn:focus {
  outline: 2px solid #D4AF37;
  outline-offset: 2px;
}

/* INDUSTRIAL MODERN METALLIC ACCENTS */
.card, .service-card, .feature-item, .testimonial-card {
  background-clip: padding-box;
  border-radius: 12px;
  /* Use subtle metallic border */
  border: 1.6px solid #8b8c8d;
  box-shadow: 0 2px 12px 2px rgba(131,131,133,0.10);
}

.card {
  border: 1.4px solid #434c5e;
}

/* ACCENT FRAGMENTS */
.section, .cta, .hero, .service-card, .feature-item, .testimonial-card {
  position: relative;
  overflow: visible;
}

.section::before, .feature-item::before {
  content: '';
  display: block;
  position: absolute;
  left: -12px;
  top: 30px;
  width: 6px;
  height: 54px;
  background: linear-gradient(180deg, #D4AF37 70%, transparent);
  border-radius: 6px;
  z-index: 1;
  opacity: 0.12;
}
.feature-item::before {
  left: -8px;
  top: 12px;
  width: 4px;
  height: 38px;
  opacity: .18;
}

/* Hide accent fragments on mobile */
@media (max-width: 600px) {
  .section::before, .feature-item::before { display: none; }
}

/* END OF STYLE */
