/* 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,main,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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  background: #F5F5F5;
  color: #223546;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height:100vh;
  overflow-x: hidden;
}
*, *::before, *::after {
  box-sizing: inherit;
}
ah {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul,ol {
  list-style: none;
}

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Roboto:wght@400;500;700&display=swap');

h1,h2,h3,h4,h5,h6 {
  font-family: 'Oswald', Impact, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  font-weight: 700;
}
h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  font-weight: 600;
}
p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
}
strong {
  font-weight: 700;
}

/* LAYOUT CONTAINERS & SPACING */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

main {
  width: 100%;
  min-height: 60vh;
}

section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: none;
}

.text-section {
  gap: 16px;
}

.card-container, .offer-list, .feature-grid, .spare-parts-grid, .brands-supported ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.card {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 4px 18px rgba(34,53,70,0.14), 0 1.5px 4px rgba(255,191,0,0.08);
  padding: 32px 24px;
  transition: transform 0.23s cubic-bezier(.68,-0.55,.27,1.55), box-shadow 0.14s;
}
.card:hover {
  transform: translateY(-4px) rotate(-1.5deg) scale(1.03);
  box-shadow: 0 8px 28px rgba(34,53,70,0.16),0 2.5px 8px rgba(255,191,0,0.10);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.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-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 18px;
}
.testimonial-card {
  background: #fff;
  color: #223546;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(255,191,0,0.09),0 1px 2px rgba(34,53,70,0.07);
  min-width: 260px;
  max-width: 360px;
  margin-bottom: 20px;
  transition: box-shadow 0.24s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(34,53,70,0.18);
  transform: scale(1.035) rotate(1deg);
}
.testimonial-meta {
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  font-size: 1.01rem;
  color: #FFBF00;
  letter-spacing: 1px;
}
.testimonial-card blockquote {
  font-family: 'Oswald', Verdana, sans-serif;
  font-size: 1.13rem;
  color: #223546;
  margin-bottom: 8px;
  quotes: "\201C" "\201D";
  position: relative;
}
.testimonial-card blockquote::before {
  content: '“';
  color: #FFBF00;
  font-size: 2rem;
  position: absolute;
  left: -20px;
  top: -12px;
  font-family: 'Oswald', Impact, sans-serif;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  padding: 26px 22px;
  box-shadow: 0 1px 12px rgba(34,53,70,0.07);
  min-width: 200px;
  flex: 1 1 210px;
  margin-bottom: 20px;
  border-left: 4px solid #FFBF00;
  transition: box-shadow 0.2s, border-color 0.18s, transform 0.13s;
  position: relative;
}
.feature-item img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(1px 3px 0 #ffbf0022);
}
.feature-item:hover {
  box-shadow: 0 4px 32px #ffbf0044;
  transform: translateY(-3px) scale(1.035) rotate(-2deg);
  border-left: 4px solid #223546;
}

/***** CTA BUTTON STYLES *****/
.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFBF00;
  color: #223546;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.19rem;
  font-weight: 700;
  padding: 14px 38px;
  border-radius: 30px;
  border: none;
  box-shadow: 0 3px 16px rgba(255,191,0,0.13);
  transition: background 0.22s, color 0.17s, transform 0.16s, box-shadow 0.2s;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 8px;
  cursor: pointer;
  outline: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: #223546;
  color: #FFBF00;
  transform: translateY(-3px) scale(1.05) rotate(-2deg);
  box-shadow: 0 8px 32px rgba(34,53,70,0.18);
}
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 12px;
}
.quick-links a {
  background: #223546;
  color: #FFBF00;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 9px 24px;
  border-radius: 18px;
  transition: background 0.19s, color 0.18s, transform 0.14s;
}
.quick-links a:hover {
  background: #FFBF00;
  color: #223546;
  transform: scale(1.08);
}

/**** HERO SECTION ****/
.hero {
  background: linear-gradient(90deg, #FFBF00 12%, #F5F5F5 100%);
  padding-top: 70px;
  padding-bottom: 70px;
  box-shadow: 0 4px 22px #ffbf002b inset;
  overflow: hidden;
  border-radius: 0 0 40px 40px;
  margin-bottom: 48px;
  min-height: 320px;
}
.hero .content-wrapper h1 {
  color: #223546;
  font-size: 2.6rem;
  text-shadow: 1px 4px 0 #ffbf0066;
}
.hero .cta-primary {
  margin-top: 20px;
  font-size: 1.23rem;
}
.hero p {
  font-size: 1.15rem;
  color: #223546;
  margin-bottom: 9px;
}

/**** HEADER ****/
header {
  width: 100%;
  background: #223546;
  color: #FFBF00;
  box-shadow: 0 3px 17px rgba(34,53,70,0.09);
  z-index: 40;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 20px;
}
.logo img {
  height: 46px;
  width: auto;
  transition: transform 0.18s;
}
.logo:hover img {
  transform: scale(1.11) rotate(-4deg);
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.main-nav a {
  color: #FFBF00;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.04rem;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 13px;
  border-radius: 12px;
  transition: background 0.15s, color 0.15s, transform 0.13s;
}
.main-nav a:hover, .main-nav a.active {
  background: #FFBF00;
  color: #223546;
  transform: scale(1.085) rotate(-4deg);
}

/* Hide nav and show burger on mobile */
.mobile-menu-toggle {
  display: none;
  background: #FFBF00;
  color: #223546;
  font-size: 2.2rem;
  border: none;
  border-radius: 12px;
  padding: 0 13px;
  height: 44px;
  width: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s, transform 0.14s;
  z-index: 120;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #223546;
  color: #FFBF00;
  transform: scale(1.13);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,53,70,0.96);
  color: #FFBF00;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 38px 28px;
  transition: transform 0.32s cubic-bezier(.56,-0.14,.16,1.09);
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  font-size: 2rem;
  color: #FFBF00;
  background: transparent;
  border: none;
  align-self: flex-end;
  margin-bottom: 28px;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  margin-top: 24px;
}
.mobile-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.35rem;
  color: #FFBF00;
  background: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 9px 7px;
  border-radius: 4px;
  transition: background .17s, color .17s, padding .11s;
  text-align: left;
  width: 95%;
}
.mobile-nav a:active, .mobile-nav a:hover {
  background: #FFBF00;
  color: #223546;
  padding-left: 20px;
}

/**** FOOTER ****/
footer {
  width: 100%;
  background: #223546;
  color: #FFBF00;
  padding: 32px 0 24px 0;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.brand-footer {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.13rem;
  margin-bottom: 10px;
}
.brand-footer img {
  height: 40px;
  width: auto;
}
.footer-menu {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.footer-menu a {
  color: #FFBF00;
  font-size: 1rem;
  padding: 2px 8px;
  border-radius: 8px;
  text-transform: uppercase;
  transition: background 0.14s, color 0.12s;
}
.footer-menu a:hover {
  background: #FFBF00;
  color: #223546;
}
.company-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.98rem;
  color: #FFBF00;
}
.company-info img {
  height: 16px;
  width: 16px;
  margin-right: 8px;
  vertical-align: middle;
}
.social-links {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  background: #FFBF00;
  border-radius: 8px;
  padding: 6px;
  transition: background 0.17s, transform 0.13s;
}
.social-links a:hover {
  background: #fff;
  transform: scale(1.18) rotate(-7deg);
}
.social-links img {
  height: 20px;
  width: 20px;
}

/**** CARDS, LISTS, & MISC ELEMENTS ****/
.service-list, .certification-list, .offer-list, .brands-supported ul, .question-list, .contact-methods {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
  margin-bottom: 8px;
  padding-left: 0;
}
.certification-list li, .offer-item, .faq-short, .highlighted-deals, .explainer-text, .directions-text, .contact-support-cta {
  background: #fff;
  padding: 18px 20px;
  border-radius: 14px;
  box-shadow: 0 1px 10px #ffbf0022;
  margin-bottom: 14px;
}
.certification-list img {
  width: 32px;
  vertical-align: middle;
  margin-right: 12px;
}
.spare-parts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin: 16px 0 24px 0;
}
.spare-parts-grid > div {
  background: #fff;
  border-radius: 16px;
  padding: 22px 13px;
  min-width: 140px;
  flex: 1 1 140px;
  text-align: center;
  transition: box-shadow 0.17s, transform 0.17s;
  box-shadow: 0 0.8px 10px #ffbf0020;
  margin-bottom: 20px;
}
.spare-parts-grid div:hover {
  box-shadow: 0 7px 18px #ffbf0026;
  transform: scale(1.1) rotate(-3deg);
  background: #FFBF00;
}
.spare-parts-grid img {
  width: 45px;
  margin-bottom: 5px;
}
.spare-parts-grid h3 {
  color: #223546;
}
/**** FAQ & QUESTION LIST ****/
.question-list li {
  background: #FFBF00;
  color: #223546;
  border-radius: 10px;
  padding: 13px 18px;
  box-shadow: 0 2px 6px #22354633;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 10px;
  transition: transform 0.14s;
}
.question-list li:hover {
  transform: scale(1.04) rotate(-1.5deg);
  background: #223546;
  color: #FFBF00;
}
.topic-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 6px;
}
.topic-categories li {
  background: #FFBF00;
  color: #223546;
  padding: 3px 14px;
  border-radius: 8px;
  font-size: 0.98em;
  text-transform: uppercase;
  font-family: 'Oswald', Arial, sans-serif;
}

/**** CONTACT PAGE SPECIFICS ****/
.address-details, .opening-hours, .phone-email {
  font-size: 1.09rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.address-details img, .phone-email img {
  height: 19px;
  vertical-align: middle;
  margin-right: 8px;
}
.directions-text, .contact-support-cta {
  font-size: 1.03rem;
}

/**** CTA SECTION ****/
.cta {
  background: #FFBF00;
  border-radius: 30px;
  margin-bottom: 60px;
  box-shadow: 0 6px 40px #ffbf0032 inset;
}
.cta h2, .cta p {
  color: #223546;
  text-align: center;
}
.cta .cta-primary {
  margin: 0 auto;
}

/**** CONFIRMATION (GRAZIE) ****/
.confirmation h1 {
  color: #FFBF00;
  text-shadow: 0 2px 14px #22354655;
  margin-bottom: 8px;
}
.confirmation .cta-primary {
  margin-top: 18px;
  display: inline-block;
}

/**** ANIMATIONS & MICRO-INTERACTIONS ****/
@keyframes playful-bounce {
  0% { transform: scale(1) translateY(0);}
  34% { transform: scale(1.06,0.96) translateY(-5px);}
  67% { transform: scale(0.97,1.05) translateY(2px);}
  100% { transform: scale(1) translateY(0);}
}
.feature-item:hover, .card:hover, .testimonial-card:hover {
  animation: playful-bounce 0.53s;
}
.cta-primary:hover {
  animation: playful-bounce 0.36s;
}

/**** RESPONSIVE LAYOUTS ****/
@media (max-width: 1120px) {
  .container {
    padding-left: 6vw;
    padding-right: 6vw;
  }
}
@media (max-width: 900px) {
  .feature-grid, .card-container, .spare-parts-grid {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  section, .section {
    padding: 24px 6vw;
    margin-bottom: 36px;
  }
  .main-nav {
    display: none!important;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  .container {
    max-width: 98vw;
    padding: 0 2vw;
  }
  .feature-grid, .card-container, .spare-parts-grid, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  .quick-links, .footer-menu {
    flex-direction: column;
    gap: 14px;
  }
  .address-details, .phone-email, .company-info, .brand-footer, .social-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .confirmation h1 {
    font-size: 2.2rem;
  }
  .hero {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.19rem;}
  h3 { font-size: 1rem;}
  section, .section { padding: 13px 2vw; }
  .container { padding-left: 3vw; padding-right: 3vw; }
  .cta-primary { font-size: 1rem; padding: 10px 20px; }
  .footer-menu a { font-size: 0.95rem; }
}

/**** COOKIE CONSENT BANNER & MODAL ****/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #FFBF00;
  color: #223546;
  font-family: 'Roboto', Arial, sans-serif;
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 20px 30px;
  box-shadow: 0 -5px 24px #22354633;
  animation: playful-bounce 0.7s;
}
.cookie-banner p {
  font-size: 1.025rem;
  margin-right: 28px;
}
.cookie-buttons {
  display: flex;
  gap: 16px;
}
.cookie-btn, .accept-btn, .reject-btn, .settings-btn {
  font-family: 'Oswald', Arial, sans-serif;
  padding: 9px 22px;
  border: none;
  border-radius: 20px;
  background: #223546;
  color: #FFBF00;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 2px;
  cursor: pointer;
  transition: background 0.15s, color 0.13s;
}
.cookie-btn:hover, .accept-btn:hover, .reject-btn:hover, .settings-btn:hover, .cookie-btn:focus {
  background: #FFBF00;
  color: #223546;
  outline: 2px solid #223546;
}
.reject-btn {
  background: #fff;
  color: #223546;
  border: 2px solid #223546;
}
.reject-btn:hover {
  background: #223546;
  color: #FFBF00;
}
.settings-btn {
  background: #FFBF00;
  color: #223546;
  border: 2px solid #223546;
}
.settings-btn:hover {
  background: #223546;
  color: #FFBF00;
}

.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; bottom: 0; right: 0;
  background: rgba(34,53,70,0.68);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.26s;
}
.cookie-modal {
  background: #fff;
  color: #223546;
  border-radius: 30px;
  padding: 36px 30px;
  width: min(92vw,420px);
  box-shadow: 0 6px 44px #ffbf0053;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: playful-bounce 0.45s;
}
.cookie-modal h3 {
  color: #FFBF00;
  font-family: 'Oswald', Arial, sans-serif;
  margin-bottom: 4px;
}
.cookie-modal label {
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 13px;
}
.cookie-modal input[type="checkbox"][disabled] {
  accent-color: #bdbdbd;
  cursor: not-allowed;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #FFBF00;
  width: 20px;
  height: 20px;
  margin: 0 6px 0 0;
}
.cookie-modal-close {
  position: absolute;
  right: 18px; top: 18px;
  font-size: 1.8rem;
  background: transparent;
  border: none;
  color: #FFBF00;
  cursor: pointer;
  transition: color 0.18s, transform 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #223546;
  transform: scale(1.18);
}
@keyframes fadeIn {
  to { opacity: 1; }
} 

/* Hide banner and modal initially */
.cookie-banner, .cookie-modal-backdrop {
  display: none;
}


/* Utility */
.bg-accent {
  background: #FFBF00!important;
  color: #223546!important;
}
.bg-primary {
  background: #223546!important;
  color: #FFBF00!important;
}
.bg-secondary {
  background: #F5F5F5!important;
  color: #223546!important;
}
.shift-up1 { transform: translateY(-5px) rotate(-2deg); }
.shift-up2 { transform: translateY(-10px) rotate(3deg); }

/* Hide outline on mouse, restore for keyboard */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2px solid #FFBF00;
  outline-offset: 2px;
}

::-webkit-input-placeholder { color: #9b9b9b; }
::-moz-placeholder { color: #9b9b9b; }
:-ms-input-placeholder { color: #9b9b9b; }
::placeholder { color: #9b9b9b; }

/**** END OF STYLE.CSS ****/