/*
 * Purulrassu Auto Service
 * Monochrome Sophisticated Theme - style.css
 * Modern, high contrast, monochrome design using flexbox only and responsive patterns.
 * Brand: #20314D (primary), #6CB928 (accent), #F7F7F7 (bg), Oswald/Roboto
 --------------------------------------------------------------
*/
/* RESET & BASE -------------------------------------------------*/
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  color: #161616;
  background: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  background-color: #fff;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  margin-left: 2em;
  margin-bottom: 1.2em;
}
li {
  margin-bottom: 0.6em;
}
a {
  color: #20314D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #6CB928;
  outline: none;
}
strong {
  font-weight: 600;
}
em {
  font-style: italic;
}
hr {
  border: none;
  border-bottom: 1px solid #eee;
}
/* TYPOGRAPHY - Hierarchy ----------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #111;
  margin-bottom: 0.5em;
}
h1 { font-size: 2.5rem; line-height: 1.1; }
h2 { font-size: 2rem; line-height: 1.2; }
h3 { font-size: 1.5rem; line-height: 1.25; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.95rem; }
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }
}
/* CONTAINER & LAYOUT -------------------------------------------*/
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
@media (max-width: 600px) {
  .section { padding: 28px 6px; margin-bottom: 34px; }
  .container { padding: 0 6px; }
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 10px;
}
.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: 16px; }
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  color: #161616;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(60,60,60,0.07);
  border: 1px solid #eee;
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover {
  box-shadow: 0 4px 22px rgba(20,20,40,0.13);
  border-color: #20314D22;
}
/* NAVIGATION & HEADER ------------------------------------------*/
header {
  background: #fff;
  border-bottom: 1px solid #e9ecef;
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 18px;
}
header img {
  height: 46px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1.5px;
  font-size: 1rem;
  color: #222;
  opacity: 0.93;
  line-height: 1;
  padding: 6px 4px;
  position: relative;
  transition: color 0.18s, opacity 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #6CB928;
  opacity: 1;
}
.cta-button {
  background: #20314D;
  color: #fff !important;
  border-radius: 32px;
  padding: 13px 36px;
  font-size: 1.12rem;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 2px;
  box-shadow: 0 2px 18px rgba(30,30,40,0.05);
  border: none;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.16s;
  display: inline-block;
  text-transform: uppercase;
}
.cta-button:hover, .cta-button:focus {
  background: #6CB928;
  color: #20314D !important;
  box-shadow: 0 6px 32px rgba(33,54,77,0.09);
}
@media (max-width: 1050px) {
  .main-nav { gap: 16px; }
  .cta-button { padding: 12px 22px; font-size: 1rem; }
}
/* MOBILE NAVIGATION -------------------------------------------*/
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 900px) {
  .main-nav, .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 24px;
    top: 15px;
    z-index: 1002;
    background: none;
    border: none;
    font-size: 2.1rem;
    color: #20314D;
    cursor: pointer;
    padding: 4px 10px;
    transition: color 0.18s;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    color: #6CB928;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #181A1Ddd;
  backdrop-filter: blur(6px);
  z-index: 2048;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(0.67,0,0.33,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  margin: 22px 28px 8px 0;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #6CB928;
}
.mobile-nav {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 40px 18px 28px;
}
.mobile-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.28rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-weight: 400;
  padding: 12px 0;
  display: block;
  width: 100%;
  border-bottom: 1px solid #22222233;
  transition: color 0.2s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #6CB928;
  background: #20314D22;
  outline: none;
}
@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}
/* SECTIONS & ELEMENTS ------------------------------------------*/
section {
  width: 100%;
  background: transparent;
}
section .content-wrapper {
  width: 100%;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
}
ul {
  list-style-type: disc;
  color: #1e1e1e;
}
ul li {
  font-size: 1rem;
  line-height: 1.7;
}
ul li img {
  height: 22px;
  width: 22px;
  margin-right: 10px;
  vertical-align: middle;
  display: inline-block;
  filter: grayscale(1) contrast(1.8);
}
ul li strong {
  color: #111;
  font-weight: 600;
  margin-right: 6px;
}
/* CARDS -------------------------------------------------------*/
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #F7F7F7;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(32,49,77,0.08);
  padding: 20px 26px;
  margin-bottom: 20px;
  border: 1px solid #ededed;
  min-width: 0;
  max-width: 540px;
}
.testimonial-card p {
  font-size: 1.13rem;
  color: #1e1e1e;
  font-style: italic;
  font-weight: 400;
}
.testimonial-card strong {
  font-weight: 600;
  color: #20314D;
  letter-spacing: 0.3px;
}
.testimonial-card img[alt="Stella"] {
  filter: grayscale(0) brightness(1.07);
  margin-right: 3px;
  height: 22px;
  width: 22px;
  vertical-align: middle;
}
.testimonial-card > div:last-child { margin-top: 0.1rem; }
@media (max-width: 650px) {
  .testimonial-card { padding: 16px 10px; }
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* FOOTER ------------------------------------------------------*/
footer {
  width: 100%;
  background: #161616;
  color: #fff;
  font-size: 1rem;
  border-top: 2px solid #20314D;
  padding: 20px 0 0 0;
  margin-top: 60px;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
  padding-bottom: 16px;
}
.footer-nav {
  display: flex;
  gap: 10px;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #ededed;
  font-family: 'Oswald', Arial, sans-serif;
  text-transform: uppercase;
  font-size: 0.98rem;
  letter-spacing: 1px;
  font-weight: 400;
  transition: color 0.17s;
}
.footer-nav a:hover { color: #6CB928; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #e3e3e3;
  font-size: 0.98rem;
  margin-top: 6px;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact img {
  height: 18px;
  width: 18px;
  filter: grayscale(1) contrast(2) brightness(0.7);
}
footer img {
  height: 44px;
  width: auto;
  filter: grayscale(1) contrast(1.3);
  margin-bottom: 8px;
}
@media (max-width: 850px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start !important;
  }
  footer img { margin-bottom: 13px; }
}
/* BUTTONS & LINKS ---------------------------------------------*/
button, .cta-button {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  border: none;
  outline: none;
}
button:focus, .cta-button:focus {
  outline: 2px solid #6CB928;
}
/* COOKIES BANNER ----------------------------------------------*/
.cookie-banner {
  position: fixed;
  z-index: 6000;
  left: 0;
  right: 0;
  bottom: 0;
  background: #222;
  color: #fff;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 18px;
  padding: 22px 20px;
  width: 100vw;
  box-shadow: 0 -2px 28px rgba(32,49,77,0.18);
  transition: transform 0.36s cubic-bezier(0.65,0,.35,1), opacity 0.32s;
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  flex: 1 1 260px;
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.6;
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  background: #20314D;
  border-radius: 28px;
  color: #fff;
  padding: 8px 22px;
  font-size: 1rem;
  font-family: 'Oswald', Arial, sans-serif;
  border: none;
  margin-right: 2px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #6CB928;
  color: #20314D;
}
.cookie-btn.reject {
  background: #e1e1e1;
  color: #333;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #bbb;
  color: #111;
}
.cookie-btn.settings {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #20314D;
  color: #fff;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 15px 7px;
    font-size: 0.98rem;
  }
  .cookie-banner-buttons { gap: 7px; }
}
/* COOKIE MODAL -----------------------------------------------*/
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: #171a22cc;
  z-index: 8000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.2s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #1a1a1a;
  border-radius: 18px;
  padding: 40px 28px 32px 28px;
  width: 95%;
  max-width: 400px;
  box-shadow: 0 6px 44px rgba(32,49,77,0.22);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.cookie-modal h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #20314D;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #ececec;
}
.cookie-category:last-child { border-bottom: none; }
.cookie-category label {
  font-size: 1rem;
  color: #20314D;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-toggle {
  width: 50px;
  height: 26px;
  background: #e4e4e4;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.18s;
}
.cookie-toggle[aria-checked="true"] {
  background: #6CB928;
}
.cookie-toggle-bar {
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.18s;
}
.cookie-toggle[aria-checked="true"] .cookie-toggle-bar {
  left: 27px;
}
.cookie-category .cookie-toggle[aria-disabled="true"] {
  opacity: 0.5;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  justify-content: flex-end;
}
/* ANIMATIONS & TRANSITIONS ------------------------------------*/
.card, .testimonial-card, .cta-button, .mobile-menu, .cookie-banner, .cookie-modal {
  transition: box-shadow 0.24s, background 0.18s, color 0.17s, border-color 0.17s;
}
section, .section {
  transition: background 0.19s;
}
/* RESPONSIVE for FLEX LAYOUTS ---------------------------------*/
@media (max-width: 925px) {
  .container { max-width: 97vw; }
}
@media (max-width: 740px) {
  .testimonial-card { max-width: 98vw; }
}
@media (max-width: 600px) {
  .container { padding: 0 5px; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.29rem; }
  h2 { font-size: 1.02rem; }
  .cta-button, .cookie-btn { font-size: 0.99rem; }
}
/* UTILITIES --------------------------------------------------*/
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.bold { font-weight: 600; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.gap-8 { gap: 8px; }
.gap-20 { gap: 20px; }
.rounded { border-radius: 8px; }
.shadow {
  box-shadow: 0 2px 14px rgba(32,49,77,0.09);
}
/* DARK MODE or DARK SECTIONS ----------------------------------*/
.section.dark, .footer-dark {
  background: #181D22;
  color: #fff;
}
.section.dark h1, .section.dark h2, .section.dark h3,
.footer-dark h1, .footer-dark h2 { color: #fff; }
/* ENSURE NON-OVERLAPPING --------------------------------------*/
.section, .card, .testimonial-card, .content-wrapper, .container {
  margin-bottom: 20px;
}
.card, .testimonial-card, .feature-item {
  margin-right: 0;
  margin-left: 0;
}
/* ADDITIONAL STYLES for MONOCHROME SOPHISTICATION -------------*/
body {
  background: #fff linear-gradient(transparent, #F3F3F3 140%);
}
.card, .testimonial-card {
  box-shadow: 0 2px 10px rgba(45,45,60,0.07) !important;
}
.card {
  border: 1.5px solid #ececec;
}
.card strong, .feature-item strong { color: #20314D; }
.testimonial-card strong { color: #20314D; }
.content-wrapper a.cta-button, .section a.cta-button {
  margin-top: 14px;
}
/* FORMATTING TABLES (even if not used) ------------------------*/
table { width: 100%; border-collapse: collapse; margin-bottom: 1.2em; }
td, th { padding: 8px 16px; border: 1px solid #e3e3e3; }
th { background: #f7f7f7; font-weight: 600; }
/* SELECTION (high contrast highlight) -------------------------*/
::selection {
  background: #20314D;
  color: #fff;
}
/* FOCUS OUTLINE -----------------------------------------------*/
:focus {
  outline: 2px solid #6CB928;
  outline-offset: 1px;
}
/* BRAND FONT IMPORT (local or fallback) -----------------------*/
@font-face {
  font-family: 'Oswald';
  src: local('Oswald'),
       url('https://fonts.gstatic.com/s/oswald/v48/TK3iWkUHHAIjg752DT8Ghe5kdGQ.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: local('Roboto'),
       url('https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxK.woff2') format('woff2');
  font-display: swap;
}
