/* ===================================================
   SmoothPost Auto – Industrial Modern CSS Theme
   BRAND: SmoothPost Auto | industrial_modern aesthetic
   By: Professional CSS Developer & UI Designer
   =================================================== */
/* =====================
   CSS RESET & BASELINE
   ===================== */
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: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #1B232B;
  color: #F3F7FA;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  background: none;
  color: inherit;
}
:focus {
  outline: 2px solid #EE9A00;
  outline-offset: 2px;
}

/* =====================
   TYPOGRAPHY & BRANDING
   ===================== */
body, .brand-footer span {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}
p, ul, ol, li {
  font-size: 1rem;
}
strong {
  color: #EE9A00;
  font-weight: 700;
}

/* Industrial/modern font accents (tech/urban look) */
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Montserrat:800,600&display=swap');

/* ==================
   FLEXBOX LAYOUT CORE
   ================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #232E3A;
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 rgba(17,20,24,0.27);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: #232E3A;
  border: 1px solid #313B47;
  border-radius: 16px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 1.5px 7px 0 rgba(29,32,38,0.19);
  padding: 32px 24px;
  transition: box-shadow 0.25s, border-color 0.22s;
}
.card:hover, .card:focus-within {
  border-color: #EE9A00;
  box-shadow: 0 4px 18px 0 rgba(238,154,0,0.15);
}

.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: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F3F7FA;
  color: #232E3A;
  border-left: 8px solid #EE9A00;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 10px 0 rgba(27,33,43,0.12);
  min-width: 220px;
  max-width: 550px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Utility for spacing */
.mb-24 {
  margin-bottom: 24px;
}
.mb-32 {
  margin-bottom: 32px;
}

/* =====================
   HEADER, NAVIGATION, LOGO
   ===================== */
header {
  background: #1B232B;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}
header img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: #F3F7FA;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.15s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #232E3A;
  color: #EE9A00;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 32px;
  background: #EE9A00;
  color: #232E3A;
  font-weight: 800;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  border-radius: 24px;
  box-shadow: 0 2px 16px 0 rgba(238,154,0,0.14);
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.18s, color 0.18s, box-shadow 0.21s;
  margin-left: 16px;
  margin-top: 0;
  margin-bottom: 0;
}
.cta-btn:hover, .cta-btn:focus {
  background: #FFB13C;
  color: #1B232B;
  box-shadow: 0 4px 30px 0 rgba(41, 52, 66, 0.18);
}

/* =====================
   RESPONSIVE HEADER & NAV
   ===================== */
.mobile-menu-toggle {
  display: none;
  background: #232E3A;
  color: #EE9A00;
  border-radius: 12px;
  border: none;
  font-size: 2.1rem;
  padding: 8px 18px;
  z-index: 202;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  margin-left: 16px;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #EE9A00;
  color: #232E3A;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #232E3A;
  box-shadow: 4px 0 16px 0 rgba(17,20,24,0.21);
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(0.78,0.11,0.18,0.97);
  z-index: 201;
  padding: 32px 30px 24px 30px;
  gap: 32px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #EE9A00;
  color: #232E3A;
  border-radius: 10px;
  padding: 4px 10px;
  font-size: 2rem;
  border: none;
  align-self: flex-end;
  margin-bottom: 16px;
  cursor: pointer;
  z-index: 222;
  transition: background 0.17s, color 0.17s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #FFB13C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-nav a {
  color: #F3F7FA;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 12px 0px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #EE9A00;
  color: #232E3A;
}

/* Hide main navigation on mobile */
@media (max-width: 1020px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 1020px) {
  header .container {
    justify-content: flex-start;
  }
}

/* Always keep mobile-menu above everything */
.mobile-menu {
  z-index: 201;
}

/* =====================
   MAIN & SECTIONS CORE
   ===================== */
main {
  padding-bottom: 60px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #232E3A;
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 rgba(17,20,24,0.10);
}
/* Remove double backgrounds for innermost sections */
section .container > .content-wrapper:first-child {
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

/* =====================
   FLEX-LAYOUT ADJUSTMENTS
   ===================== */
.service-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: stretch;
}
.service-overview > div {
  background: #1B232B;
  border: 1.5px solid #313B47;
  border-radius: 14px;
  flex: 1 1 240px;
  padding: 30px 18px;
  box-shadow: 0 1.5px 10px 0 rgba(27,33,43,0.09);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  min-width: 200px;
  max-width: 350px;
  transition: box-shadow 0.23s, border-color 0.19s;
  margin-bottom: 20px;
}
.service-overview > div:hover {
  border-color: #EE9A00;
  box-shadow: 0 5px 22px 0 rgba(238,154,0,0.08);
}
.service-overview img {
  height: 46px;
  width: auto;
  filter: grayscale(0.19) brightness(1.1) drop-shadow(0 1px 1px #333);
}

/* =====================
   ICONS & ACCENTS
   ===================== */
ul li img {
  vertical-align: middle;
  height: 24px;
  width: 24px;
  margin-right: 12px;
  filter: grayscale(1) brightness(1.9) opacity(0.75);
}

/* =====================
   LISTS & FEATURES
   ===================== */
ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 10px;
  list-style: none;
  padding-left: 0;
}

li {
  font-size: 1rem;
  line-height: 1.5;
}

.feature-list, .feature-item {
  gap: 15px;
  align-items: flex-start;
}

/* =====================
   TESTIMONIALS AREA
   ===================== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F3F7FA;
  color: #232E3A;
  border-radius: 14px;
  margin-bottom: 20px;
  border-left: 8px solid #EE9A00;
  box-shadow: 0 1.5px 10px 0 rgba(27,33,43,0.12);
  min-width: 220px;
  max-width: 550px;
  font-size: 1.13rem;
}
.testimonial-card span:last-child {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  color: #EE9A00;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-left: auto; /* if needed to float stars to the end */
}

/* ===============
   FOOTER
   =============== */
footer {
  background: #232E3A;
  color: #F3F7FA;
  padding: 40px 0 18px 0;
  border-top: 2px solid #274061;
  margin-top: 48px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #F3F7FA;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 4px 12px;
  border-radius: 4px;
  transition: background 0.16s, color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #1B232B;
  color: #EE9A00;
}
.brand-footer {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 12px;
}
.brand-footer img {
  height: 36px;
  width: auto;
}
.brand-footer span {
  color: #B6BEC7;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

/* =============================
   COOKIE CONSENT BANNER & MODAL
   ============================= */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #232E3A;
  color: #F3F7FA;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 32px;
  box-shadow: 0 -2px 20px 0 rgba(22,30,39,0.17);
  z-index: 9999;
  font-size: 1rem;
  animation: fadeInUp 0.7s cubic-bezier(0.7,0.05,0.25,1);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-btn {
  padding: 10px 26px;
  border: none;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  background: #EE9A00;
  color: #232E3A;
  transition: background 0.18s, color 0.17s, box-shadow 0.15s;
  box-shadow: 0 1px 6px 0 rgba(238,154,0,0.08);
}
.cookie-btn:focus, .cookie-btn:hover {
  background: #FFB13C;
  color: #232E3A;
}
.cookie-btn.secondary {
  background: #232E3A;
  border: 2px solid #EE9A00;
  color: #EE9A00;
}
.cookie-btn.secondary:focus, .cookie-btn.secondary:hover {
  background: #364256;
}
.cookie-btn.settings {
  background: #274061;
  color: #F3F7FA;
  border: 1px solid #EE9A00;
}
.cookie-btn.settings:focus, .cookie-btn.settings:hover {
  background: #1B232B;
  color: #EE9A00;
}
/* Cookie modal overlay and window */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(27, 35, 43, 0.70);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  animation: fadeIn 0.2s;
}
@keyframes fadeIn {
  from{ opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #232E3A;
  color: #F3F7FA;
  padding: 36px 30px 28px 30px;
  border-radius: 18px;
  min-width: 320px;
  max-width: 92vw;
  box-shadow: 0 4px 26px 0 rgba(0,0,0,0.31);
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalPopIn 0.21s cubic-bezier(.7,-0.08,.29,1.36);
}
@keyframes modalPopIn {
  from { transform: scale(0.85) translateY(70px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: #EE9A00;
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 14px 0;
}
.cookie-category-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  background: #232E3A;
  border: 2px solid #313B47;
  border-radius: 11px;
  position: relative;
  cursor: pointer;
  transition: background 0.14s, border-color 0.14s;
}
.cookie-category-toggle:checked {
  background: #EE9A00;
  border-color: #EE9A00;
}
.cookie-category-toggle:after {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  background: #F3F7FA;
  border-radius: 50%;
  transition: left 0.16s;
}
.cookie-category-toggle:checked:after {
  left: 16px;
}
.cookie-modal .cookie-actions {
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  background: transparent;
  color: #EE9A00;
  font-size: 1.7rem;
  position: absolute;
  top: 18px;
  right: 24px;
  line-height: 1;
  cursor: pointer;
  border: none;
  z-index: 10;
  padding: 2px 8px;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: #F3F7FA;
  background: #232E3A;
}

/* =====================
   GENERAL INTERACTIVE ELEMENTS
   ===================== */
a, button, .cta-btn, .footer-nav a, .main-nav a, .mobile-nav a {
  transition: color 0.2s, background 0.2s, box-shadow 0.18s;
  cursor: pointer;
}

/* ===============
   RESPONSIVE DESIGN
   =============== */
@media (max-width: 960px) {
  .container {
    max-width: 98vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  section, .section {
    padding: 26px 8px;
  }
}
@media (max-width: 800px) {
  .service-overview {
    flex-direction: column;
  }
  .service-overview > div {
    max-width: 100%;
    width: 100%;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 160px;
  }
  .content-wrapper {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .content-grid,
  .card-container {
    flex-direction: column !important;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .card {
    padding: 16px 12px;
  }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.2rem; }  
  .mobile-menu-toggle {
    font-size: 2rem;
    padding: 8px 12px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 19px 12px;
    gap: 14px;
  }
}
@media (max-width: 500px) {
  header .container {
    min-height: 58px;
  }
  .footer-nav {
    gap: 10px 14px;
    font-size: 0.92rem;
  }
  .brand-footer img {
    height: 30px;
  }
  .brand-footer span {
    font-size: 0.94rem;
  }
  .section, section {
    border-radius: 8px;
    padding: 15px 2px;
  }
}

/* ===============
   MISC UTILITIES
   =============== */
body.modal-open {
  overflow: hidden;
}

/* BUTTON MICRO-INTERACTIONS */
.cta-btn, .cookie-btn {
  transition: transform 0.15s, box-shadow 0.2s, background 0.16s, color 0.16s;
}
.cta-btn:active, .cookie-btn:active {
  transform: scale(0.97);
  box-shadow: 0 1px 9px 0 rgba(238,154,0,0.10);
}

/* ===============
   FORMS (if any)
   =============== */
input, textarea, select {
  background: #232E3A;
  border: 1.5px solid #313B47;
  border-radius: 10px;
  padding: 10px 14px;
  color: #F3F7FA;
  font-size: 1.05rem;
  margin-bottom: 16px;
  width: 100%;
  transition: border-color 0.12s;
}
input:focus, textarea:focus, select:focus {
  border-color: #EE9A00;
}

/* ===============
   ACCESSIBILITY
   =============== */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; border: 0;
  overflow: hidden; clip: rect(0,0,0,0);
}

/* ===============
   PRINT STYLES
   =============== */
@media print {
  body, section, .container, .section, .card {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
  }
  .main-nav, .mobile-menu-toggle, .footer-nav, .cookie-consent-banner, header, footer {
    display: none !important;
  }
}

/* ===============
   END
   =============== */
