/* ===========================================================
   CSS RESET & BASE
   ======================================================= */
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;
  vertical-align: baseline;
  font-size: 100%;
  font-weight: inherit;
  font-style: inherit;
  font-family: inherit;
  box-sizing: border-box;
}
html {
  line-height: 1.5;
  scroll-behavior: smooth;
  min-height: 100%;
  background: #f7f8fa;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #18191a;
  background: #fff;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #222;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #FFD600;
  outline-offset: 2px;
}
ul, ol {
  list-style-position: inside;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 32px;
}
th, td {
  padding: 12px 16px;
  border-bottom: 1px solid #e5e5e5;
}
th {
  color: #111;
  background: #f6f6f7;
  font-weight: 600;
  text-align: left;
}

/* ===========================================================
   TYPOGRAPHY
   ======================================================= */
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
  font-weight: 700;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.18;
  color: #111;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  line-height: 1.22;
  color: #1a1a1a;
}
h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #222;
}
h4 {
  font-size: 1.125rem;
}
h5 {
  font-size: 1rem;
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #2b2b2b;
}
strong {
  font-weight: 600;
}
.text-section p, .text-section ul, .text-section li {
  color: #222;
}

/* ===========================================================
   CONTAINER & LAYOUT
   ======================================================= */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 32px 0 rgba(0,0,0,0.07), 0 2px 7px 0 rgba(0,0,0,0.03);
  position: relative;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 28px 8px;
    border-radius: 12px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: #fafbfc;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 300px;
  min-width: 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px 0 rgba(0,0,0,0.11), 0 2px 7px 0 rgba(0,0,0,0.10);
  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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px 28px;
  background: #fafbfc;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px rgba(40,40,40,0.06);
  position: relative;
  border-left: 6px solid #111;
  color: #191a1b;
  min-width: 220px;
}
.testimonial-card p {
  font-style: italic;
  color: #222;
  font-size: 1.08rem;
}
.testimonial-card span {
  color: #555;
  font-size: 0.99rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .testimonial-card {
    padding: 16px 12px;
    margin-bottom: 14px;
  }
}

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

/* ================================
   HEADER & NAVIGATION
   ================================ */
header {
  background: #fff;
  box-shadow: 0 1px 12px rgba(18,18,18,0.07);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-left: 24px;
}
.main-nav a {
  color: #191a1b;
  padding: 6px 0 6px 0;
  font-weight: 500;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  position: relative;
  transition: color 0.18s;
}
.main-nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: #191a1b;
  transition: width 0.2s;
}
.main-nav a:hover,
.main-nav a.active {
  color: #234266;
}
.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}
/* Header CTA */
.cta-btn {
  background: #fff;
  color: #191a1b;
  border: 2px solid #191a1b;
  border-radius: 24px;
  padding: 10px 28px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-left: 20px;
  box-shadow: 0 2px 10px rgba(110,110,110,0.03);
  cursor: pointer;
  text-align: center;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  position: relative;
  z-index: 2;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #191a1b;
  color: #fff;
  box-shadow: 0 4px 24px rgba(50,50,50,0.11);
  border-color: #234266;
  text-decoration: none;
}

/* ================================
   MOBILE NAVIGATION
   ================================ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 24px;
  z-index: 50;
  background: #191a1b;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 2.05rem;
  width: 48px;
  height: 48px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.11);
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #234266;
  outline: none;
}

@media (max-width: 1024px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(26,27,28,0.94);
  z-index: 120;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.75,.35,.36,1.15);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 2.3rem;
  margin: 24px 28px 0 0;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FFD600;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 36px 0 0 0;
  width: 100%;
  align-items: center;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.5rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 0.18s;
  padding: 12px 24px;
  border-radius: 16px;
  text-align: center;
  min-width: 80vw;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #FFD600;
  background: rgba(34,66,102,0.11);
  text-decoration: none;
}
@media (min-width: 1025px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ================================
   BUTTONS & LINKS
   ================================ */
button {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}
button:focus-visible {
  outline: 2px solid #FFD600;
  outline-offset: 2px;
}
.btn, .button {
  padding: 10px 32px;
  font-size: 1rem;
  border-radius: 22px;
  background: #191a1b;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border: 2px solid transparent;
  transition: background 0.18s, color 0.18s, border 0.18s;
  box-shadow: 0 1px 6px rgba(80,80,80,0.05);
  margin: 8px 0;
}
.btn:hover, .btn:focus, .button:hover, .button:focus {
  background: #FFD600;
  color: #191a1b;
  border-color: #191a1b;
}

/* ================================
   SERVICE LIST TABS
   ================================ */
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #191a1b;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  margin-bottom: 14px;
  margin-top: 2px;
}
.category-tabs span {
  padding: 7px 22px;
  border-radius: 14px;
  background: #f6f6f7;
  color: #313131;
  font-weight: 500;
  cursor: default;
}
.category-tabs span.active {
  background: #191a1b;
  color: #FFD600;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 12px 0 24px 0;
}
.service-list > div {
  background: #f3f5f8;
  border-radius: 16px;
  box-shadow: 0 1px 7px rgba(0,0,0,0.04);
  padding: 26px 18px;
  min-width: 220px;
  flex: 1 1 250px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.19s;
}
.service-list > div:hover {
  box-shadow: 0 4px 20px rgba(30,30,30,0.08);
  z-index: 1;
}

.vehicle-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.vehicle-list > div {
  background: #fafbfc;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
  padding: 24px 16px;
  min-width: 230px;
  flex: 1 1 230px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.18s;
}
.vehicle-list > div:hover {
  box-shadow: 0 4px 20px rgba(10,10,10,0.07);
}

.service-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 12px 0 24px 0;
}
.service-highlights > div {
  background: #fafbfc;
  border-radius: 14px;
  box-shadow: 0 1px 7px rgba(0,0,0,0.03);
  padding: 20px 14px;
  min-width: 200px;
  flex: 1 1 250px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.19s;
}
.service-highlights > div:hover {
  box-shadow: 0 4px 18px rgba(30,30,30,0.08);
}

/* ================================
   CONTACT SHORTCUT & DETAILS
   ================================ */
.contact-short {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin: 16px 0;
  font-size: 1.12rem;
}
.contact-short img {
  width: 19px;
  height: 19px;
  margin-right: 6px;
  vertical-align: middle;
}
.contact-details ul {
  margin-bottom: 10px;
}
.contact-details li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 7px;
  font-size: 1.02rem;
  color: #191a1b;
}
.contact-details img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

/* ================================
   FAQ
   ================================ */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.faq-item {
  background: #fafbfc;
  border-radius: 12px;
  padding: 18px 16px;
  box-shadow: 0 2px 9px rgba(0,0,0,0.02);
  flex: 1 1 260px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item h3 {
  margin-bottom: 7px;
  font-size: 1.05rem;
}

/* ================================
   TABLES
   ================================ */
table {
  background: #fafbfc;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 2px 6px rgba(40,40,40,0.03);
}
th, td {
  font-size: 1rem;
  border-bottom: 1px solid #e0e0e1;
}
tr:last-child td {
  border-bottom: none;
}

/* ================================
   ICONS IN LISTS
   ================================ */
ul > li, ol > li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 28px;
}
ul > li img, ol > li img {
  position: absolute;
  left: 0;
  top: 1px;
  width: 19px;
  height: 19px;
  filter: grayscale(1) contrast(1.5);
  opacity: 0.82;
}
@media (max-width: 540px) {
  ul > li, ol > li {
    padding-left: 24px;
  }
  ul > li img, ol > li img {
    width: 16px;
    height: 16px;
  }
}

/* ================================
   FOOTER
   ================================ */
footer {
  background: #181a1d;
  color: #fff;
  padding: 0 0 0 0;
  font-size: 1rem;
  margin-top: 64px;
}
footer .container {
  padding: 40px 20px 0 20px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
  border-bottom: 1px solid #3a3c40;
  padding-bottom: 30px;
}
.footer-main a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-bottom: 8px;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.18s, color 0.18s;
}
.footer-main a:hover {
  color: #FFD600;
  opacity: 1;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 6px;
  filter: grayscale(1) brightness(2.7);
}
.footer-contact p {
  font-size: 0.95rem;
  color: #ededed;
  opacity: 0.88;
}
.footer-bottom {
  text-align: center;
  font-size: 0.99rem;
  color: #aaa;
  margin-top: 18px;
  padding-bottom: 18px;
}
@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  footer .container {
    padding: 15px 10px 0 10px;
  }
}

/* ================================
   MONOCHROME DRAMATIC LOOK
   ================================ */
body, .section, .faq-item, .vehicle-list > div, .service-list > div, .card, .testimonial-card, .service-highlights > div {
  background: #fff;
  color: #18191a;
}
.section {
  box-shadow: 0 6px 32px 0 rgba(20,20,20,0.07), 0 2px 7px 0 rgba(0,0,0,0.03);
}

/* Accent, subtle highlight for monochrome refinement */
.cta-btn, .btn, .button {
  background: #fff;
  color: #191a1b;
  border: 2px solid #191a1b;
  transition: background 0.18s, color 0.18s, border 0.18s, box-shadow 0.18s;
}
.cta-btn:hover, .btn:hover, .cta-btn:focus, .btn:focus {
  background: #191a1b;
  color: #fff;
  border-color: #234266;
  box-shadow: 0 4px 24px rgba(50,50,50,0.11);
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 1024px) {
  .container {
    max-width: 100vw;
  }
  .footer-main {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  .content-grid, .service-list, .vehicle-list, .service-highlights, .faq-list, .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .card,
  .service-list > div,
  .vehicle-list > div, .service-highlights > div {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
    padding: 18px 10px;
  }
}

/* Add extra spacing between all cards in mobile */
@media (max-width: 540px) {
  .service-list > div,
  .vehicle-list > div,
  .feature-item,
  .faq-item {
    margin-bottom: 12px;
    padding: 13px 6px;
  }
  .testimonial-card {
    margin-bottom: 10px;
    padding: 11px 6px;
  }
}

/* ================================
   MICRO-INTERACTIONS & TRANSITIONS
   ================================ */
.card, .service-list > div, .vehicle-list > div, .service-highlights > div, .testimonial-card, .faq-item {
  transition: box-shadow 0.18s, border-color 0.16s;
}
.section, .footer-main, .footer-contact {
  transition: box-shadow 0.29s, background 0.18s;
}
.cta-btn, .btn, .button {
  transition: background 0.14s, color 0.14s, box-shadow 0.14s;
}
a, .main-nav a, .mobile-nav a {
  transition: color 0.17s, background 0.17s;
}

/* ================================
   Cookie Consent Banner
   ================================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 140;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 8px 15px 8px;
  background: rgba(28,28,30,0.94);
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 -3px 16px 0 rgba(0,0,0,0.29);
  width: 100%;
  min-height: 58px;
  gap: 22px;
  flex-wrap: wrap;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.29s cubic-bezier(.7,.2,.3,1), opacity 0.29s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner-content {
  flex: 1 1 330px;
  min-width: 180px;
  color: #fff;
  font-size: 1.03rem;
}
.cookie-banner-btns {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  background: #fff;
  color: #111;
  border: none;
  border-radius: 18px;
  padding: 8px 22px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.09);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #FFD600;
  color: #111;
}
.cookie-btn.settings {
  background: #191a1b;
  color: #fff;
  border: 1.5px solid #FFD600;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #FFD600;
  color: #191a1b;
}

/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 170;
  background: rgba(30,30,30,0.71);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.26s;
}
.cookie-modal-backdrop.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  color: #191a1b;
  border-radius: 18px;
  box-shadow: 0 4px 48px rgba(40,40,40,0.26);
  max-width: 420px;
  width: 92vw;
  padding: 36px 26px 22px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeInModal 0.31s cubic-bezier(.70,.15,.40,1.15);
}
@keyframes fadeInModal {
  0% {transform: translateY(60px) scale(0.98); opacity: 0;}
  80% {transform: translateY(-10px) scale(1.01); opacity: 1;}
  100% {transform: translateY(0) scale(1); opacity: 1;}
}
.cookie-modal-close {
  position: absolute;
  top: 8px; right: 13px;
  background: none;
  color: #222;
  border: none;
  font-size: 1.9rem;
  line-height: 1;
  cursor: pointer;
  padding: 2px 7px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #FFD600;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 14px 0 10px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f7f8fa;
  border-radius: 11px;
  padding: 11px 14px;
  font-size: 1.02rem;
  font-weight: 500;
}
.cookie-category label {
  cursor: pointer;
}
.cookie-category .toggle {
  width: 38px;
  height: 22px;
  background: #e6e6e6;
  border-radius: 11px;
  position: relative;
  transition: background 0.16s;
  flex-shrink: 0;
}
.cookie-category .toggle input {
  display: none;
}
.cookie-category .toggle span {
  display: block;
  width: 18px;
  height: 18px;
  background: #d2d2d2;
  border-radius: 50%;
  position: absolute;
  top: 2px; left: 3px;
  transition: left 0.2s, background 0.18s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.cookie-category .toggle input:checked + span {
  left: 17px;
  background: #191a1b;
}
.cookie-category .toggle input:disabled + span {
  background: #bdbdbd;
}
.cookie-category.essential .toggle {
  background: #cccccc;
}
.cookie-category.essential label {
  opacity: 0.7;
}
.cookie-category.essential .toggle span {
  background: #aaa;
}
.cookie-category.essential .toggle input + span {
  left: 17px;
}

/* Responsive Cookie Banner Modal */
@media (max-width: 540px) {
  .cookie-modal {
    padding: 24px 10px 18px 10px;
  }
  .cookie-modal-close {
    top: 5px; right: 5px;
    font-size: 1.5rem;
  }
}

/* ===========================
   MISC & ASTHETIC DETAILS
   =========================== */
::-webkit-scrollbar {
  width: 10px;
  background: #e5e5e5;
}
::-webkit-scrollbar-thumb {
  background: #c2c2c2;
  border-radius: 2px;
}

/* Forms (if forms used in contact in later phases) */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border: 1.5px solid #bdbdbd;
  background: #fafbfc;
  padding: 10px 14px;
  border-radius: 6px;
  width: 100%;
  margin-bottom: 14px;
  outline: none;
  box-shadow: 0 1px 3px rgba(50,50,50,0.04);
  color: #222;
  transition: border 0.15s, box-shadow 0.16s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #234266;
  box-shadow: 0 2px 8px rgba(34,66,102,0.13);
}

/* Highlighted Text, Quote etc. */
mark {
  background: #FFD600;
  color: #18191a;
  border-radius: 2px;
  padding: 0 3px;
}

/* ===========================
   VISUAL HIERARCHY & SPACING
   =========================== */
.section, .service-list > div, .card, .testimonial-card, .feature-item, .faq-item {
  margin-bottom: 20px;
}
@media (max-width: 540px) {
  .section, .service-list > div, .card, .testimonial-card, .feature-item, .faq-item {
    margin-bottom: 13px;
  }
}

/* ===========================
   Z-INDEX MANAGEMENT
   =========================== */
header { z-index: 30; }
.mobile-menu { z-index: 120; }
.cookie-banner { z-index: 140; }
.cookie-modal-backdrop { z-index: 170; }

/* ===========================
   PRINT SUPPORT
   =========================== */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  .section { box-shadow: none; border-radius: 0; }
}

/*
=========================================================================
  END OF "UNGEN PREMU MOBIL" STYLE.CSS FOR MONOCHROME_SOPHISTICATED LOOK
=========================================================================
*/
