/* CSS RESET & NORMALIZATION */
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;
}
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #fff;
  color: #18202e;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased; 
  -moz-osx-font-smoothing: grayscale;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #18202e;
  letter-spacing: 0.015em;
}
h1 {font-size: 2.5rem; margin-bottom: 24px;}
h2 {font-size: 2rem; margin-bottom: 20px;}
h3 {font-size: 1.5rem; margin-bottom: 16px;}
h4 {font-size: 1.25rem; margin-bottom: 12px;}
p, ul, ol, dl {font-size: 1rem; margin-bottom: 16px; color: #2c3548;}
strong {font-weight: 700; color: #18202e;}
em, i {font-style: italic;}
a {
  color: #0e417a;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #f4b400;
  text-decoration: underline;
}

/* LAYOUT */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(24,32,46,0.07), 0 1.5px 6px rgba(24,32,46,0.10);
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 4px 24px rgba(24,32,46,0.12), 0 2px 10px rgba(24,32,46,0.12);
  transform: translateY(-2px) scale(1.01);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #efefef;
  color: #18202e;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 1px 12px rgba(24,32,46,0.05);
  min-width: 0;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 20px rgba(24,32,46,0.10);
  transform: translateY(-3px) scale(1.02);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* FLEX UTILITIES */
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.jc-between { justify-content: space-between; }
.jc-center { justify-content: center; }
.jc-start { justify-content: flex-start; }
.gap-20 { gap: 20px; }

/* HEADER & NAVIGATION */
header {
  background: #18202e;
  color: #fff;
  box-shadow: 0 2px 8px rgba(24,32,46,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 16px;
}
.logo img {
  height: 40px;
  display: block;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
nav a {
  color: #fff;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: 1.07rem;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}
nav a:hover, nav a:focus {
  color: #f4b400;
}
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 4px 12px;
  cursor: pointer;
  display: none;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #f4b400;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(24,32,46,0.97);
  z-index: 2001;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.5,0,0.3,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  position: absolute;
  top: 16px; right: 28px;
  cursor: pointer;
  z-index: 5;
  transition: color 0.2s;
}
.mobile-menu-close:hover { color: #f4b400;}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-top: 40px;
  align-items: flex-start;
  padding-left: 36px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(244,180,0,0.13);
  width: 90%;
  display: block;
  transition: color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #f4b400;
  background: rgba(244,180,0,0.06);
}

/* HERO SECTION/ CTA BUTTON */
.cta-btn {
  display: inline-block;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  background: #f4b400;
  color: #18202e;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 16px 40px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 8px;
  box-shadow: 0 2px 6px rgba(24,32,46,0.12);
  transition: background 0.18s, color 0.18s, box-shadow 0.2s, transform 0.13s;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: #18202e;
  color: #f4b400;
  box-shadow: 0 5px 18px rgba(24,32,46,0.19);
  transform: translateY(-2px) scale(1.02);
}
.cta-description {
  font-size: 1.125rem;
  color: #2c3548;
}

/* LISTS/STYLES */
ul, ol {
  margin-bottom: 18px;
  padding-left: 22px;
}
ul li, ol li {
  margin-bottom: 8px;
  line-height: 1.6;
  letter-spacing: 0.005em;
  display: flex;
  align-items: center;
  gap: 10px;
}
ul li img, ol li img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
dt {
  font-weight: bold;
  color: #18202e;
  margin-top: 10px;
}
dd {
  margin-left: 0;
  margin-bottom: 12px;
  color: #2c3548;
}
blockquote {
  border-left: 4px solid #f4b400;
  margin: 24px 0;
  padding: 12px 22px;
  background: #efefef;
  font-style: italic;
  border-radius: 6px;
}

.quick-links {
  margin-top: 12px;
  font-size: 1rem;
  color: #1a2232;
}
.quick-links a {
  color: #0e417a;
  font-weight: 500;
  margin: 0 6px;
  transition: color 0.16s;
}
.quick-links a:hover { color: #f4b400; }  

.style-info ul {
  list-style: none;
  padding-left: 0;
}
.style-info li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.style-info span { vertical-align: middle; }

.filters, .sorting-options {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  margin: 8px 0 0 0;
}
.filters ul, .sorting-options ul {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.filters li, .sorting-options li {
  background: #efefef;
  color: #18202e;
  border-radius: 18px;
  padding: 6px 18px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: 1px solid #e0e4e8;
  margin-bottom: 0;
  transition: border 0.18s, background 0.18s;
}
.filters li:hover, .sorting-options li:hover {
  background: #f4b40033;
  border-color: #f4b400;
}

/* CONTACT DETAILS */
.contact-details, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
  color: #2c3548;
  font-size: 1rem;
}
.contact-details img, .footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 7px;
  vertical-align: baseline;
}
.map-address {
  margin-top: 10px;
  font-size: 1rem;
  color: #18202e;
}

/* FOOTER */
footer {
  background: #18202e;
  color: #fff;
  padding: 35px 0 28px 0;
  border-top: 8px solid #f4b400;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand img {
  height: 48px;
  margin-bottom: 12px;
}
footer nav {
  flex-direction: column;
  gap: 12px;
}
footer nav a {
  color: #efefef;
  font-family: 'Oswald', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  transition: color 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: #f4b400;
}
.footer-contact a {
  color: #f4b400;
  transition: color 0.16s;
}
.footer-contact a:hover { color: #fff; }

/* SERVICE GUARANTEES */
.service-guarantees {
  background: #efefef;
  padding: 20px 18px;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(24,32,46,0.04);
  margin-top: 12px;
  margin-bottom: 18px;
}
.service-guarantees h3 {
  font-size: 1.10rem;
  margin-bottom: 8px;
}
.service-guarantees ul {
  list-style: disc inside;
  margin-bottom: 0;
}
.service-guarantees li {
  margin-bottom: 7px;
}

/* CARDS/FEATURES */
.card, .feature-item {
  border: 1px solid #e0e4e8;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(18px); }
  to {opacity:1; transform:none;}
}

.section, .card, .testimonial-card, .content-wrapper, .cta-btn {
  animation: fadeInUp 0.7s cubic-bezier(0.42,0,0.58,1) both;
}

/* TRANSITIONS */
.section, .card, .testimonial-card, .cta-btn, .mobile-menu-opened {
  transition: box-shadow 0.19s, transform 0.17s, background 0.18s, color 0.16s;
}

/* RESPONSIVE DESIGN (MOBILE-FIRST) */
@media (max-width: 992px) {
  .container {
    max-width: 960px;
  }
  .content-grid {
    flex-direction: column;
    gap: 22px;
  }
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.19rem; }
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
  header .container {
    flex-direction: row;
    gap: 10px;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 480px) {
  h1 {font-size:1.3rem;}
  h2 {font-size:1.05rem;}
  .footer-brand img { height:36px; }
  .mobile-menu-close {
    font-size: 1.5rem;
    right: 16px;
    top: 10px;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #18202e;
  color: #fff;
  box-shadow: 0 -2px 18px rgba(24,32,46, 0.16);
  z-index: 3000;
  padding: 20px 18px 18px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transition: transform 0.36s, opacity 0.15s;
  animation: fadeInUp 1s cubic-bezier(0.42,0,0.58,1) both;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
}
.cookie-banner__text {
  flex: 1 1 0%;
  font-size: 1rem;
  color: #fff;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn {
  border: none;
  outline: none;
  border-radius: 18px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 10px 20px;
  font-weight: 600;
  margin-right: 2px;
  transition: background 0.18s, color 0.15s, transform 0.13s;
  cursor: pointer;
}
.cookie-btn.accept {
  background: #f4b400;
  color: #18202e;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #18202e;
  color: #f4b400;
}
.cookie-btn.reject {
  background: #fff;
  color: #18202e;
  border: 1.5px solid #e0e4e8;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #efefef;
  color: #18202e;
}
.cookie-btn.settings {
  background: none;
  color: #f4b400;
  border: 1.5px solid #f4b400;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #f4b400;
  color: #18202e;
}
@media (max-width:768px) {
  .cookie-banner {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    padding: 18px 8px 12px 12px;
  }
  .cookie-banner__text {
    font-size:0.97rem;
  }
}

/* COOKIE CONSENT MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3500;
  inset: 0;
  background: rgba(24, 32, 46, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  color: #18202e;
  border-radius: 14px;
  width: 98%;
  max-width: 425px;
  box-shadow: 0 4px 32px rgba(24,32,46,0.13);
  padding: 32px 20px 25px 24px;
  position: relative;
  animation: fadeInUp 0.5s cubic-bezier(0.42,0,0.58,1) both;
}
.cookie-modal h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.cookie-modal .cookie-category {
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.cookie-switch {
  position: relative;
  width: 44px;
  height: 24px;
  display: inline-block;
}
.cookie-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.switch-slider {
  position: absolute; cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #e0e4e8;
  transition: 0.2s;
  border-radius: 16px;
}
.cookie-switch input:checked + .switch-slider {
  background: #f4b400;
}
.switch-slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background: #fff;
  transition: .2s;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(24,32,46,0.09);
}
.cookie-switch input:checked + .switch-slider:before {
  transform: translateX(20px);
}
.cookie-category label {
  font-size: 1rem;
}
.cookie-category span{
  font-size: 0.96rem;
  color: #556;
  margin-left: 5px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 22px;
}
.cookie-modal-close {
  position: absolute;
  right: 17px; top: 13px;
  background: none;
  border: none;
  color: #18202e;
  font-size: 1.3rem;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-close:hover{
  color: #f4b400;}

/* MISC UTILITIES */
.mt-0 {margin-top: 0!important;}
.mt-32 {margin-top: 32px!important;}
.mb-0 {margin-bottom: 0!important;}
.mb-24 {margin-bottom: 24px!important;}

/* OVERRIDE AUTOFILL */
input:-webkit-autofill, textarea:-webkit-autofill, select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
  box-shadow: 0 0 0px 1000px #fff inset;
  -webkit-text-fill-color: #18202e;
}

/* Hide outline on mouse but show on keyboard */
:focus:not(:focus-visible) {outline: none;}
:focus-visible {outline:2px solid #f4b400; outline-offset:2px;}

/* Print Styles */
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal-overlay, footer { display: none !important; }
  main { padding: 0; }
}

