/* --- CSS RESET & BASE STYLES --- */
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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
html, body {
  height: 100%;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background-color: #fff;
  color: #243654;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #F2A444;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #243654;
  text-decoration: underline;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
strong, b {
  font-weight: bold;
}
address {
  font-style: normal;
  color: #243654;
  margin-bottom: 8px;
}
/* Typography */
h1, h2, h3, h4 {
  font-family: 'Oswald', Arial, sans-serif;
  letter-spacing: 1px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}
h1 {
  font-size: 2.5rem;
  color: #243654;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  color: #F2A444;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  color: #243654;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
}
p, .meta, .subheadline, li {
  font-size: 1rem;
  line-height: 1.5;
}
.subheadline {
  font-size: 1.2rem;
  color: #243654;
  margin-bottom: 24px;
  font-weight: 400;
}
.meta {
  font-size: 0.95rem;
  color: #687897;
  margin-bottom: 20px;
}
/* --- LAYOUT CONTAINERS (FLEXBOX) --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 16px 0 rgba(36,54,84,0.07);
  position: relative;
}
@media (max-width: 900px) {
  .container {
    padding: 0 10px;
  }
  .section {
    padding: 32px 10px;
    border-radius: 18px;
  }
}
@media (max-width: 600px) {
  .section {
    padding: 24px 4px;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 2vw;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(36,54,84,0.09);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 18px;
  min-width: 260px;
  flex: 1 0 290px;
  transition: box-shadow 0.23s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(242,164,68,0.18);
}
.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: 22px;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 40px rgba(36,54,84,0.13);
  min-width: 260px;
  max-width: 550px;
  margin-bottom: 20px;
  flex: 1 0 290px;
  flex-direction: column;
  transition: box-shadow 0.18s, transform 0.18s;
  border-left: 6px solid #F2A444;
}
.testimonial-card:hover {
  box-shadow: 0 10px 52px rgba(242,164,68,0.16);
  transform: translateY(-6px) scale(1.018);
}
.testimonial-meta {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-top: 10px;
}
.stars {
  color: #FDB512;
  font-size: 1.3rem;
  letter-spacing: 2px;
}
.testimonial-list, .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-section {
  margin-bottom: 18px;
}
.notice {
  background: #F2A4441A;
  padding: 14px 18px;
  border-radius: 12px;
  color: #713500;
  font-size: 1rem;
  margin-bottom: 14px;
}
.confirmation-message {
  color: #243654;
  font-weight: 600;
  background: #E7E9ED;
  padding: 18px;
  border-radius: 16px;
  margin-bottom: 18px;
}
.next-steps {
  font-size: 1.05rem;
  color: #243654;
  margin-bottom: 16px;
}
/* --- HEADER & NAVIGATION --- */
header {
  width: 100%;
  background: #243654;
  color: #fff;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1002;
  box-shadow: 0 0 16px rgba(36,54,84,0.13);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 72px;
}
header img[alt="VaporStruct Auto"] {
  height: 46px;
  margin-right: 28px;
}
.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-left: 30px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 1px;
}
.main-nav a {
  color: #fff;
  padding: 8px 10px;
  border-radius: 5px;
  font-weight: 500;
  position: relative;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F2A444;
  color: #243654;
}
header .cta-button.primary {
  margin-left: 32px;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  color: #F2A444;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 12px;
  transition: color 0.17s;
  position: relative;
  z-index: 1003;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #fff;
}
@media (max-width: 950px) {
  .main-nav {
    gap: 16px;
    margin-left: 12px;
    font-size: 0.98rem;
  }
}
@media (max-width: 820px) {
  .main-nav, header .cta-button.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* --- MOBILE MENU --- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: #243654;
  position: fixed;
  top: 0;
  right: 0;
  width: 92vw;
  max-width: 350px;
  height: 100vh;
  z-index: 1200;
  transform: translateX(105%);
  box-shadow: -8px 0 32px rgba(36,54,84,0.19);
  transition: transform 0.33s cubic-bezier(.87,-0.08,.45,1.15);
  padding: 18px 32px 32px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.6rem;
  color: #F2A444;
  background: none;
  border: none;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 20px;
  transition: color 0.17s;
  z-index: 1301;
  line-height: 1;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.11rem;
  letter-spacing: 1px;
  padding: 12px 8px;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
  margin-bottom: 4px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F2A444;
  color: #243654;
}
/* --- CTA BUTTONS --- */
.cta-button {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  background: #F2A444;
  color: #243654;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  outline: none;
  cursor: pointer;
  margin-top: 12px;
  margin-bottom: 12px;
  box-shadow: 0 4px 16px -2px rgba(242,164,68,0.13);
  transition: background 0.19s, color 0.19s, box-shadow 0.17s, transform 0.16s;
  position: relative;
}
.cta-button.primary {
  background: #243654;
  color: #F2A444;
  border: 2px solid #F2A444;
  box-shadow: 0 6px 24px -2px rgba(36,54,84,0.18);
}
.cta-button:hover, .cta-button:focus {
  background: #FDB512;
  color: #243654;
  transform: scale(1.057);
  box-shadow: 0 2px 28px -2px rgba(242,164,68,0.19);
  outline: none;
}
.cta-button.primary:hover, .cta-button.primary:focus {
  background: #F2A444;
  color: #243654;
}
/* --- SERVICE CARDS & LISTS --- */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-list > div {
  flex: 1 0 220px;
  background: #E7E9ED;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 14px;
  min-width: 180px;
  box-shadow: 0 2px 18px rgba(36,54,84,0.07);
  transition: box-shadow 0.2s;
}
.service-list > div:hover {
  box-shadow: 0 8px 32px 0 rgba(36,54,84,0.13);
}
.service-list img {
  width: 56px;
  margin-bottom: 12px;
}
.service-card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(242,164,68,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 22px 16px 18px 16px;
  min-width: 240px;
  flex: 1 0 270px;
  transition: box-shadow 0.21s, transform 0.15s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-left: 6px solid #F2A444;
}
.service-card:hover {
  box-shadow: 0 12px 44px 0 rgba(36,54,84,0.14);
  transform: translateY(-5px) scale(1.03);
}
.service-card img {
  width: 52px;
  margin-bottom: 8px;
}
.service-price {
  font-size: 1.1rem;
  color: #F2A444;
  font-weight: 700;
  margin-top: 8px;
}
@media (max-width: 900px) {
  .service-list, .service-card-grid {
    gap: 16px;
  }
}
@media (max-width: 700px) {
  .service-list, .service-card-grid {
    flex-direction: column;
    gap: 18px;
  }
}
/* --- FORM AND OL STEPS --- */
ol {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
  margin-bottom: 18px;
}
ol li {
  display: flex;
  align-items: center;
  background: #E7E9ED;
  border-radius: 13px;
  padding: 16px;
  min-width: 220px;
  flex: 1 0 260px;
  margin-bottom: 0;
  gap: 12px;
}
ol li img {
  width: 34px;
  margin-right: 12px;
}
@media (max-width: 720px) {
  ol {
    flex-direction: column;
    gap: 14px;
  }
}
/* --- FOOTER --- */
footer {
  width: 100%;
  background: #243654;
  color: #fff;
  padding: 36px 0 0 0;
  font-size: 1.02rem;
  margin-top: 48px;
  box-shadow: 0 -2px 22px rgba(36,54,84,0.08);
}
footer .container {
  padding: 0 20px 0 20px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  padding-bottom: 28px;
}
footer section {
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
footer nav a {
  color: #F2A444;
  margin-bottom: 0;
  transition: color 0.17s;
}
footer nav a:hover,footer nav a:focus {
  color: #fff;
}
footer img[alt="VaporStruct Auto"] {
  width: 120px;
  margin: 0 0 10px 0;
}
footer .cta-button.primary {
  margin-top: 18px;
  margin-left: 0;
  font-size: 1rem;
}
footer address, footer address a {
  color: #E7E9ED;
  font-size: 1rem;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    gap: 18px;
    flex-direction: column;
    padding-bottom: 20px;
  }
  footer section {
    min-width: unset;
  }
}
/* --- VIBRANT/ENERGETIC COLOR ACCENTS --- */
.section {
  box-shadow: 0 4px 32px 0 rgba(242,164,68,0.08),0 2px 18px rgba(36,54,84,0.04);
  border: 2px solid #F2A44419;
}
.card, .service-card {
  border-left: 6px solid #F2A444;
}
.testimonial-card {
  border-left: 6px solid #F2A444;
  background: #fff;
  color: #243654;
}
.service-list > div {
  border-bottom: 4px solid #F2A444;
}
.feature-item strong {
  color: #F2A444;
}
hr {
  border: 0;
  border-top: 2px solid #F2A44444;
  margin: 40px 0 28px 0;
}
/* --- MICRO-INTERACTIONS (ANIMATION) --- */
.cta-button, .service-list > div, .service-card, .card, .testimonial-card {
  transition: box-shadow 0.22s, transform 0.17s;
}
.cta-button:active {
  transform: scale(0.97);
}
/* --- RESPONSIVE TYPE SCALE --- */
@media (max-width: 550px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .section { padding: 16px 0; margin-bottom: 28px; }
  .card, .service-card, .testimonial-card {
    min-width: 0;
    padding: 13px 6px;
  }
}
/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #243654;
  color: #fff;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  padding: 24px 16px;
  z-index: 1210;
  box-shadow: 0 -4px 24px rgba(36,54,84,0.13);
  font-size: 1.07rem;
  animation: cookieSlideUp 0.8s cubic-bezier(0.28,1.1,0.44,1.07);
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}
.cookie-consent-text {
  flex: 1;
  max-width: 550px;
}
.cookie-consent-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-consent-btn {
  padding: 10px 22px;
  border-radius: 30px;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  background: #F2A444;
  color: #243654;
  margin-right: 2px;
  margin-bottom: 2px;
  transition: background 0.17s, color 0.17s;
}
.cookie-consent-btn.reject {
  background: #fff;
  color: #243654;
  border: 2px solid #F2A444;
}
.cookie-consent-btn.settings {
  background: #E7E9ED;
  color: #243654;
  border: 2px solid #F2A444
}
.cookie-consent-btn:hover, .cookie-consent-btn:focus {
  background: #FDB512;
  color: #243654;
}
@media (max-width:600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 6px 18px 12px;
    font-size: 1rem;
  }
  .cookie-consent-actions {
    gap: 10px;
  }
}
/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(36,54,84,0.78);
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInCookie 0.2s;
}
@keyframes fadeInCookie {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #243654;
  border-radius: 22px;
  padding: 32px 38px 24px 38px;
  min-width: 320px;
  max-width: 98vw;
  box-shadow: 0 14px 50px rgba(36,54,84,0.25);
  animation: modalUp 0.3s cubic-bezier(.38,1.14,.46,.98);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
@keyframes modalUp {
  from { transform: translateY(60px); opacity: 0;} to {transform: translateY(0); opacity:1 }
}
.cookie-modal h3, .cookie-modal h2 {
  margin-bottom: 6px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.3rem;
  color: #243654;
}
.cookie-modal-close {
  position: absolute;
  top: 15px; right: 22px;
  background: none;
  border: none;
  color: #F2A444;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1501;
  transition: color 0.17s;
}
.cookie-modal-close:hover {
  color: #243654;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #E7E9ED;
  border-radius: 12px;
  padding: 14px 12px;
  margin-bottom: 10px;
}
.cookie-category strong {
  font-size: 1.05rem;
  color: #243654;
}
.cookie-toggle {
  margin-left: 12px;
  width: 46px;
  height: 24px;
  border-radius: 14px;
  background: #F2A444;
  position: relative;
  cursor: pointer;
  transition: background 0.16s;
  display: inline-block;
}
.cookie-toggle input { display: none; }
.cookie-toggle-slider {
  position: absolute;
  top: 2px; left: 3px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  border: 1.5px solid #F2A444;
  transition: left 0.16s, background 0.17s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 23px;
  background: #243654;
  border-color: #243654;
}
.cookie-category.disabled {
  opacity: 0.5;
}
.cookie-category.disabled .cookie-toggle { background: #ddd; }
.cookie-category.disabled .cookie-toggle-slider { background: #ccc; border-color: #bbb; }
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 10px;
}
@media (max-width:570px){
  .cookie-modal { padding: 16px 7vw 12px 7vw; min-width:unset; }
}
/* --- MAP/EMBED --- */
.map-embed {
  margin-top: 10px;
  background: #E7E9ED;
  border-radius: 13px;
  padding: 12px 18px;
}
/* --- ANIMATED FOCUS & ACCESSIBILITY --- */
:focus-visible {
  outline: 2.5px dashed #F2A444;
  outline-offset: 3px;
}

/* --- HIGH ENERGY COLOR UTILITY CLASSES (for HTML flexibility) --- */
.bg-accent { background: #E7E9ED !important; color: #243654; }
.bg-secondary { background: #F2A444 !important; color: #243654; }
.bg-primary { background: #243654 !important; color: #fff; }
.text-accent { color: #E7E9ED !important; }
.text-secondary { color: #F2A444 !important; }
.text-primary { color: #243654 !important; }

/* --- CUSTOM SCROLLBAR FOR ENERGY / MODERN FEEL --- */
::-webkit-scrollbar {
  width: 10px;
  background: #E7E9ED;
}
::-webkit-scrollbar-thumb {
  background: #F2A444;
  border-radius: 8px;
}

/* --- ERROR, ALERT, INFO --- */
.alert {
  color: #fff;
  background: #E04036;
  border-radius: 7px;
  padding: 10px 17px;
  font-weight: 500;
}

/* --- LOADING SPINNER FOR BUTTONS (if present by JS) --- */
.button-spinner {
  border: 2.5px solid #F2A444;
  border-top: 2.5px solid #243654;
  border-radius: 50%;
  width: 21px;
  height: 21px;
  animation: spin 0.8s linear infinite;
  display: inline-block;
  vertical-align: middle;
  margin-left: 12px;
}
@keyframes spin { to { transform: rotate(360deg);} }

/* --- END CSS FILE --- */
