/* 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 {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: #181c20;
  color: #F4ECD6;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  min-height: 100vh;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #DBD56E;
  text-decoration: underline;
  transition: color .2s;
}
a:hover, a:focus {
  color: #ffffff;
}

/* Brand Fonts */
h1, .h1 {
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #F4ECD6;
  margin-bottom: 24px;
}
h2, .h2 {
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .5px;
  color: #DBD56E;
  margin-bottom: 20px;
}
h3, .h3 {
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #DBD56E;
  margin-bottom: 16px;
}
h4, h5, h6 {
  font-family: 'Quicksand', Arial, sans-serif;
  font-weight: 600;
}
p, ul, ol, li, table, td, th {
  font-size: 1rem;
  color: #e5eae3;
}
ul, ol {
  margin-left: 22px;
  margin-bottom: 18px;
}

/* Layout containers */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

main {
  margin-bottom: 60px;
}
section {
  background: #22272b;
  border-radius: 15px;
  box-shadow: 0 2px 18px 0 rgba(20,20,20,0.27);
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}

/* NAVIGATION & HEADER */
header {
  width: 100%;
  background: #181c20;
  box-shadow: 0 2px 10px 0 rgba(32, 80, 114, 0.2);
  z-index: 200;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 18px 16px 18px;
}
nav {
  display: flex;
  align-items: center;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 24px;
}
nav ul li {
  margin: 0 0 0 0;
}
nav ul li a {
  font-family: 'Quicksand', Arial, sans-serif;
  color: #F4ECD6;
  font-size: 1.08rem;
  text-decoration: none;
  letter-spacing: .3px;
  padding: 7px 12px;
  border-radius: 5px;
  transition: background .22s, color .19s;
  font-weight: 500;
}
nav ul li a:hover, nav ul li a:focus {
  background: #205072;
  color: #DBD56E;
}
nav ul li .cta {
  background: #DBD56E;
  color: #22272b;
  font-weight: 700;
  border-radius: 25px;
  padding: 9px 24px;
  margin-left: 10px;
  box-shadow: 0 1px 8px 0 rgba(219, 213, 110, .12);
  transition: background .2s, color .2s;
}
nav ul li .cta:hover, nav ul li .cta:focus {
  background: #fffbe3;
  color: #205072;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: #22272b;
  border: none;
  color: #DBD56E;
  font-size: 2.1rem;
  padding: 8px 16px;
  border-radius: 8px;
  cursor: pointer;
  margin-left: 10px;
  transition: background .2s;
  z-index: 4002;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #205072;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32, 80, 114, 0.97);
  color: #F4ECD6;
  z-index: 4001;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.77,0,.18,1);
  padding: 36px 22px 20px 22px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: #DBD56E;
  margin-bottom: 20px;
  cursor: pointer;
  transition: color .2s;
  z-index: 4003;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fffbe3;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  color: #F4ECD6;
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 600;
  padding: 16px;
  text-decoration: none;
  border-radius: 7px;
  background: none;
  transition: background .25s, color .22s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #DBD56E;
  color: #181c20;
}

@media (max-width: 980px) {
  nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 981px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(100deg, #181c20 65%, #205072 100%);
  box-shadow: 0 2px 32px 0 rgba(32,80,114,0.22);
  margin-bottom: 50px;
  padding: 58px 0 52px 0;
  border-radius: 20px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 620px;
}
.hero h1 {
  color: #fffbe3;
  font-size: 2.3rem;
  text-shadow: 0 3px 12px rgba(32,80,114,0.23);
}
.hero p {
  font-size: 1.13rem;
  color: #DBD56E;
  margin-bottom: 18px;
}

/* CTAs & BUTTONS */
.cta, .content-wrapper .cta, .cookie-banner button.cta {
  display: inline-block;
  font-family: 'Quicksand', Arial, sans-serif;
  background: #DBD56E;
  color: #22272b;
  border: none;
  border-radius: 26px;
  padding: 13px 34px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 2px 10px 0 rgba(0,0,0,0.17);
  text-decoration: none;
  margin-top: 10px;
  margin-bottom: 12px;
  transition: background .19s, color .19s, box-shadow .18s;
}
.cta:hover, .cta:focus {
  background: #F4ECD6;
  color: #205072;
  box-shadow: 0 2px 18px 0 rgba(219, 213, 110, .18);
}

/* Feature Icon List */
.icon-features {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: flex-start;  
  margin: 30px 0 8px 0;
}
.icon-features > div {
  background: #31373B;
  border-radius: 13px;
  padding: 20px 30px;
  box-shadow: 0 1px 11px 0 rgba(32,80,114,.09);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
  gap: 10px;
  transition: box-shadow .18s, background .16s;
}
.icon-features > div:hover {
  box-shadow: 0 2px 20px 0 #DBD56E44;
  background: #22272B;
}
.icon-features img {
  width: 44px; height: 44px;
  filter: grayscale(0.2) brightness(1.2) contrast(1.1);
}

/* Service Cards */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
  justify-content: flex-start;
}
.service-cards > div {
  background: #31373B;
  border-radius: 14px;
  box-shadow: 0 2px 17px 0 rgba(32,80,114,.09);
  padding: 24px 24px 18px 22px;
  min-width: 250px;
  flex: 1 1 240px;
  transition: background .17s, box-shadow .17s;
}
.service-cards > div:hover {
  box-shadow: 0 2px 25px 0 #DBD56E39;
  background: #205072;
}
.service-cards h3 {
  margin-bottom: 10px;
  color: #DBD56E;
}
.service-cards p {
  margin-bottom: 8px;
  font-size: 1rem;
}
.service-price {
  display: inline-block;
  padding: 5px 11px;
  background: #DBD56E;
  color: #31373B;
  border-radius: 9px;
  font-family: 'Quicksand', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.09rem;
  letter-spacing: .5px;
  margin-top: 7px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
  justify-content: flex-start;
}
.service-list > div {
  background: #31373B;
  border-radius: 12px;
  box-shadow: 0 1px 11px 0 rgba(32,80,114,0.07);
  padding: 23px 20px 18px 20px;
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow .17s, background .16s;
}
.service-list > div:hover {
  box-shadow: 0 1px 23px #DBD56E33;
  background: #205072;
}
.service-list img {
  width: 42px; height: 42px;
  filter: grayscale(0.18) brightness(1.2);
  margin-bottom: 5px;
}

/* Cards & General Card Grid (for future use) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #31373B;
  border-radius: 12px;
  box-shadow: 0 2px 13px 0 rgba(32,80,114,.11);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 18px;
}

/* FAQ Section */
.faq-section {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item {
  background: #31373B;
  border-radius: 10px;
  box-shadow: 0 1px 12px 0 rgba(32,80,114,.08);
  padding: 21px 20px 18px 18px;
  transition: box-shadow .15s, background .13s;
}
.faq-item:hover {
  background: #205072;
  box-shadow: 0 1px 18px #DBD56E22;
}
.faq-item h2 {
  font-size: 1.15rem;
  color: #DBD56E;
  margin-bottom: 7px;
}

/* Testimonials */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F4ECD6;
  color: #22272b;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 1px 14px 0 rgba(32,80,114,0.14);
  flex-direction: column;
  min-width: 200px;
  max-width: 540px;
  font-size: 1.1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: box-shadow .18s, background .14s;
}
.testimonial-card p {
  color: #22272b;
  font-size: 1.08rem;
  margin-bottom: 0;
}
.testimonial-card span {
  font-family: 'Quicksand', Arial, sans-serif;
  font-weight: 600;
  color: #205072;
  margin-top: 2px;
  font-size: 1rem;
}
.testimonial-card:hover {
  background: #fffbe3;
  box-shadow: 0 2px 25px 0 #DBD56E44;
}
.rating-stars {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1rem;
  color: #DBD56E;
  font-weight: bold;
}
.rating-stars img {
  width: 24px;
  height: 24px;
  filter: grayscale(0.18) brightness(1.8) drop-shadow(0 0 2px #DBD56E99);
}
.rating-stars span {
  margin-left: 8px;
  color: #DBD56E;
}

/* Spacing, Alignment Patterns */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Tables (Prices) */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 22px;
  background: #22272b;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 16px 0 rgba(32,80,114,.08);
}
thead th {
  background: #205072;
  color: #DBD56E;
  padding: 14px 8px;
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
}
tbody td {
  padding: 14px 8px;
  border-bottom: 1px solid #31373B;
  color: #fffbe3;
  font-size: 1rem;
}
tbody tr:last-child td {
  border-bottom: none;
}

/* Contact Info */
.contact-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 10px;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.13rem;
  color: #F4ECD6;
}
.contact-info img {
  width: 25px;
  height: 25px;
  filter: grayscale(.16) brightness(1.1);
}
.contact-inquiry {
  margin: 30px 0 16px 0;
}

/* Footer */
footer {
  background: #181c20;
  width: 100%;
  box-shadow: 0 -3px 14px 0 rgba(32, 80, 114, 0.17);
  padding: 30px 0 12px 0;
  position: relative;
  z-index: 10;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer nav {
  font-family: 'Quicksand', Arial, sans-serif;
  color: #DBD56E;
  font-size: 1rem;
  margin-bottom: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
footer nav a {
  color: #DBD56E;
  text-decoration: underline;
  margin: 0 5px 0 0;
}
.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: baseline;
  font-size: 1rem;
  color: #F4ECD6;
  margin-bottom: 10px;
}
.footer-info img {
  width: 18px;
  height: 18px;
  margin-left: 7px;
  filter: grayscale(.22) brightness(1.25);
}
.social-links {
  display: flex;
  gap: 17px;
  align-items: center;
  margin-top: 4px;
}
.social-links a {
  display: flex;
  align-items: center;
  background: #22272B;
  border-radius: 50%;
  padding: 9px;
  width: 36px; height: 36px;
  transition: background .17s, box-shadow .17s;
}
.social-links a:hover, .social-links a:focus {
  background: #DBD56E;
}
.social-links img {
  width: 18px; height: 18px;
  filter: grayscale(.04) brightness(1.5);
}

/* Cookie Consent Banner & Modal */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9998;
  background: #22272B;
  color: #DBD56E;
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1rem;
  box-shadow: 0 -2px 18px 0 #20507266;
  padding: 22px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  animation: cookieBannerIn .5s cubic-bezier(.71,.04,.27,.99);
}
@keyframes cookieBannerIn {
  from { opacity: 0; transform: translateY(45px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-banner-text {
  flex: 1 1 220px;
  margin-right: 18px;
  color: #F4ECD6;
}
.cookie-banner button {
  background: #DBD56E;
  color: #22272B;
  border: none;
  border-radius: 18px;
  font-family: 'Quicksand', Arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  padding: 9px 22px;
  margin-left: 7px;
  cursor: pointer;
  transition: background .22s, color .15s;
  outline: none;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #fffbe3;
  color: #205072;
}
.cookie-banner .cookie-settings {
  background: none;
  color: #DBD56E;
  border: 2px solid #DBD56E;
  margin-left: 12px;
  box-shadow: none;
  transition: background .17s, border-color .13s, color .19s;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #205072;
  color: #DBD56E;
  border-color: #205072;
}

.cookie-modal-overlay {
  position: fixed;
  top:0; right:0; bottom:0; left:0;
  background: rgba(20,30,36,0.97);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .2s linear;
}
@keyframes fadeIn {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal {
  background:#31373B;
  color:#DBD56E;
  border-radius: 15px;
  padding: 36px 28px 28px 28px;
  max-width: 420px;
  width: 95%;
  box-shadow: 0 4px 36px 0 #20507233;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  animation: slideInUp .41s cubic-bezier(.8,.16,.02,.97);
}
@keyframes slideInUp {
  from { opacity:0; transform: translateY(45px); }
  to { opacity:1; transform: translateY(0); }
}
.cookie-modal h3 {
  font-size: 1.28rem;
  color: #DBD56E;
  margin-bottom: 13px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.6rem;
  color: #DBD56E;
  background: none;
  border: none;
  cursor: pointer;
  transition: color .17s;
  z-index: 10010;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  color: #fffbe3;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 13px;
}
.cookie-modal label {
  color: #F4ECD6;
  font-family: 'Quicksand',Arial,sans-serif;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #DBD56E;
  width: 19px; height: 19px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-actions button {
  border-radius: 17px;
  padding: 10px 19px;
}

/* Animations */
.cta, .content-wrapper .cta, .cookie-banner button.cta {
  transition: background .19s, color .19s, box-shadow .18s, transform .14s;
}
.cta:active {
  transform: scale(.97);
}
.service-cards > div:hover, .service-list > div:hover,
.icon-features > div:hover, .testimonial-card:hover, .faq-item:hover {
  transform: translateY(-2px) scale(1.015);
  box-shadow: 0 2px 22px 0 #DBD56E3f;
}

/* TEXT-SECTIONS */
.text-section {
  margin-bottom: 16px;
  padding: 0 2px 0 2px;
}
.text-section h2 {
  margin-bottom: 8px;
}
.text-section ul, .text-section ol {
  margin-bottom: 12px;
}

/* List Style (check, gear, or other industrial marker as example) */
ul li::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: #DBD56E;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}
ul ul li::before, ol ul li::before { background: #205072; }

/* Responsive Adaptive Layouts */
@media (max-width: 1100px) {
  .container {
    max-width: 900px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
  }
  .service-cards > div, .service-list > div {
    min-width: 180px;
    max-width: 98vw;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }

  h1, .h1 { font-size: 2rem; }
  h2, .h2 { font-size: 1.5rem; }
  .container, .footer-info { flex-direction: column; align-items: flex-start; }

  .icon-features, .service-cards, .service-list, .content-grid, .footer-info, .social-links {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    max-width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 8px;
  }
  .hero {
    padding: 29px 0 32px 0;
  }
  .section {
    padding: 26px 8px;
  }
  .card {
    padding: 16px 7px;
  }
  .service-cards > div, .service-list > div {
    padding: 18px 8px;
    min-width: 150px;
    max-width: 98vw;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  nav ul { display: none; }
}
@media (max-width: 500px) {
  html { font-size: 14px; }
  .section, .container, .footer-info { padding: 0 2vw; }
  .cookie-modal { padding: 20px 6vw 24px 6vw; }
}

/* Typography & Hierarchy */
.text-section em { color: #DBD56E; font-style: normal; }
.text-section strong { color: #DBD56E; font-weight: 600; }

/* Hide visually but keep accessible (for JS cookie modal, etc.) */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

/* Miscellaneous Fixes */
::-webkit-input-placeholder { color: #DBD56E99; font-family: 'Open Sans', Arial, sans-serif; }
::-moz-placeholder { color: #DBD56E99; }
:-ms-input-placeholder { color: #DBD56E99; }
::placeholder { color: #DBD56E99; }

/* Remove outline for mouse users, but keep for keyboard users */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2px solid #DBD56E;
  outline-offset: 2px;
}

/* Industrial Modern SHADOWS & METALLIC */
.card, .service-cards > div, .service-list > div, .faq-item, .icon-features > div {
  border: 1px solid #29303a;
  box-shadow: 0 2px 17px 0 #232b3144, 0 1.5px 5px -1px #31373B99;
}
.header, footer, .hero, section, .cookie-banner {
  border-bottom: 1.5px solid #31373B;
}

/* -------------- End of style.css -------------- */
