/* ===============================
   Zenith Mirr Detailing: style.css
   Monochrome Sophisticated Design
   =============================== */

/* RESET/BASELINE (normalize + custom reset) */
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;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #161616;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%; height: auto;
  display: block;
}
a {
  color: #222;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1E2B36;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.16;
  letter-spacing: 0.02em;  
  color: #1E2B36;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: #111;
  text-shadow: 0 2px 12px rgba(16,17,20,0.08);
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.44rem;
}
h4 {
  font-size: 1.1rem; font-weight: 600;
}
p, .text-section p, .text-section li {
  font-size: 1rem;
  color: #232323;
  margin-bottom: 12px;
  line-height: 1.7;
}
strong {
  font-weight: 700;
  color: #161616;
}
em {
  color: #555;
  font-style: italic;
}

/* ========== LAYOUT UTILITIES ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(24,28,32,.10), 0 1.5px 8px rgba(50,50,60,.10);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 16px 32px rgba(30,43,54,0.14), 0 6px 16px rgba(38,42,50,0.14);
  transform: translateY(-2px) scale(1.01);
  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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fafbfc;
  border-radius: 14px;
  box-shadow: 0 3px 14px rgba(30,43,54,0.035);
  margin-bottom: 20px;
  border-left: 5px solid #1E2B36;
  max-width: 600px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border: 1.5px solid #e6e6e8;
  border-radius: 12px;
  padding: 24px 18px;
  gap: 15px;
  box-shadow: 0 1.5px 8px rgba(38,42,50,0.06);
  transition: border 0.2s, box-shadow 0.2s;
  min-width: 240px;
  flex: 1 1 270px;
  margin-bottom: 20px;
}
.feature-item:hover {
  border-color: #1E2B36;
  box-shadow: 0 4px 20px rgba(30,43,54,0.11);
  background: #f6f7f9;
}

@media (max-width: 900px) {
  .container {
    max-width: 94vw;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .content-wrapper,
  .content-grid,
  .card-container {
    gap: 16px;
  }
  .section {
    padding: 24px 6px;
  }
  .text-image-section,
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* ========== HEADER & NAVIGATION ========== */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #d8d8db;
  z-index: 20;
  position: sticky;
  top: 0;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 24px 18px 20px;
  gap: 24px;
}
header a img {
  height: 44px;
  width: auto;
  margin-right: 18px;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  color: #161616;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 8px 0;
  position: relative;
}
nav a:hover, nav a.active {
  color: #1E2B36;
}
nav a.active::after, nav a:hover::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1.5px;
  background: #1E2B36;
}

.btn-primary, .btn-secondary {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 28px;
  border-radius: 26px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.18s, color .18s, box-shadow 0.18s, border .18s;
  margin-top: 4px;
  margin-bottom: 4px;
  box-shadow: 0 1px 8px rgba(38,42,48,0.08);
  gap: 10px;
}
.btn-primary {
  background: #1E2B36;
  color: #fff;
  border: 1.5px solid #1E2B36;
}
.btn-primary:hover, .btn-primary:focus {
  background: #232a33;
  color: #fff;
  box-shadow: 0 4px 18px rgba(30,43,54,0.16);
}
.btn-secondary {
  background: transparent;
  color: #1E2B36;
  border: 1.5px solid #1E2B36;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #232a33;
  color: #fff;
  border-color: #232a33;
  box-shadow: 0 4px 18px rgba(30,43,54,0.10);
}

/* Hamburger menu icon (mobile) */
.mobile-menu-toggle {
  font-size: 2rem;
  background: transparent;
  border: none;
  color: #1E2B36;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 8px;
  margin-left: 14px;
  z-index: 111;
  transition: color 0.15s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: #45A1B8;
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30,43,54,0.97);
  box-shadow: 0 0 60px rgba(30,43,54,0.25);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.65,.05,.36,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: initial;
}
.mobile-menu-close {
  font-size: 2.1rem;
  background: transparent;
  color: #fff;
  border: none;
  margin: 28px 0 36px auto;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 3000;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #45A1B8;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  width: 100vw;
}
.mobile-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.3rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.07em;
  padding: 8px 0;
  width: 90vw;
  text-align: center;
  border-radius: 10px;
  transition: background .13s, color .13s;
  margin-bottom: 8px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #253745;
  color: #45A1B8;
}
@media (max-width: 992px) {
  header nav,
  header .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ========== HERO SECTIONS ========== */
.hero-section {
  background: linear-gradient(90deg, #F9F9F9 60%, #f4f7fa 100%);
  padding: 48px 0 60px;
}
.hero-section h1 {
  color: #1E2B36;
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.hero-section p {
  font-size: 1.17rem;
  color: #292b2f;
  margin-bottom: 26px;
  max-width: 670px;
}

@media (max-width: 600px) {
  .hero-section {
    padding: 27px 0 36px;
  }
  .hero-section h1 {
    font-size: 1.5rem;
  }
  .hero-section p {
    font-size: 1rem;
  }
}

/* ========== ABOUT/FEATURES/CTA/TABLE ========== */
.about-preview,
.cta-section,
.text-banner {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(30,43,54,0.04);
  margin-bottom: 60px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.cta-section {
  text-align: center;
  padding: 56px 0;
  background: #f4f5f7;
  margin-bottom: 40px;
}
.cta-section h2,
.text-banner h1,
.text-banner h2 {
  color: #1E2B36;
}

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  margin-bottom: 16px;
  font-size: 1rem;
}
.pricing-table th,
.pricing-table td {
  padding: 18px 12px;
  text-align: left;
}
.pricing-table th {
  background: #1E2B36;
  color: #fff;
  font-weight: 700;
  font-family: 'Oswald', Arial, sans-serif;
}
.pricing-table tr {
  border-bottom: 1px solid #eaeaea;
}
.pricing-table tr:last-child {
  border-bottom: none;
}
.pricing-table td {
  color: #212324;
}
@media (max-width: 700px) {
  .pricing-table th,
  .pricing-table td {
    padding: 10px 5px;
    font-size: .95rem;
  }
}

/* ========== TESTIMONIALS ========== */
.testimonials-preview, .testimonials-slider, .testimonial-card {
  background: #f7f8fa;
}
.testimonial-card {
  color: #18191c;
  font-size: 1.16rem;
  position: relative;
  background: #fff;
  border-left: 5px solid #1E2B36;
  border-radius: 16px;
  box-shadow: 0 2.5px 11px rgba(30,43,54,.057);
  margin-bottom: 24px !important;
  padding: 32px 28px;
  max-width: 630px;
}
.testimonial-card span {
  font-size: .97rem;
  color: #555765;
  font-weight: 500;
}
@media (max-width: 650px) {
  .testimonial-card {
    padding: 20px 10px;
  }
}

/* ========== FAQ/ACCORDION ========== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #f6f7f9;
  border-left: 3px solid #45A1B8;
  border-radius: 7px;
  padding: 20px 22px;
  margin-bottom: 12px;
  box-shadow: 0 1.5px 10px rgba(30,43,54,0.045);
}
.faq-item h2 {
  font-size: 1.17rem;
  color: #1E2B36;
  margin-bottom: 9px;
}
.faq-item p {
  font-size: 1rem;
  color: #303235;
}
@media (max-width: 600px) {
  .faq-item {
    padding: 14px 7px;
  }
}

/* ========== FOOTER ========== */
footer {
  width: 100%;
  background: #1E2B36;
  color: #fff;
  padding: 32px 0 16px;
  font-size: 0.97rem;
  margin-top: 45px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 3px;
  justify-content: center;
}
.footer-menu a {
  color: #fff;
  opacity: 0.86;
  font-family: 'Oswald', Arial, sans-serif;
  transition: opacity 0.13s, color 0.10s;
  font-size: 0.95rem;
}
.footer-menu a:hover, .footer-menu a:focus {
  opacity: 1;
  color: #45A1B8;
}
.footer-brand {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.footer-brand img {
  height: 29px;
  width: auto;
  filter: grayscale(1) brightness(3);
}
.footer-brand span {
  color: #eee;
  font-size: 0.98rem;
}
@media (max-width: 700px) {
  .footer-brand {
    flex-direction: column;
    gap: 7px;
    text-align: center;
  }
  .footer-menu {
    gap: 12px;
    flex-wrap: wrap;
  }
}

/* ========== MISC./UTILITY CLASSES ========== */
.hide {
  display: none !important;
}
.active {
  font-weight: 700;
}
.text-section {
  margin-bottom: 22px;
}
.text-section h2 {
  margin-top: 15px;
  font-size: 1.19rem;
  color: #29354d;
}
.text-section p,
.text-section ul,
.text-section li {
  color: #232323;
  margin-bottom: 0.4em;
  font-size: 1rem;
}
/* highlight-list for benefits */
.highlight-list {
  padding-left: 0;
  margin: 18px 0 14px 0;
  list-style: disc inside none;
}
.highlight-list li {
  font-family: 'Roboto', Arial, sans-serif;
  color: #2C3238;
  font-size: 1.04rem;
  padding-left: 0.7em;
  margin-bottom: 0.4em;
}
/* services list */
.services-list {
  padding-left: 0;
  margin-bottom: 20px;
}
.services-list li {
  background: #fafdff;
  border: 1px solid #efeff0;
  border-radius: 10px;
  padding: 24px 20px;
  margin-bottom: 18px;
  box-shadow: 0 1.5px 10px rgba(30,43,54,0.045);
}
.services-list h2 {
  font-size: 1.22rem;
  margin-bottom: 7px;
  color: #1E2B36;
}
.services-list p {
  font-size: 1rem;
  color: #2B2B2B;
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .services-list li {
    padding: 12px 8px;
  }
}

/* ========== ANIMATION / TRANSITIONS ========== */
.btn-primary, .btn-secondary, .card, .feature-item, .mobile-menu, .mobile-nav a, .mobile-menu-close {
  transition: all 0.19s cubic-bezier(.65,.05,.36,1);
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(120px);
  min-width: 310px;
  max-width: 98vw;
  width: 440px;
  background: rgba(245,245,247,0.99);
  color: #1E2B36;
  border: 1.5px solid #d8dbe0;
  box-shadow: 0 6px 22px rgba(16,24,44,0.07);
  border-radius: 18px 18px 0 0;
  z-index: 10000;
  padding: 32px 23px 22px 23px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.97rem;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(.65,.05,.36,1), opacity 0.22s;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.cookie-banner h2 {
  font-size: 1.15rem;
  color: #14151c;
  margin-bottom: 8px;
}
.cookie-banner p {
  color: #202326;
  font-size: 0.97rem;
  margin-bottom: 8px;
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  width: 100%;
  flex-wrap: wrap;
  margin-top: 10px;
}
.cookie-btn {
  padding: 8px 20px;
  border-radius: 14px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.14s, box-shadow 0.14s, color 0.14s, border 0.14s;
}
.cookie-btn.accept {
  background: #1E2B36;
  color: #fff;
  border: 1.5px solid #1E2B36;
}
.cookie-btn.accept:hover { background: #232a33; }
.cookie-btn.reject {
  background: transparent;
  color: #1E2B36;
  border: 1.5px solid #1E2B36;
}
.cookie-btn.reject:hover {
  background: #1E2B36; color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  border: 1.5px solid #d8dbe0;
  color: #202326;
}
.cookie-btn.settings:hover {
  border-color: #1E2B36;
  color: #1E2B36;
  background: #f2f4f8;
}
@media (max-width: 600px) {
  .cookie-banner {
    width: 99vw;
    min-width: 0;
    max-width: 100vw;
    padding: 13px 7px 11px 7px;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%) scale(0.94);
  background: #fff;
  box-shadow: 0 6px 42px rgba(30,43,54,0.20);
  border-radius: 17px;
  min-width: 340px;
  max-width: 96vw;
  width: 400px;
  z-index: 20001;
  padding: 34px 24px 22px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h2 {
  color: #161A20;
  font-size: 1.22rem;
  margin-bottom: 16px;
}
.cookie-modal .cookie-category {
  padding: 13px 0 8px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.cookie-modal label {
  font-size: 1rem;
  color: #161A20;
  font-weight: 500;
}
.cookie-modal .cookie-toggle:disabled+label {
  opacity: 0.60;
}
.cookie-toggle {
  appearance: none;
  width: 32px;
  height: 18px;
  background: #f3f5f8;
  border-radius: 9px;
  border: 1.5px solid #d1d3df;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.14s, border 0.14s;
}
.cookie-toggle:checked {
  background: #45A1B8;
  border-color: #45A1B8;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 3px; top: 2.1px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1.1px 3.2px rgba(40,45,55,0.11);
  transition: left 0.14s;
}
.cookie-toggle:checked:before {
  left: 15px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  width: 100%;
  margin-top: 20px;
}
.cookie-modal .cookie-btn {
  min-width: 96px;
}
/* Modal close x */
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 10px;
  background: transparent;
  border: none;
  color: #1E2B36;
  font-size: 1.32rem;
  cursor: pointer;
  z-index: 2;
  transition: color 0.14s;
}
.cookie-modal-close:hover { color: #45A1B8; }
@media (max-width: 600px) {
  .cookie-modal {
    width: 99vw;
    min-width: 0;
    max-width: 100vw;
    padding: 18px 3px 12px 7px;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .feature-grid,
  .card-container,
  .content-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .content-wrapper {
    gap: 14px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.36rem; }
  h2 { font-size: 1.13rem; }
}

/* SCROLLBAR */
::-webkit-scrollbar {
  width: 11px; background: #f7f7f8;
}
::-webkit-scrollbar-thumb {
  background: #dee1e3; border-radius: 12px;
}

/* ========== ACCESSIBILITY FOCUS STYLES ========== */
:focus {
  outline: 2.7px solid #45A1B8;
  outline-offset: 1.5px;
}

/* End of style.css */
