/* ===== CSS RESET & NORMALIZE ===== */
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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #181A1B;
  color: #F6F6F4;
  min-height: 100vh;
  font-family: 'Nunito', Arial, Helvetica, sans-serif;
}
a {
  color: #7fffd4;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  outline: none;
  color: #00eefa;
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}

/* ===== BRAND FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Nunito:wght@400;600;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #F6F6F4;
  font-weight: 800;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
p, li, span {
  font-family: 'Nunito', Arial, Helvetica, sans-serif;
  color: #d2d7df;
  font-size: 1rem;
  line-height: 1.7;
}
strong {
  color: #F6F6F4;
  font-weight: 700;
}

/* ===== GENERAL CONTAINERS & LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
main {
  min-height: 70vh;
  margin-bottom: 60px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 24px;
  background: #1b1e22;
  box-shadow: 0 2px 16px 0 #23283155;
}

/* ===== FUTURISTIC EFFECTS ===== */
body {
  background: linear-gradient(120deg, #232b34 0%, #181A1B 80%);
}

.section {
  background: linear-gradient(100deg,#232b34 70%, #1a1c22 100%);
}

.cta, .cta.primary, .feature-grid li, .testimonial-card {
  box-shadow: 0 1.5px 8px 0 #00eefa14;
}

.card-container, .feature-grid, .category-list, .testimonials, .content-grid, .team-bios, .timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card-container {
  margin-bottom: 20px;
  position: relative;
}
.card {
  position: relative;
  margin-bottom: 20px;
  border-radius: 16px;
  background: #22252A;
  box-shadow: 0 2px 12px #10101050;
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 4px 24px #00eefa33;
}

.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;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 24px 28px;
  background: #fafdff;
  border-radius: 20px;
  box-shadow: 0 2px 24px #45c8ed28, 0 1px 8px #282b2e10;
  min-width: 240px;
  max-width: 340px;
  color: #26272c;
}
.testimonial-card p {
  color: #25292d;
  font-size: 1.06rem;
  margin-bottom: 10px;
  font-weight: 600;
}
.testimonial-card div {
  font-family: 'Nunito', Arial, Helvetica, sans-serif;
  color: #49566b;
  font-size: 0.98rem;
  font-weight: 500;
}

.feature-item, .feature-grid li, .category-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.feature-grid li {
  flex: 1 1 220px;
  background: #23272b;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 1.5px 12px #00abc244;
  transition: box-shadow 0.24s, transform 0.24s;
  min-width: 220px;
  max-width: 290px;
}
.feature-grid li:hover {
  box-shadow: 0 3px 24px #04f7fb40, 0 0 .5rem .5rem #00eefa00;
  transform: translateY(-2px) scale(1.03);
}
.feature-grid img {
  width: 42px;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 6px #09dfff66);
}
.feature-grid h3 {
  font-size: 1.14rem;
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 16px 0 24px 0;
}
.category-list li {
  background: #212b2c;
  color: #fafdff;
  border-radius: 999px;
  padding: 8px 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 3px 12px #008a9330;
  margin-bottom: 10px;
  transition: background 0.18s, color 0.2s, box-shadow 0.18s;
  cursor: pointer;
  user-select: none;
}
.category-list li:hover {
  background: #00eefa;
  color: #252d28;
  box-shadow: 0 6px 24px #00eefa44;
}

.sort-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.sort-options span {
  color: #A1876D;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
}
.sort-options button {
  background: #232b34;
  color: #F6F6F4;
  border-radius: 16px;
  padding: 10px 18px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.03em;
  border: 2px solid #232b34;
  box-shadow: 0 2px 8px #00eefa20;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, border 0.22s;
}
.sort-options button:hover, .sort-options button:focus {
  background: #00eefa;
  color: #272a32;
  border: 2px solid #00eefa;
}

ul.faq-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 16px;
}
ul.faq-list li strong {
  display: block;
  margin-bottom: 6px;
  color: #fffdff;
  font-size: 1.11rem;
}
ul.faq-list li p {
  color: #badefa;
  font-size: 1rem;
}

.team-bios {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}
.timeline li {
  padding: 8px 20px;
  background: #1b2636;
  border-radius: 12px;
  font-size: .98rem;
  color: #eee;
  font-family: 'Nunito';
}

.blockquote, blockquote {
  background: #212b2c;
  color: #d7fded;
  padding: 20px 28px;
  border-left: 8px solid #00eefa;
  border-radius: 25px 0 0 25px; 
  font-size: 1.12rem;
  box-shadow: 0 1.5px 6px #00eefa26;
}

/* ===== BUTTONS, CTAS, LINKS ===== */
.cta, .cta.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 13px 34px;
  border-radius: 999px;
  background: #232b34;
  color: #00eefa;
  border: 2px solid #00eefa;
  box-shadow: 0 1px 8px #00eefa20;
  letter-spacing: 0.05em;
  cursor: pointer;
  margin-top: 18px;
  transition: background 0.23s, color 0.23s, box-shadow 0.23s, border 0.23s, transform 0.22s;
  text-shadow: 0 1px 8px #00eefa22;
}
.cta.primary {
  background: #00eefa;
  color: #232b34;
  border: 2px solid #23dddd;
}
.cta:hover, .cta:focus,
.cta.primary:hover, .cta.primary:focus {
  background: #212b2c;
  color: #00eefa;
  border: 2px solid #00eefa;
  box-shadow: 0 4px 18px #00eefa30;
  transform: translateY(-2px) scale(1.03);
}

button, .cta {
  outline: none;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  width: 100%;
  background: #131619;
  box-shadow: 0 2px 16px #00eefa14;
  position: sticky;
  top: 0;
  z-index: 97;
}
.main-nav {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 18px 0;
  justify-content: center;
}
.main-nav .logo {
  margin-right: 32px;
  display: flex;
  align-items: center;
  height: 40px;
}
.main-nav a {
  color: #e0eaff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 8px 18px;
  border-radius: 8px;
  transition: background 0.17s, color 0.17s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #00eefa;
  color: #191f22;
}

.mobile-menu-toggle {
  display: none;
  background: #191f22;
  color: #00eefa;
  font-size: 2.1rem;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.22s, color 0.22s;
  z-index: 102;
  border: 2px solid #00eefa;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #00eefa;
  color: #191f22;
}

/* --- Mobile Menu Overlay --- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 94vw;
  max-width: 370px;
  height: 100vh;
  background: #181a1b;
  box-shadow: -7px 0 28px #00eefa26;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  transition: transform 0.38s cubic-bezier(0.3,0.98,0.5,1), opacity 0.25s;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.0rem;
  background: #191f22;
  color: #00eefa;
  border-radius: 6px;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border: 2px solid #00eefa;
  transition: background 0.22s, color 0.22s;
  cursor: pointer;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #00eefa;
  color: #181a1b;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  color: #F6F6F4;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 14px 0;
  border-radius: 10px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #00eefa;
  color: #181a1b;
}

/* Overlay for body when menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* ===== FOOTER ===== */
footer {
  background: #14181d;
  padding: 40px 0 26px 0;
  box-shadow: 0 -2px 18px #2b3e4388;
  margin-top: 70px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #00eefa;
  font-weight: 600;
  transition: color 0.21s;
  padding: 6px 12px;
  border-radius: 7px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #A1876D;
  background: #1a1a1a;
}
footer .contact-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: center;
  color: #A1876D;
  font-size: 1rem;
  margin: 12px 0;
}
footer .contact-details img {
  width: 21px;
  filter: drop-shadow(0 0 8px #00eefa33);
}
footer .copyright {
  text-align: center;
  color: #76849e;
  font-size: 0.96rem;
  margin-top: 16px;
}

/* ===== ICON ROWS ===== */
.style-icons,
.comfort-icons,
.accessory-icons {
  display: flex;
  flex-direction: row;
  gap: 32px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 18px;
}
.style-icons img,
.comfort-icons img,
.accessory-icons img {
  width: 42px;
  filter: drop-shadow(0 0 10px #00eefa44);
}

/* ======= COOKIE CONSENT BANNER ======== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  max-width: 100vw;
  background: #212b2c;
  color: #F6F6F4;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  box-shadow: 0 -2px 32px #00eefa25;
  z-index: 4000;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transition: transform .38s cubic-bezier(0.3,0.99,0.45,1), opacity .25s;
  transform: translateY(70%);
}
.cookie-consent.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-consent .cookie-actions {
  display: flex;
  gap: 16px;
}
.cookie-consent button {
  background: #232b34;
  color: #00eefa;
  border: 2px solid #00eefa;
  border-radius: 24px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 12px 21px;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s, color .18s, border .18s, transform .16s;
}
.cookie-consent button:hover, .cookie-consent button:focus {
  background: #00eefa;
  color: #15181e;
  border-color: #00eefa;
  transform: scale(1.05);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0;left: 0;right: 0;bottom: 0;
  background: #232b34cc;
  z-index: 4200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  position: fixed;
  bottom: 50%;
  left: 50%;
  max-width: 95vw;
  width: 400px;
  min-height: 320px;
  padding: 36px 32px 22px 32px;
  background: #181a1b;
  border-radius: 22px;
  box-shadow: 0 6px 40px #00eefa2a;
  transform: translate(-50%,60%);
  z-index: 4300;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.33s cubic-bezier(0.32,0.88,0.65,1), opacity .22s;
}
.cookie-modal.active {
  transform: translate(-50%,-50%);
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal h3 {
  color: #00eefa;
  font-size: 1.18rem;
  margin-bottom: 18px;
}
.cookie-modal ul {
  margin-top: 0;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fafdff;
  font-size: .99rem;
  font-family: 'Nunito';
}
.cookie-modal input[type=checkbox] {
  accent-color: #00eefa;
  width: 20px;
  height: 20px;
  border-radius: 6px;
}
.cookie-toggle[disabled] {
  opacity: 0.65;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 19px;
  justify-content: flex-end;
}
.cookie-modal button {
  background: #232b34;
  color: #00eefa;
  border: 2px solid #00eefa;
  border-radius: 18px;
  font-size: 1rem;
  padding: 9px 17px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #00eefa;
  color: #191f22;
}

/* ===== CONTACT DETAILS ===== */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin: 20px 0;
  font-size: 1.05rem;
  color: #A1876D;
}
.contact-details img {
  width: 20px;
  filter: drop-shadow(0 0 8px #00eefa33);
}

/* ====== ACCESSIBILITY: CONTRAST & SPACING ====== */
h2, h3, h4, h5, h6 {
  color: #F6F6F4;
}
p, li, span {
  color: #d2d7df;
}
::-webkit-input-placeholder { color: #70788c; }
::-moz-placeholder { color: #70788c; }
:-ms-input-placeholder { color: #70788c; }
::placeholder { color: #70788c; }

/* ======= SPACING RULES ======= */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.testimonial-card { display: flex; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/**** Responsive Media Queries ****/
@media (max-width: 1010px) {
  .container { max-width: 95vw; }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 16px;
  }
  .feature-grid {
    gap: 14px;
  }
}
@media (max-width: 830px) {
  .main-nav {
    gap: 7px;
  }
  .feature-grid li {
    padding: 18px 11px;
    min-width: 170px;
    max-width: 96vw;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.7rem;margin-bottom:19px; }
  h2 { font-size: 1.24rem;margin-bottom:9px; }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .card-container, .feature-grid, .testimonials, .category-list, .content-grid {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .section {
    padding: 26px 7vw;
  }
  .container { padding: 0 6px; }
  .feature-grid li {
    min-width: unset;
    width: 100%;
    max-width: 97vw;
  }
  .style-icons, .comfort-icons, .accessory-icons {
    gap: 16px;
  }
  .text-image-section { flex-direction: column; gap: 20px; }
  .testimonial-card { min-width: 90vw; max-width: 97vw;}
}
@media (max-width: 620px) {
  .cookie-modal {
    width: 97vw;
    padding: 22px 7vw 10px 7vw;
  }
}
@media (max-width: 490px) {
  .section { padding: 16px 2vw; }
  .footer-nav { gap: 4px; }
  .container { padding: 0 2px; }
}

/* ========== Animation/Micro Interactions ========== */
.cta, .cta.primary, .category-list li, .feature-grid li, .sort-options button, .mobile-menu-toggle, .mobile-menu-close, .cookie-consent button {
  transition: background .21s, color .21s, box-shadow .21s, border .21s, transform .21s;
}

.card, .feature-grid li, .testimonial-card {
  transition: box-shadow 0.23s, transform 0.21s;
}

/**** Utility: Hide visually ****/
.hidden { display: none !important; }

/**** Utility: White-space and Breaks ****/
.content-wrapper ul { margin-bottom: 12px; }

/**** Utility: Support-Links & Address ****/
.support-links {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  margin-top: 19px;
}
.support-links a {
  color: #00eefa;
  font-size: 1rem;
  font-weight: 600;
}
.support-links a:hover, .support-links a:focus {
  color: #A1876D;
}

.address-map p {
  color: #F6F6F4;
  font-size: 1.1rem;
  font-weight: 700;
}

/**** Thank You page and General ****/
.thank-you {
  text-align: center;
  font-size: 1.14rem;
  margin: 0 auto 24px auto;
  color: #00eefa;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
