/* =============================================================
   Airy Motors – Futuristic Tech CSS for all pages
   Design: tech_futuristic (gradient backgrounds, neon, sleek)
   Brand colors: #267242 (primary), #0F4033 (secondary), #F8FBF4 (accent)
   Fonts: Montserrat (display), Roboto (body)
   Flexbox only for layout – never grid/columns!
   ============================================================= */
/* === 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,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; box-sizing: border-box;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #F8FBF4;
  background: linear-gradient(120deg, #252b33 0%, #0F4033 100%);
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.02em;
}
img { max-width: 100%; border: 0; display: block; }
a { color: #54e58c; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #a7ffce; text-decoration: underline; }
strong, b { font-weight: 700; }
ul, ol { padding-left: 1.4em; }

/* === VARIABLE FALLBACKS === */
:root {
  --primary: #267242;
  --secondary: #0F4033;
  --accent: #F8FBF4;
  --neon-green: #54e58c;
  --neon-blue: #38f2ff;
  --neon-purple: #7c5cff;
  --navy: #141726;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-elevate: 0 6px 32px 0 rgba(38,114,66,0.20),0 2px 6px 0 rgba(38,114,66,0.10);
  --shadow-glow: 0 0 4px 1px #54e58c66;
  --duration: 0.3s;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #54e58c;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.4rem; margin-bottom: 10px; color: #a7ffce; }
h4, h5, h6 { font-size: 1.1rem; }
p { color: #f4fff1; margin-bottom: 16px; font-size: 1rem; }
.text-section ul, .text-section ol, ul, ol { margin-bottom: 16px; }
.text-section li, li { margin-bottom: 12px; }
blockquote {
  margin: 0 0 14px 0; padding-left: 14px; border-left: 4px solid #54e58c; color: #181D25;
  background: #F8FBF4;
  font-style: italic;
  border-radius: 6px;
}

/* === LAYOUT CONTAINERS & FLEX === */
.container {
  width: 100%;
  max-width: 1224px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(22,46,33,0.86);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-elevate);
}
@media (max-width: 900px) { .content-wrapper { padding: 28px 7px; } }

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  min-width: 260px;
  flex: 1 1 290px;
  background: #1d2b24;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-elevate);
  padding: 28px 18px;
  transition: transform var(--duration), box-shadow var(--duration);
}
.card:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 0 24px 2px #54e58c40, var(--shadow-elevate);
}
.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;
  }
}

/* === HERO === */
.hero {
  min-height: 340px;
  padding: 60px 0 40px 0;
  background: linear-gradient(120deg, #212c28 50%, #267242 100%);
  display: flex;
  align-items: center;
  margin-bottom: 54px;
}
.hero.dark {
  background: linear-gradient(110deg, #0c1015 60%, #181D25 100%);
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}
.hero .content-wrapper {
  background: transparent;
  box-shadow: none;
  text-align: center;
  padding: 0;
}
.hero h1 { color: #54e58c; text-shadow: 0 2px 20px #26724260; }
.hero p { color: #F8FBF4; font-size: 1.2rem; margin-bottom: 30px; }

/* === HEADER & NAVIGATION === */
header {
  width: 100%; background: #141726f3; box-shadow: 0 2px 16px 0 #26724220;
  position: relative; z-index: 40;
}
header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px 16px 20px;
}
.logo img { height: 44px; transition: filter 0.2s; }
.logo img:hover { filter: drop-shadow(0 0 12px #a7ffceAA); }
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 44px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #F8FBF4;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 4px 10px 8px 10px;
  border-radius: 8px;
  transition: background 0.15s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #267242;
  color: #54e58c;
}
.button.primary {
  background: linear-gradient(90deg,#267242 40%,#38f2ff 100%);
  color: #181d25;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  border-radius: 24px;
  padding: 10px 24px;
  margin-left: 24px;
  font-size: 1.1rem;
  box-shadow: 0 0 12px 2px #54e58c60;
  cursor: pointer;
  font-weight: 600;
  outline: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.3s;
  position: relative;
}
.button.primary:hover, .button.primary:focus {
  background: linear-gradient(90deg,#38f2ff 5%,#267242 95%);
  color: #F8FBF4;
  box-shadow: 0 0 30px 2px #54e58cea,0 2px 6px #fff0;
}
.button, .text-section a.button {
  display: inline-block;
  background: #181D25;
  color: #54e58c;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 20px;
  margin-top: 12px;
  border: 2px solid #54e58c;
  box-shadow: 0 0 2px 1px #54e58c20;
  text-align: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s, color 0.14s, box-shadow 0.2s;
}
.button:hover, .button:focus { background: #38f2ff; color: #181d25; box-shadow: 0 0 18px #38f2ffd5,0 1px 3px #54e58c30; border-color: #267242; }

/* MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #54e58c;
  cursor: pointer;
  margin-left: 18px;
  z-index: 120;
  transition: color var(--duration);
}
@media (max-width: 1020px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .button.primary { margin-left: 0; }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #181D25ee;
  display: flex;
  flex-direction: column;
  z-index: 250;
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.68,-0.55,.27,1.55);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu .mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 10px 0;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: #38f2ff;
  cursor: pointer;
  z-index: 300;
  transition: color 0.2s;
}
.mobile-menu .mobile-menu-close:hover { color: #7c5cff; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 24px 32px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  color: #a7ffce;
  padding: 12px 10px;
  border-radius: 10px;
  width: 100%;
  background: none;
  text-align: left;
  box-shadow: none;
  transition: background 0.14s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #54e58c22;
  color: #54e58c;
}
@media (max-width: 1020px) {
  .mobile-menu { display: flex; }
}

/* === FEATURES, CARDS, SECTIONS === */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 16px;
  width: 100%;
}
.feature {
  background: #212c28f8;
  border-radius: var(--radius-md);
  padding: 28px 18px 26px 18px;
  flex: 1 1 270px;
  min-width: 250px;
  max-width: 360px;
  box-shadow: var(--shadow-elevate);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  border-left: 4px solid #267242;
  transition: box-shadow 0.21s, border-color 0.2s;
}
.feature img {
  width: 36px; height: 36px; margin-bottom: 6px; filter: drop-shadow(0 0 6px #38f2ff77);
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 0 24px 2px #54e58c60, var(--shadow-elevate);
  border-left: 4px solid #54e58c;
}

/* === TESTIMONIALS === */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 22px 18px 22px;
  min-width: 260px;
  background: #F8FBF4;
  color: #181D25;
  border-radius: var(--radius-md);
  box-shadow: 0 6px 22px 0 #54e58c10, 0 2px 6px #0F4033aa;
  margin-bottom: 20px;
  position: relative;
  border: 1.5px solid #54e58c;
  transition: border-color 0.19s, box-shadow 0.18s;
}
.testimonial-card:hover {
  border-color: #7c5cff;
  box-shadow: 0 0 24px 2px #7c5cff20, 0 2px 6px #54e58cea;
}
.testimonial-stars {
  display: flex; align-items: center; gap: 7px;
  font-weight: 700;
  color: #267242;
  font-size: 1.13rem;
  letter-spacing: 0.04em;
}
.testimonial-stars img {
  height: 20px; width: 20px;
  margin-right: 3px;
  filter: drop-shadow(0 0 2px #54e58cBB);
}
.testimonial-meta {
  color: #0F4033;
  font-size: 1rem;
  opacity: 0.88;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.testimonial-card blockquote {
  background: none;
  color: #181D25;
  border-left: 4px solid #38f2ff;
  font-size: 1.15rem;
  margin-left: 0;
  padding: 4px 0 4px 18px;
  border-radius: 0 16px 16px 0;
}
@media (max-width: 800px) {
  .testimonials { flex-direction: column; }
}

/* === FORMS (if needed in extensions) === */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #181D25;
  background: #F8FBF4;
  border: 1.5px solid #54e58c80;
  border-radius: 12px;
  padding: 9px 14px;
  margin-bottom: 14px;
  box-shadow: 0 2px 6px #38f2ff12;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  outline: none; border-color: #267242; box-shadow: 0 0 12px #38f2ff33;
}
label { font-family: 'Montserrat', Arial; font-weight: bold; color: #267242; padding-bottom: 5px; display: block; }

/* === MAP, EMBED SECTIONS, MISC === */
.map-embed {
  display: flex; align-items: center; gap: 17px;
  background: #181D25ee;
  padding: 16px 16px;
  border-radius: 12px;
  margin-top: 18px;
  color: #a7ffce;
}
.map-embed img { width: 38px; height: 38px; }

/* === FOOTER === */
footer { background: #181D25f4; padding: 0 0 0 0; position: relative; box-shadow: 0 -4px 50px #26724215; }
footer .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: stretch;
  padding: 44px 20px 35px 20px;
}
.footer-nav {
  display: flex; flex-wrap: wrap; gap: 30px; justify-content: center;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #54e58c;
  font-family: 'Montserrat', Arial;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus { color: #38f2ff; }
.footer-contact {
  display: flex; flex-wrap: wrap; gap: 24px;
  justify-content: center;
  color: #a7ffce;
  font-size: 1rem;
  align-items: center;
}
.footer-contact img { width: 18px; height: 18px; margin-right: 5px; filter: drop-shadow(0 0 3px #54e58c99); vertical-align: middle; }
.footer-brand {
  display: flex; align-items: center; gap: 18px; justify-content: center;
  color: #6fffbd;
  font-family: 'Montserrat', Arial;
  font-size: 1.07rem;
  opacity: 0.94;
}
.footer-brand img { height: 38px; filter: drop-shadow(0 0 10px #38f2ff60); }
@media (max-width: 900px) { footer .container { padding: 30px 6px 23px 6px; } }
@media (max-width: 650px) { .footer-contact, .footer-brand, .footer-nav { flex-direction: column; align-items: center; gap: 12px; } }

/* === RESPONSIVE MEDIA QUERIES === */
@media (max-width: 1100px) {
  .features-grid, .testimonials { flex-direction: column; gap: 20px; }
  .feature, .testimonial-card { max-width: 100%; }
}
@media (max-width: 800px) {
  header .container, footer .container { flex-direction: column; align-items: flex-start; gap: 18px; }
  .main-nav { display: none !important; }
}
@media (max-width: 700px) {
  .hero { min-height: 180px; padding-top: 26px; }
  .hero h1 { font-size: 2rem; }
  .content-wrapper, .section { padding: 18px 6px; }
}
@media (max-width: 540px) {
  .hero { padding-bottom: 12px; }
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.05rem; margin-bottom: 8px; }
  .features-grid, .testimonials { gap: 11px; }
  .feature, .testimonial-card { min-width: 0; padding: 14px 8px; }
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #181d25fa;
  color: #F8FBF4;
  width: 100%;
  z-index: 1002;
  box-shadow: 0 -2px 25px #26724220;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 24px 23px 24px;
  font-size: 1.09rem;
  transition: transform 0.45s cubic-bezier(.68,-0.55,.27,1.55), opacity var(--duration);
}
.cookie-banner.hide { opacity: 0; pointer-events: none; transform: translateY(120%); }
.cookie-banner.show { opacity: 1; transform: translateY(0); }
.cookie-banner .cookie-btns {
  display: flex; gap: 18px; margin-top: 12px;
}
.cookie-banner button {
  border-radius: 20px;
  font-family: 'Montserrat', Arial;
  border: none;
  font-weight: 600;
  padding: 11px 22px;
  font-size: 1.04rem;
  background: #267242;
  color: #F8FBF4;
  box-shadow: 0 0 6px #54e58c50;
  margin-right: 8px;
  cursor: pointer;
  transition: background 0.19s, color 0.17s, box-shadow 0.22s;
}
.cookie-banner button.accept {
  background: linear-gradient(90deg,#267242 45%,#38f2ff 100%);
  color: #0F4033; margin-right: 8px;
}
.cookie-banner button.accept:hover { background: linear-gradient(90deg,#38f2ff 10%,#267242 90%); color: #F8FBF4; }
.cookie-banner button.reject { background: #181D25; color: #7c5cff; border: 1.5px solid #7c5cff; }
.cookie-banner button.reject:hover { background: #7c5cff; color: #181d25; }
.cookie-banner button.settings {
  background: none;
  color: #a7ffce; border: 1.5px solid #54e58c;
}
.cookie-banner button.settings:hover { background: #181d25; color: #38f2ff; border-color: #38f2ff; }

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%; transform: translate(-50%,-50%) scale(0.97);
  background: #252b33fa;
  color: #F8FBF4;
  padding: 42px 29px 32px 29px;
  border-radius: 28px;
  box-shadow: 0 4px 48px #38f2ff22, 0 6px 34px #26724221;
  z-index: 1300;
  min-width: 310px; max-width: 97vw;
  max-height: 96vh; overflow-y: auto;
  display: flex; flex-direction: column;
  align-items: flex-start;
  opacity: 1; pointer-events:auto;
  transition: opacity 0.28s, transform 0.37s cubic-bezier(.68,-0.55,.27,1.55);
}
.cookie-modal.hide { opacity: 0; pointer-events: none; transform: translate(-50%,-40%) scale(0.87); }
.cookie-modal .close-modal {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: #7c5cff;
  cursor: pointer;
  margin-bottom: 12px;
  transition: color 0.16s;
}
.cookie-modal .close-modal:hover { color: #38f2ff; }
.cookie-modal h3 {
  color: #38f2ff; font-size: 1.32rem; margin-bottom: 12px;
}
.cookie-categories {
  margin-bottom: 20px;
  display: flex; flex-direction: column; gap: 14px;
}
.cookie-category {
  background: #181d25f9; padding: 13px 19px; border-radius: 12px;
  color: #F8FBF4; font-size: 1.08rem;
  display: flex; align-items: center; justify-content: space-between;
}
.cookie-category input[type="checkbox"] {
  accent-color: #38f2ff; width: 20px; height: 20px;
  margin-left: 18px;
}
.cookie-category input[type="checkbox"][disabled] { opacity: 0.45; }
.cookie-modal-actions {
  display: flex; gap: 18px; justify-content: flex-end; margin-top: 14px; width: 100%;
}
.cookie-modal button {
  border-radius: 18px;
  font-family: 'Montserrat', Arial;
  font-size: 1rem;
  padding: 9px 22px;
  margin-right: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.19s;
}
.cookie-modal button.save-settings {
  background: #267242; color: #a7ffce; font-weight: 700;
}
.cookie-modal button.save-settings:hover {
  background: #38f2ff; color: #181d25;
}
.cookie-modal button.cancel {
  background: #181d25; color: #38f2ff;
  border: 1px solid #38f2ff;
}
.cookie-modal button.cancel:hover { background: #38f2ff; color: #181d25; }

/* === ACCESSIBILITY: Focus ring === */
a:focus, button:focus, input:focus, .feature:focus-within {
  outline: 2.5px solid #7c5cff;
  outline-offset: 2px;
  z-index: 3;
}

/* === UTILITIES === */
.neon-glow { box-shadow: 0 0 12px 3px #38f2ff88,0 1px 8px #54e58c60; }
.hide { display: none!important; }
.text-center { text-align: center!important; }
.mt-20 { margin-top: 20px; }
.mt-28 { margin-top: 28px; }
.bold { font-weight: bold; }

/* === Print minimal === */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  body { background: #fff !important; color: #181D25 !important; }
  .content-wrapper, .section { background: none !important; box-shadow: none !important; }
  a { color: #267242 !important; }
}
