/* ============================================================
   CATOOSA KWIK LUBE — Global Stylesheet
   Pixel-accurate replica reverse-engineered from Wix source.
   ============================================================ */

/* ---------- Tahoma system font stack ---------- */

/* ---------- Wix Color Palette (exact RGB values) ----------
   color_11 = 0,0,0     (bg black)
   color_12 = 99,99,99  (dark gray)
   color_15 = 255,255,255 (white text)
   color_17 = 163,139,0 (button default bg)
   color_18 = 245,208,0 (yellow accent  #F5D000)
   color_41 = 245,208,0 (selected nav   #F5D000)
   color_38 = 99,99,99  (hover nav gray)
   ------------------------------------------------------------ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: 'Tahoma', tahoma, Verdana, sans-serif;
  font-size: 14px;
  background-color: rgb(0,0,0);
  /* Wix tile background: 4x4 dot texture */
  background-image: radial-gradient(circle, rgba(60,60,60,0.6) 1px, transparent 1px);
  background-size: 6px 6px;
  color: rgb(255,255,255);
  -webkit-text-size-adjust: 100%;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ---------- Site wrapper ---------- */
.site-wrapper {
  max-width: 980px;
  margin: 0 auto;
  background-color: rgb(0,0,0);
  background-image: radial-gradient(circle, rgba(60,60,60,0.5) 1px, transparent 1px);
  background-size: 6px 6px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ============================================================
   HEADER  (logo 77×70, name 38px tahoma bold italic)
   ============================================================ */
.site-header {
  background-color: rgb(0,0,0);
  padding: 10px 12px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.header-logo img {
  width: 77px;
  height: 70px;
  object-fit: contain;
  flex-shrink: 0;
}
.logo-text { line-height: 1.1em; }
.logo-name {
  font-size: 38px;
  font-weight: bold;
  font-style: italic;
  font-family: 'Tahoma', tahoma, Verdana, sans-serif;
  color: rgb(255,255,255);
  letter-spacing: 0;
  line-height: 1.1em;
}
.logo-name span { color: rgb(245,208,0); }
.logo-tagline {
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  font-family: 'Tahoma', tahoma, Verdana, sans-serif;
  color: rgb(255,255,255);
  text-align: center;
  line-height: normal;
}

.header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}
.header-contact-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-address {
  text-align: right;
  font-size: 16px;
  line-height: 1.3em;
  font-family: 'Tahoma', tahoma, Verdana, sans-serif;
  color: rgb(255,255,255);
}
.header-icons { display: flex; gap: 4px; align-items: center; }
.header-icons a img { width: 30px; height: 30px; object-fit: contain; }

/* "Call us" CTA button — glass style */
.header-cta {
  /* Wix ShinyButtonII glass style */
  display: inline-block;
  font-family: 'Tahoma', tahoma, Verdana, sans-serif;
  font-size: 14px;
  font-weight: bold;
  color: rgb(0,0,0);
  padding: 6px 18px;
  border-radius: 5px;
  border: 1px solid rgba(82,69,0,0.8);
  background-color: rgb(245,208,0);
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.15) 100%);
  box-shadow: 0 1px 4px rgba(0,0,0,0.6);
  transition: background-color 0.4s ease;
  white-space: nowrap;
}
.header-cta:hover { background-color: rgb(245,208,0); filter: brightness(0.92); }

/* ============================================================
   NAVIGATION  — ShinyMenuIButtonSkin
   border-radius: 10px 10px 0 0 (top corners rounded)
   ============================================================ */
.site-nav {
  background-color: transparent;
}
.site-nav ul {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav ul li { flex: 1; position: relative; }

.site-nav ul li a {
  display: block;
  text-align: center;
  padding: 0 4px;
  height: 37px;
  line-height: 37px;
  font-family: 'Tahoma', tahoma, Verdana, sans-serif;
  font-size: 12px;
  font-weight: normal;
  color: rgb(255,255,255);
  text-transform: uppercase;
  white-space: nowrap;
  /* ShinyMenu glass style */
  background-color: rgb(0,0,0);
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.3) 100%);
  border-radius: 10px 10px 0 0;
  box-shadow: 0 1px 4px rgba(0,0,0,0.6);
  transition: background-color 0.4s ease 0s;
  margin: 0 1px;
}
.site-nav ul li a:hover {
  background-color: rgb(99,99,99);
  color: rgb(255,255,255);
}
.site-nav ul li a.active {
  background-color: rgb(245,208,0);
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.15) 100%);
  color: rgb(0,0,0);
}

/* ============================================================
   SLIDER  (960×363 in original, scaled to container)
   ============================================================ */
.hero-slider {
  position: relative;
  width: 100%;
  /* Maintain original 960:363 ratio = 37.8% */
  aspect-ratio: 960 / 363;
  overflow: hidden;
  background: #000;
}
.slider-track {
  display: flex;
  height: 100%;
  transition: transform 600ms ease-in-out;
}
.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  display: block;
}
.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.55);
  color: rgb(255,255,255);
  font-family: 'Tahoma', tahoma, Verdana, sans-serif;
  font-size: 24px;
  font-weight: normal;
  text-align: center;
  padding: 10px 14px;
  line-height: 1.2em;
}

/* Prev / Next arrows */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  color: rgb(255,255,255);
  border: none;
  width: 36px;
  height: 52px;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.slider-btn:hover { background: rgba(0,0,0,0.75); }
.slider-prev { left: 0; border-radius: 0 3px 3px 0; }
.slider-next { right: 0; border-radius: 3px 0 0 3px; }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 8px;
  right: 12px;
  display: flex;
  gap: 6px;
  z-index: 10;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}
.slider-dot.active { background: rgb(245,208,0); }

/* ============================================================
   BRAND LOGOS STRIP  (matrix gallery, white bg, 5 logos)
   ============================================================ */
.brand-logos {
  background-color: rgb(255,255,255);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 12px;
}
.brand-logos img {
  height: 37px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ============================================================
   HOME 3-COLUMN LAYOUT
   ============================================================ */
.home-content {
  display: flex;
  gap: 0;
  padding: 14px 12px;
  align-items: flex-start;
}

/* ---- Left sidebar (dark button containers, 236px wide) ---- */
.home-sidebar {
  width: 236px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Each sidebar button: dark rounded rectangle containing icon + label */
.sidebar-btn-wrap {
  position: relative;
  height: 50px;
  display: flex;
  align-items: center;
  text-decoration: none;
  overflow: hidden;
  background-color: rgb(21,21,21);
  background-image: linear-gradient(to bottom, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 50%, rgba(0,0,0,0.1) 100%);
  border-radius: 5px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.6);
  padding: 0 0 0 5px;
  transition: background-color 0.4s ease;
}
.sidebar-btn-wrap:hover {
  background-color: rgb(40,40,40);
}

/* Yellow oil-drop shape — HIDDEN; each button uses its own unique icon */
.sidebar-btn-shape {
  display: none;
}

/* Unique service icon (oil drop, brake, tire, wrench) */
.sidebar-btn-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
  margin-left: 6px;
}

/* Text label to the right of the icon */
.sidebar-btn-label {
  margin-left: 8px;
  flex-shrink: 0;
  font-family: 'Tahoma', tahoma, Verdana, sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: rgb(255,255,255);
  white-space: nowrap;
  transition: color 0.4s ease;
}
.sidebar-btn-wrap:hover .sidebar-btn-label { color: rgb(245,208,0); }

/* FIND MORE button */
.sidebar-find-more {
  display: block;
  text-align: center;
  background-color: rgb(245,208,0);
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.15) 100%);
  color: rgb(0,0,0);
  font-family: 'Tahoma', tahoma, Verdana, sans-serif;
  font-weight: normal;
  font-size: 12px;
  text-transform: uppercase;
  padding: 0 10px;
  height: 30px;
  line-height: 30px;
  border-radius: 5px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.6);
  margin-top: 4px;
  transition: filter 0.2s;
}
.sidebar-find-more:hover { filter: brightness(0.9); }

/* ---- Center welcome text (font_8 = 14px tahoma body, h2=28px) ---- */
.home-welcome {
  flex: 1;
  padding: 0 14px;
}
.home-welcome-title {
  font-family: 'Tahoma', tahoma, Verdana, sans-serif;
  font-size: 28px;
  font-weight: normal;
  color: rgb(255,255,255);
  margin-bottom: 10px;
  line-height: 1.2em;
}
.home-welcome p {
  font-family: 'Tahoma', tahoma, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.3em;
  color: rgb(255,255,255);
  margin-bottom: 8px;
}
.home-welcome ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 8px;
}
.home-welcome ul li {
  font-family: 'Tahoma', tahoma, Verdana, sans-serif;
  font-size: 16px;
  color: rgb(255,255,255);
  margin-bottom: 3px;
}
.tagline-yellow {
  color: rgb(245,208,0);
  font-size: 16px;
  font-family: 'Tahoma', tahoma, Verdana, sans-serif;
}

/* CONTACT US button (14px tahoma, glass, gray center-aligned) */
.btn-contact {
  display: inline-block;
  font-family: 'Tahoma', tahoma, Verdana, sans-serif;
  font-size: 14px;
  font-weight: normal;
  color: rgb(255,255,255);
  text-align: center;
  padding: 0 16px;
  height: 37px;
  line-height: 37px;
  border-radius: 5px;
  background-color: rgb(99,99,99);
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.25) 100%);
  box-shadow: 0 1px 4px rgba(0,0,0,0.6);
  margin-top: 8px;
  transition: background-color 0.4s ease;
}
.btn-contact:hover { background-color: rgb(82,82,82); }

/* ---- Right: hours + map ---- */
.home-right {
  width: 220px;
  flex-shrink: 0;
}
.hours-box {
  background-color: rgb(0,0,0);
  border-radius: 4px;
  padding: 12px 14px 14px;
  margin-bottom: 6px;
}
.hours-title {
  font-family: 'Tahoma', tahoma, Verdana, sans-serif;
  font-size: 24px;
  font-weight: normal;
  color: rgb(245,208,0);
  margin-bottom: 10px;
  line-height: 1.2em;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  font-family: 'Tahoma', tahoma, Verdana, sans-serif;
  font-size: 14px;
  color: rgb(255,255,255);
  padding: 3px 0;
  vertical-align: top;
  line-height: 1.4;
}
.hours-table td:first-child {
  white-space: nowrap;
  padding-right: 10px;
}
.hours-table td:last-child {
  text-align: right;
  white-space: nowrap;
}
.hours-star {
  color: rgb(245,208,0);
  margin-right: 2px;
}
.home-map iframe {
  width: 100%;
  height: 148px;
  border: none;
  display: block;
}

/* ============================================================
   INNER PAGES
   ============================================================ */
.page-main { flex: 1; }
.inner-page { padding: 16px 12px; }

/* Two-column layout (image left, text right) */
.inner-page-cols {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.inner-page-image { width: 230px; flex-shrink: 0; }
.inner-page-image img { width: 100%; height: auto; display: block; }
.inner-page-content { flex: 1; }

/* Page headings */
.page-heading {
  font-family: 'Tahoma', tahoma, Verdana, sans-serif;
  font-size: 28px;
  font-weight: normal;
  color: rgb(245,208,0);
  line-height: 1.2em;
  margin-bottom: 10px;
}
.section-heading {
  font-family: 'Tahoma', tahoma, Verdana, sans-serif;
  font-size: 24px;
  font-weight: normal;
  color: rgb(245,208,0);
  line-height: 1.2em;
  margin: 14px 0 6px;
}
.inner-page-content p,
.inner-page-content li {
  font-family: 'Tahoma', tahoma, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.4em;
  color: rgb(255,255,255);
  margin-bottom: 6px;
}
.inner-page-content ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 10px;
}
.link-yellow { color: rgb(245,208,0); text-decoration: underline; }
.link-yellow:hover { filter: brightness(0.85); }
.link-red { color: rgb(187,28,36); font-weight: bold; }

/* Price rows with dotted leader */
.price-row {
  display: flex;
  align-items: baseline;
  margin-bottom: 6px;
  font-family: 'Tahoma', tahoma, Verdana, sans-serif;
  font-size: 16px;
  color: rgb(255,255,255);
}
.price-label { white-space: nowrap; }
.price-dots { flex: 1; border-bottom: 1px dotted rgba(255,255,255,0.3); margin: 0 6px 3px; min-width: 16px; }
.price-value { white-space: nowrap; }
.price-free { color: rgb(245,208,0); font-weight: bold; }

/* ============================================================
   OIL CHANGE — brand logo grid
   ============================================================ */
.oil-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 14px 20px;
  margin: 14px 0 6px;
  justify-content: start;
  align-items: center;
}
.oil-brand-grid img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

/* ============================================================
   TIRES — category grid (4 cols)
   ============================================================ */
.tire-categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 16px;
  text-align: center;
}
.tire-category h4 {
  font-family: 'Tahoma', tahoma, Verdana, sans-serif;
  font-size: 14px;
  font-style: italic;
  color: rgb(255,255,255);
  margin-bottom: 6px;
}
.tire-category img {
  width: 100%;
  height: 200px;
  object-fit: contain;
}

/* ============================================================
   SAFETY PAGE — two sections
   ============================================================ */
.safety-section {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.safety-section > img {
  width: 200px;
  flex-shrink: 0;
  height: auto;
}
.safety-content { flex: 1; }
.safety-content p {
  font-family: 'Tahoma', tahoma, Verdana, sans-serif;
  font-size: 16px;
  color: rgb(255,255,255);
  line-height: 1.4em;
  margin-bottom: 6px;
}
.safety-content ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 8px;
}
.safety-content ul li {
  font-family: 'Tahoma', tahoma, Verdana, sans-serif;
  font-size: 16px;
  color: rgb(255,255,255);
  margin-bottom: 3px;
}

/* ============================================================
   MAINTENANCE — numbered dark cards
   ============================================================ */
.maintenance-intro {
  font-family: 'Tahoma', tahoma, Verdana, sans-serif;
  font-size: 16px;
  color: rgb(255,255,255);
  line-height: 1.4em;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgb(245,208,0);
}
.service-card {
  display: flex;
  gap: 12px;
  /* Dark container — Wix box with bg=color_11, border-radius 5px, box-shadow */
  background-color: rgb(21,21,21);
  border-radius: 5px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.6);
  padding: 12px 14px;
  margin-bottom: 6px;
  align-items: flex-start;
}
.service-card-num {
  font-family: 'Tahoma', tahoma, Verdana, sans-serif;
  font-size: 38px;
  font-weight: bold;
  color: rgb(245,208,0);
  line-height: 1;
  min-width: 50px;
  flex-shrink: 0;
}
.service-card-body h3 {
  font-family: 'Tahoma', tahoma, Verdana, sans-serif;
  font-size: 16px;
  font-weight: bold;
  color: rgb(245,208,0);
  text-transform: uppercase;
  margin-bottom: 5px;
}
.service-card-body p {
  font-family: 'Tahoma', tahoma, Verdana, sans-serif;
  font-size: 14px;
  color: rgb(255,255,255);
  line-height: 1.4em;
}

/* ============================================================
   PRICE LIST PAGE
   ============================================================ */
.price-section { margin-bottom: 16px; }
.price-section h2 {
  font-family: 'Tahoma', tahoma, Verdana, sans-serif;
  font-size: 24px;
  font-weight: normal;
  color: rgb(245,208,0);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 4px;
  margin-bottom: 8px;
  line-height: 1.2em;
}
.price-table { width: 100%; border-collapse: collapse; }
.price-table td {
  font-family: 'Tahoma', tahoma, Verdana, sans-serif;
  font-size: 14px;
  color: rgb(255,255,255);
  padding: 4px 5px;
  vertical-align: top;
  border-bottom: 1px dotted rgba(255,255,255,0.15);
}
.price-table tr:last-child td { border-bottom: none; }
.price-table .col-service { width: 62%; }
.price-table .col-price { text-align: right; white-space: nowrap; }
.price-sub-list {
  list-style: disc;
  padding-left: 20px;
  margin: 4px 0 4px;
}
.price-sub-list li {
  font-family: 'Tahoma', tahoma, Verdana, sans-serif;
  font-size: 13px;
  color: rgb(212,212,212);
  margin-bottom: 2px;
}
.price-note {
  font-family: 'Tahoma', tahoma, Verdana, sans-serif;
  font-size: 13px;
  color: rgb(149,149,149);
  font-style: italic;
  margin-top: 8px;
  line-height: 1.5em;
}

/* ============================================================
   FIND US + CONTACT PAGES
   ============================================================ */
.find-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.find-us-map iframe {
  width: 100%;
  height: 300px;
  border: none;
  display: block;
}
.find-us-info h2 {
  font-family: 'Tahoma', tahoma, Verdana, sans-serif;
  font-size: 24px;
  font-weight: normal;
  color: rgb(245,208,0);
  margin-bottom: 10px;
  line-height: 1.2em;
}
.find-us-info p {
  font-family: 'Tahoma', tahoma, Verdana, sans-serif;
  font-size: 16px;
  color: rgb(255,255,255);
  line-height: 1.5em;
  margin-bottom: 8px;
}
.contact-form { margin-top: 14px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  background-color: rgb(42,42,42);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 3px;
  color: rgb(255,255,255);
  padding: 7px 9px;
  font-family: 'Tahoma', tahoma, Verdana, sans-serif;
  font-size: 14px;
  margin-bottom: 7px;
  display: block;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.5); }
.contact-form textarea { resize: vertical; min-height: 90px; }
.btn-submit {
  font-family: 'Tahoma', tahoma, Verdana, sans-serif;
  font-size: 14px;
  font-weight: normal;
  color: rgb(0,0,0);
  background-color: rgb(245,208,0);
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.08) 50%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.15) 100%);
  border: 1px solid rgba(82,69,0,0.8);
  border-radius: 5px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.6);
  padding: 0 20px;
  height: 37px;
  line-height: 37px;
  cursor: pointer;
  transition: filter 0.2s;
}
.btn-submit:hover { filter: brightness(0.9); }

/* ============================================================
   HORIZONTAL DIVIDER LINE (gold)
   ============================================================ */
.gold-divider {
  border: none;
  border-top: 2px solid rgb(245,208,0);
  margin: 14px 0;
}

/* ============================================================
   FOOTER  (yellow bar)
   ============================================================ */
.site-footer {
  background-color: rgb(245,208,0);
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.footer-copy {
  font-family: 'Tahoma', tahoma, Verdana, sans-serif;
  font-size: 11px;
  color: rgb(0,0,0);
}
.footer-copy a { color: rgb(0,0,0); text-decoration: underline; }
.footer-fb img { width: 30px; height: 30px; object-fit: contain; }
