/* ---------------------------------------------
   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 {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #FCF6E3;
  color: #22272D;
  min-height: 100vh;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  box-sizing: border-box;
}
button {
  cursor: pointer;
}

/* ---------------------------------------------
   VINTAGE RETRO BRAND COLORS & FONTS
----------------------------------------------*/
:root {
  --primary: #11476C;
  --secondary: #FDC300;
  --accent: #FFFFFF;
  --retro-blue: #36506c;
  --retro-orange: #D97D54;
  --retro-olive: #677651;
  --retro-red: #C75C5C;
  --retro-bg: #FCF6E3;
  --retro-brown: #BBA273;
  --text-dark: #22272D;
  --text-light: #fff;
  --shadow: 0 2px 16px rgba(92,64,55,0.10), 0 2px 4px rgba(148,120,49,0.07);
  --radius-main: 16px;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: var(--retro-bg);
  color: var(--text-dark);
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  color: var(--primary);
  margin-bottom: 15px;
  letter-spacing: -1px;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  text-shadow: 1px 1px 0 var(--secondary);
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.25rem;
  color: var(--retro-olive);
}


/* ---------------------------------------------
   GENERAL SPACING & CONTAINERS
----------------------------------------------*/
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  line-height: 1.8;
  font-size: 1.05rem;
}
.policy-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1.03rem;
}

/* ---------------------------------------------
   HEADER & NAVIGATION
----------------------------------------------*/
header {
  width: 100%;
  background: var(--primary);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 0;
}
header img {
  max-height: 54px;
  margin-right: 24px;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  font-family: 'Montserrat', Arial Black, Arial, sans-serif;
  font-size: 1.03rem;
}
.main-nav a {
  padding: 8px 0;
  color: var(--accent);
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  border-bottom: 2px solid var(--secondary);
}

.cta-btn.primary {
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Montserrat', Arial Black, Arial, sans-serif;
  border-radius: var(--radius-main);
  padding: 12px 28px;
  font-size: 1.13rem;
  margin-left: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,.07);
  font-weight: 700;
  text-shadow: 1px 1px 0 #fff8;
  border: 2px solid var(--primary);
  transition: background 0.2s, box-shadow 0.2s, color 0.18s;
  box-sizing: border-box;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: var(--retro-olive);
  color: var(--secondary);
  box-shadow: 0 4px 14px rgba(17,71,108,0.13);
  border-color: var(--secondary);
}

.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  font-size: 2rem;
  border-radius: 10px;
  padding: 4px 16px;
  margin-left: 20px;
  z-index: 51;
  border: 2px solid var(--primary);
  box-shadow: 0 2px 10px rgba(230,180,47,0.09);
  transition: background 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--primary);
  color: var(--secondary);
}


/* ---------------------------------------------
   MOBILE MENU
----------------------------------------------*/
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: 100vw;
  max-width: 350px;
  background: #feecc2;
  border-left: 5px solid var(--primary);
  box-shadow: 0 2px 28px rgba(17,71,108,.18);
  z-index: 120;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(.25,1.5,.5,1), box-shadow 0.18s;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  font-size: 2.2rem;
  color: var(--primary);
  margin: 16px 16px 0 0;
  border: none;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 28px;
  align-items: flex-start;
  padding: 0 30px;
}
.mobile-nav a {
  font-size: 1.24rem;
  color: var(--retro-blue);
  padding: 12px 0;
  border-bottom: 2px solid transparent;
  width: 100%;
  font-family: 'Montserrat', Arial Black, Arial, sans-serif;
  border-radius: 8px;
  transition: background .18s, color .18s, border .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-left: 8px;
}

/* Hide main-nav and show burger on mobile */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .cta-btn.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (min-width: 1025px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ---------------------------------------------
   HERO SECTION
----------------------------------------------*/
.hero {
  background: repeating-linear-gradient(101deg, #ecd9ba 0px, #ecd9ba 40px, #f7efdf 42px, #f7efdf 60px);
  padding: 60px 0 48px 0;
  margin-bottom: 54px;
  border-bottom: 5px solid var(--secondary);
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  text-align: left;
  margin: 0 auto;
  max-width: 650px;
  gap: 18px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.2rem;
  text-shadow: 2px 2px 0 #fff8, 0 0 3px #fdc30033;
  margin-bottom: 12px;
}
.hero p {
  font-size: 1.09rem;
  color: var(--retro-brown);
  margin-bottom: 12px;
  line-height: 1.7;
}

/* ---------------------------------------------
   FLEX LAYOUT CONTAINERS
----------------------------------------------*/
/* MANDATORY CLASSES */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fffdfa;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow);
  padding: 26px 22px;
}
.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;
  background: #FFF8E4;
  border-radius: 14px;
  box-shadow: 0 2px 12px #cbb0632c,0 1px 2px #efe2a822;
  margin-bottom: 20px;
  border-left: 7px solid var(--retro-orange);
  flex: 1 1 320px;
  min-width: 240px;
  transition: box-shadow 0.23s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 22px #8d7841a0,0 1px 2px #ffc660a0;
  border-left-color: var(--secondary);
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.testimonial-meta {
  font-size: 0.98rem;
  color: var(--retro-blue);
  font-weight: bold;
  font-family: 'Montserrat', Arial Black, Arial, sans-serif;
  opacity: 0.88;
}
.review-snippet-list, .review-listings {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
  margin-bottom: 14px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fffdfa;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow);
  padding: 30px 24px 22px 24px;
  min-width: 218px;
  flex: 1 1 220px;
  border: 2px solid #e8e0cb;
  transition: box-shadow 0.18s, border 0.18s;
  margin-bottom: 20px;
}
.feature-item img {
  width: 38px; height: 38px;
  margin-bottom: 3px;
}
.feature-item:hover {
  box-shadow: 0 6px 18px #f3c36f3a;
  border: 2px solid var(--secondary);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  align-items: stretch;
}


/* ---------------------------------------------
   SERVICE OVERVIEW, PROCESS, FILTERS
----------------------------------------------*/
.service-overview {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.service-overview li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.07rem;
}
.service-overview img {
  width: 25px; height: 25px;
}
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 1.03rem;
  margin-bottom: 10px;
  margin-top: 12px;
  counter-reset: step;
}
.process-steps li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 3px;
}
.process-steps li:before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: 0; top: 0;
  background: var(--retro-orange);
  color: #fff;
  width: 22px; height: 22px;
  border-radius: 50%;
  font-family: 'Montserrat', Arial Black, Arial, sans-serif;
  font-size: 1rem;
  text-align: center;
  line-height: 22px;
  font-weight: bold;
}

.filter-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin: 9px 0 19px 0;
  font-size: 0.99rem;
  color: var(--retro-olive);
  font-family: 'Montserrat', Arial Black, Arial, sans-serif;
}
.filter-controls a {
  color: var(--retro-red);
  text-decoration: underline dotted;
  font-weight: 600;
  transition: color 0.17s;
}
.filter-controls a:hover {
  color: var(--secondary);
}

.search-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  background: #ffeabf;
  border-radius: 11px;
  padding: 18px;
  margin-bottom: 8px;
  margin-top: 8px;
  border: 2px dashed var(--retro-brown);
  font-size: 1.05rem;
}
.search-filter-bar input,
.search-filter-bar select {
  background: #FDF8E5;
  border: 1px solid #dec383;
  border-radius: 7px;
  padding: 8px 10px;
  font-size: 1rem;
  width: 180px;
  color: var(--primary);
}
.search-filter-bar span {
  color: #b9852a;
  font-size: 0.95rem;
}

/* ---------------------------------------------
   TRUST SIGNALS
----------------------------------------------*/
.trust-signals {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  margin-top: 10px;
}
.trust-signals img {
  width: 38px; height: 38px;
  filter: sepia(.47) brightness(1.13);
}
.trust-signals span {
  font-size: 1rem;
  font-family: 'Montserrat', Arial Black, Arial, sans-serif;
  color: var(--retro-olive);
  opacity: .83;
}

/* ---------------------------------------------
   CTA SECTION
----------------------------------------------*/
.cta {
  background: var(--primary);
  color: var(--secondary);
  padding: 54px 0 48px 0;
  border-radius: 0 0 var(--radius-main) var(--radius-main);
  box-shadow: 0 2px 22px #117; /* bigger shadow bottom */
  margin-bottom: 0;
}
.cta h2 {
  color: var(--secondary);
  font-size: 2rem;
  text-shadow: 1px 1px 0 #09304a58;
  margin-bottom: 10px;
}
.cta p {
  color: #fff8b0;
  margin-bottom: 13px;
  font-size: 1.05rem;
}
.cta .cta-btn.primary {
  margin-left: 0;
  margin-top: 8px;
}

/* ---------------------------------------------
   LINKS & BUTTONS
----------------------------------------------*/
a {
  transition: color 0.17s, text-decoration 0.17s, background 0.13s;
}
.link-more {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
  font-size: 1.06rem;
  margin-top: 10px;
}
.link-more:hover { color: var(--retro-olive); }

/* ---------------------------------------------
   LISTS
----------------------------------------------*/
ul, ol {
  margin-left: 25px;
  margin-bottom: 10px;
}
ul li, ol li {
  margin-bottom: 7px;
  line-height: 1.6;
  font-size: 1rem;
  position: relative;
}
ul li::before {
  content: '';
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--retro-red);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
ol li::before {
  display: none;
}

/* ---------------------------------------------
   FOOTER
----------------------------------------------*/
footer {
  background: #e4dbce;
  color: var(--primary);
  padding: 34px 0 18px 0;
  border-top: 5px solid var(--secondary);
  font-size: 1rem;
  margin-top: 80px;
}
footer .container {
  flex-direction: column;
  gap: 25px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.footer-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial Black, Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.15s;
  text-decoration: underline dotted;
}
.footer-nav a:hover { color: var(--retro-orange); }
.footer-info {
  margin-top: 6px;
  color: var(--retro-blue);
  font-size: 0.98rem;
  opacity: 0.93;
}

/* ---------------------------------------------
   COOKIE CONSENT BANNER & MODAL
----------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fcf6e3;
  color: var(--primary);
  border-top: 3px solid var(--secondary);
  box-shadow: 0 0 18px #bba27366, 0 0.5px 0.5px #d3c39644;
  z-index: 200;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 16px 5vw;
  font-size: 1.08rem;
  gap: 18px;
  transition: transform 0.3s cubic-bezier(.63,.07,.93,.84), opacity 0.3s;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cookie-banner button {
  padding: 8px 18px;
  border-radius: 22px;
  font-family: 'Montserrat', Arial Black, Arial, sans-serif;
  font-weight: 700;
  margin-left: 5px;
  font-size: 1rem;
  border: 2px solid var(--primary);
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 1px 5px #ffd85054;
  transition: background 0.2s, color 0.15s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--primary);
  color: var(--secondary);
}
.cookie-banner .btn-settings {
  background: var(--retro-olive);
  color: #fff;
  border: 2px solid var(--retro-olive);
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
  background: #ae9f6d;
  color: #fff6d3;
}

/* Cookie modal */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(34, 39, 45, 0.55);
  z-index: 205;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.22s;
}
.cookie-modal {
  background: #fffbea;
  color: var(--primary);
  padding: 36px 28px 26px 28px;
  border-radius: var(--radius-main);
  width: 95%;
  max-width: 400px;
  box-shadow: 0 6px 30px #c1a35754;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 210;
}
.cookie-modal h2 {
  margin-bottom: 12px;
  font-size: 1.28rem;
  color: var(--retro-orange);
}
.cookie-modal .cookie-category {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
  margin-bottom: 7px;
}
.cookie-modal label {
  font-size: 1.06rem;
  color: var(--primary);
  font-weight: 500;
  flex-grow: 1;
  min-width: 120px;
}
.cookie-modal input[type="checkbox"] {
  width: 22px; height: 22px;
  margin-right: 8px;
  accent-color: var(--retro-orange);
}
.cookie-modal .category-desc {
  color: var(--retro-olive);
  margin-left: 28px;
  font-size: 0.95rem;
  line-height: 1.3;
  opacity: .85;
}
.cookie-modal .cookie-actions {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.cookie-modal .btn-close {
  background: none;
  color: var(--retro-olive);
  font-size: 1.2rem;
  margin-left: auto;
  border: none;
  margin-bottom: 7px;
  padding: 0 7px;
  opacity: .77;
}
.cookie-modal .btn-close:hover, .cookie-modal .btn-close:focus {
  color: var(--retro-red);
  opacity: 1;
}
.cookie-modal.hide, .cookie-modal-backdrop.hide {
  opacity: 0;
  pointer-events: none;
}

/* ---------------------------------------------
   RESPONSIVE DESIGN – MOBILE FIRST
----------------------------------------------*/
@media (max-width: 990px) {
  .feature-grid, .review-snippet-list, .review-listings {
    flex-direction: column;
  }
  .feature-item, .testimonial-card {
    flex: 1 1 100%;
    min-width: 0;
  }
  .review-snippet-list, .review-listings {
    gap: 9px;
  }
  .section, .hero, .cta {
    padding-left: 0; padding-right: 0;
  }
}
@media (max-width: 768px) {
  header .container {
    height: 58px;
    padding: 0 10px;
  }
  .hero, .section, .cta {
    padding: 32px 0 32px 0;
  }
  .hero h1 {
    font-size: 1.45rem;
  }
  h2 {font-size: 1.1rem;}
  .feature-item, .testimonial-card, .card {
    padding: 17px 12px;
    min-width: unset;
  }
  .container {
    padding: 0 7px;
  }
  .feature-grid, .review-snippet-list, .review-listings {
    gap: 12px;
  }
  .cta h2 {
    font-size: 1.13rem;
  }
  .content-wrapper {
    gap: 12px;
  }
  .footer-nav { gap: 8px; }
}
@media (max-width: 768px) {
  .text-image-section, .feature-grid, .content-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .content-wrapper {
    gap: 12px;
  }
  .trust-signals {
    flex-direction: row;
    gap: 12px;
  }
}

/* ---------------------------------------------
   MICRO-INTERACTIONS & EFFECTS
----------------------------------------------*/
.card, .feature-item, .testimonial-card {
  transition: box-shadow 0.18s, border 0.13s, background 0.21s;
}
.card:hover {
  box-shadow: 0 9px 32px #c5632c0d, 0 2px 5px #fbc30066;
  border-color: var(--retro-orange);
}
a, button, .cta-btn.primary {
  transition: color .18s, border .13s, background .16s, box-shadow .18s;
}
a:focus, .cta-btn.primary:focus, button:focus {
  outline: 2px solid var(--retro-olive);
  outline-offset: 2px;
  z-index: 3;
}

/* ---------------------------------------------
   MISC
----------------------------------------------*/
::-webkit-scrollbar {
  width: 10px; background: #f6ecd7;
}
::-webkit-scrollbar-thumb {
  background: #d1baa2;
  border-radius: 8px;
}

/* Placeholder for js-to-add cookie banner into DOM */

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