/* 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, 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 {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F4F4F6;
  color: #2d2d2d;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

*, *:before, *:after {
  box-sizing: inherit;
}
a {
  text-decoration: none;
  color: #16384C;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E3A200;
}
ul, ol {
  padding-left: 1.6em;
}
strong {
  font-weight: 600;
}

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #16384C;
  line-height: 1.15;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 700;
}
p {
  font-size: 1.125rem;
  color: #2d2d2d;
  margin-bottom: 16px;
}

label {
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 6px;
  display: block;
  font-size: 1rem;
}
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid #dedede;
  border-radius: 10px;
  background: #fff;
  width: 100%;
  margin-bottom: 18px;
  outline: none;
  transition: box-shadow 0.2s, border 0.2s;
}
input:focus, textarea:focus, select:focus {
  border-color: #E3A200;
  box-shadow: 0 0 0 2px #e3a20033;
}

/* CONTAINER & LAYOUTS */
.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 18px 0 #ecd9b133;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 #e3a2001a;
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 24px 0 #e3a2003d;
}

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

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  border-radius: 18px;
  background: #fffbe4;
  box-shadow: 0 2px 16px 0 #e3a20022;
  margin-bottom: 20px;
  color: #16384C;
  font-size: 1.125rem;
  min-width: 0;
  position: relative;
  transition: box-shadow 0.2s;
}
.testimonial-card p {
  color: #16384C;
  flex: 1;
}
.testimonial-card strong {
  color: #E3A200;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 4px 32px 0 #e3a20033;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-cards > div {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 28px 20px;
  box-shadow: 0 2px 10px 0 #e3a20011;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  min-width: 220px;
  transition: box-shadow 0.22s;
}
.service-cards > div:hover, .service-cards > div:focus-within {
  box-shadow: 0 6px 20px 0 #e3a20024;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-accordion > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 #e3a20012;
  padding: 20px;
  transition: box-shadow 0.2s;
}
.faq-accordion > div:hover, .faq-accordion > div:focus-within {
  box-shadow: 0 4px 24px 0 #e3a20026;
}

.address-map {
  background: #f8efe2;
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 20px;
  color: #16384C;
}
.guarantee-badge {
  display: inline-flex;
  align-items: center;
  background: #E3A200;
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
  box-shadow: 0 2px 10px 0 #e3a20022;
}

.tracking-form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 24px;
}
.tracking-form label {
  min-width: 115px;
  margin-bottom: 0;
}
.tracking-form input {
  flex: 1 1 160px;
  margin-bottom: 0;
  max-width: 240px;
}
.tracking-form button {
  min-width: 140px;
  margin-bottom: 0;
}

.tracking-help {
  margin-top: 10px;
  font-size: 0.98rem;
  color: #665700;
}

/* HERO SECTION (index) */
.hero {
  background: linear-gradient(120deg, #fffbe4 0%, #fff 100%);
  padding: 60px 0 36px;
  min-height: 320px;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 8px 44px 0 #e3a2000d;
  margin-bottom: 40px;
}
.hero .container {
  display: flex;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 630px;
  gap: 16px;
}
.hero h1 {
  color: #16384C;
  font-size: 2.8rem;
  margin-bottom: 12px;
}
.hero p {
  color: #2d2d2d;
  font-size: 1.12rem;
  margin-bottom: 18px;
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: none;
  border-radius: 32px;
  cursor: pointer;
  padding: 13px 38px;
  min-width: 154px;
  min-height: 48px;
  margin-top: 8px;
  margin-bottom: 12px;
  transition: background 0.14s, color 0.14s, transform 0.13s, box-shadow 0.17s;
  box-shadow: 0 2px 16px 0 #e3a20012;
}
.btn-primary {
  background: #E3A200;
  color: #fff;
}
.btn-primary:hover,
.btn-primary:focus {
  background: #16384C;
  color: #fffbe4;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 5px 28px 0 #e3a20044;
}
.btn-secondary {
  background: #16384C;
  color: #fff;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background: #E3A200;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 5px 28px 0 #e3a20032;
}

/* NAVIGATION */
header {
  background: #fffbe4;
  box-shadow: 0 2px 22px #e3a20017;
  border-bottom: 1px solid #eee4ba;
  padding: 0;
  z-index: 20;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 14px;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 16px;
}
nav {
  display: flex;
  align-items: center;
  gap: 14px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  padding: 7px 14px;
  border-radius: 22px;
  color: #16384C;
  transition: background 0.13s, color 0.13s;
}
nav a:hover,
nav a:focus {
  background: #fffbe4;
  color: #E3A200;
}
nav .btn-primary {
  margin: 0 0 0 10px;
  font-size: 1rem;
  padding: 9px 25px;
  min-width: 0;
  min-height: 0;
}

.mobile-menu-toggle {
  background: #fff;
  border: none;
  color: #E3A200;
  font-size: 2.1rem;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  box-shadow: 0 1px 8px #e3a20013;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.14s, color 0.14s, box-shadow 0.12s;
  margin-left: 12px;
  z-index: 1020;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #E3A200;
  background: #fffbe4;
}

@media (max-width: 1020px) {
  header .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 860px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  background: #fffbe4;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 96vw;
  height: 100vh;
  box-shadow: 4px 0 32px 0 #e3a20045;
  transform: translateX(-105%);
  transition: transform 0.33s cubic-bezier(.8, .3, .3, 1);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 22px 18px 28px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #fff;
  color: #16384C;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  align-self: flex-end;
  box-shadow: 0 1px 8px #e3a20013;
  transition: background 0.14s, color 0.14s;
  margin-bottom: 12px;
}
.mobile-menu-close:focus {
  outline: 2px solid #E3A200;
  background: #fffbe4;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #16384C;
  padding: 12px 8px 12px 0;
  border-radius: 10px;
  transition: background 0.15s, color 0.15s;
  min-width: 0;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #E3A200;
  background: #fff2b7;
}

@media (max-width: 860px) {
  .mobile-menu {
    display: flex;
  }
}

@media (max-width: 540px) {
  .mobile-menu {
    width: 100vw;
    max-width: 100vw;
    padding: 22px 12px 18px;
    border-radius: 0;
  }
}

main {
  padding-top: 90px;
}

footer {
  background: #fffbe4;
  padding: 30px 0 26px;
  border-top: 1px solid #eee4ba;
  font-size: 1rem;
  margin-top: 60px;
  box-shadow: 0 -2px 16px #e3a2000a;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
footer nav a {
  font-size: 1rem;
  color: #16384C;
  padding: 0;
  border-radius: 8px;
}
.footer-contact {
  color: #16384C;
  font-size: 1rem;
}
.footer-contact p {
  margin-bottom: 6px;
}

/* TABLES */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px #e3a20010;
  margin-bottom: 30px;
  overflow: hidden;
}
thead {
  background: #E3A200;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
}
th, td {
  padding: 16px 14px;
  text-align: left;
  font-size: 1.06rem;
}
th {
  font-weight: 700;
  font-size: 1.1rem;
}
tbody tr {
  border-bottom: 1px solid #ecd98b66;
}
tbody tr:last-child {
  border-bottom: none;
}
tbody td {
  background: #fff;
  color: #16384C;
}
tbody tr:nth-child(even) td {
  background: #fffbe4;
}

/* LIST STYLES */
ul {
  list-style: disc inside;
  margin-bottom: 18px;
  margin-top: 0;
  color: #16384C;
  font-size: 1.05rem;
}
ol {
  list-style: decimal inside;
  margin-bottom: 18px;
  margin-top: 0;
  color: #16384C;
  font-size: 1.08rem;
}
li {
  margin-bottom: 9px;
}

.text-section {
  font-size: 1.1rem;
  color: #2d2d2d;
  margin-bottom: 12px;
}
.text-section ul,
.text-section ol {
  margin-bottom: 12px;
}
.text-section a {
  color: #E3A200;
  text-decoration: underline;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffbe4;
  box-shadow: 0 -2px 28px #e3a20022;
  padding: 22px 18px 16px;
  z-index: 2500;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 20px 20px 0 0;
  font-size: 1rem;
  transition: transform 0.3s cubic-bezier(.7,.14,.3,1), opacity 0.3s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-message {
  flex: 1 1 250px;
  color: #16384C;
}
.cookie-buttons {
  display: flex;
  gap: 10px;
}
.cookie-buttons button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 22px;
  padding: 9px 23px;
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
  font-weight: 700;
}
.cookie-accept {
  background: #E3A200;
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #16384C;
}
.cookie-reject {
  background: #fff;
  color: #E3A200;
  border: 1.5px solid #E3A200;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #f8efe2;
  color: #16384C;
}
.cookie-settings {
  background: #16384C;
  color: #fff;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #E3A200;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 2600;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #222b3d77;
  opacity: 1;
  transition: opacity 0.18s cubic-bezier(.6,.14,.3,1);
  pointer-events: auto;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%) scale(1);
  background: #fffbe4;
  box-shadow: 0 8px 44px 0 #e3a20044;
  border-radius: 20px;
  padding: 36px 28px 26px;
  min-width: 320px;
  max-width: 92vw;
  max-height: 98vh;
  overflow-x: auto;
  z-index: 2650;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: cookie-popup-in 0.32s cubic-bezier(.71, .15, .36, .98);
}
@keyframes cookie-popup-in {
  from { transform: translate(-50%,-60%) scale(.75); opacity: 0; }
  to { transform: translate(-50%,-50%) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-category label {
  margin-bottom: 0;
  font-weight: 500;
  color: #16384C;
}
.cookie-switch {
  appearance: none;
  width: 44px; height: 22px;
  background: #e3a20077;
  border-radius: 22px;
  position: relative;
  outline: none;
  margin-left: 4px;
  vertical-align: middle;
  transition: background 0.15s;
}
.cookie-switch:checked {
  background: #E3A200;
}
.cookie-switch:disabled {
  background: #cdcdcd !important;
  cursor: not-allowed;
}
.cookie-switch::before {
  content: '';
  display: block;
  position: absolute;
  top: 2px;
  left: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px #e3a20012;
  transition: left 0.14s;
}
.cookie-switch:checked::before {
  left: 23px;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #E3A200;
  font-size: 2rem;
  position: absolute;
  right: 17px;
  top: 12px;
  cursor: pointer;
}

/* UTILITIES */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-2 { margin-bottom: 16px; }
.pt-2 { padding-top: 16px; }
.pb-2 { padding-bottom: 16px; }

/* RESPONSIVE: MOBILE-FIRST */
@media (max-width: 1010px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
    max-width: 100vw;
  }
}
@media (max-width: 900px) {
  .content-grid {
    gap: 14px;
  }
  .hero h1 { font-size: 2rem; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.5rem; }
  .section, .card, .testimonial-card { padding: 24px 10px; }
}
@media (max-width: 768px) {
  .content-grid, .card-container, .service-cards {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  header .container {
    height: 62px;
  }
  main { padding-top: 70px; }
  .hero {
    padding: 36px 0 22px;
    border-radius: 0 0 18px 18px;
  }
  .testimonial-card { padding: 17px 10px; }
  .faq-accordion > div { padding: 14px; }
}
@media (max-width: 540px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.08rem; }
  .section { padding: 18px 5px; margin-bottom: 32px; }
  .card { padding: 16px 7px; }
  .testimonial-card { padding: 12px 6px; font-size: 1rem; }
  footer .container {
    gap: 12px;
    flex-direction: column;
  }
  .cookie-banner {
    border-radius: 14px 14px 0 0;
    padding: 10px 5px 8px;
    font-size: .98rem;
  }
  .cookie-buttons button { font-size: 0.95rem; padding: 9px 12px; }
}

/* MICRO-INTERACTIONS & TRANSITIONS */
.card, .card-container > *, .testimonial-card, .service-cards > div, .faq-accordion > div {
  transition: box-shadow 0.15s, transform 0.11s;
}
.card:hover, .testimonial-card:hover, .service-cards > div:hover, .faq-accordion > div:hover {
  transform: translateY(-3px) scale(1.02);
}

/* ACCESSIBLE FOCUS STYLES */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2px solid #E3A200;
  outline-offset: 2px;
}

/* Miscellaneous */
::-webkit-input-placeholder { color: #9f9f9f; }
:-ms-input-placeholder { color: #9f9f9f; }
::placeholder { color: #9f9f9f; }

/* Hide default scrollbars on overlays but allow scroll */
.mobile-menu, .cookie-modal {
  scrollbar-width: thin;
  scrollbar-color: #E3A200 #fffbe4;
}
.mobile-menu::-webkit-scrollbar, .cookie-modal::-webkit-scrollbar {
  width: 6px; background: #fbf6e1;
}
.mobile-menu::-webkit-scrollbar-thumb, .cookie-modal::-webkit-scrollbar-thumb {
  background: #E3A200; border-radius: 9px;
}

/* Hide mobile-menu by default on desktop */
@media (min-width: 861px) {
  .mobile-menu {
    display: none !important;
  }
}
