/* ------------- CSS RESET & NORMALIZE ------------- */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F9F6F2;
  color: #234E70;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}
img, svg {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #234E70;
  text-decoration: none;
  transition: color 0.18s ease;
}

a:hover,
a:focus {
  color: #D4881C;
  text-decoration: underline;
}
ul, ol {
  margin-left: 20px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 8px;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}
:focus-visible {
  outline: 2px dashed #D4881C;
  outline-offset: 2px;
}

/* ------------- BRAND TYPOGRAPHY -------------- */
h1, h2, h3, h4, .logo, .cta-btn {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
}
h1 {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -1px;
  color: #234E70;
  text-shadow: 1px 2px 0px #f5e2b7;
}
h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #D4881C;
  text-shadow: 1px 2px 0px #f5e2b7;
}
h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #234E70;
}

.subheadline {
  font-size: 1.18rem;
  color: #8b6933;
  margin-bottom: 18px;
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  letter-spacing: 0.5px;
}

.text-section h3,
.text-section strong {
  color: #234E70;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
}

.text-section ul {
  list-style: disc inside;
}
.text-section ul li {
  margin-bottom: 8px;
}

/* ------------- VINTAGE/RETRO COLOR PALETTE & FONTS -------------- */
:root {
  --primary: #234E70;
  --accent: #D4881C;
  --secondary: #FCF8E8;
  --offwhite: #F9F6F2;
  --shadow: rgba(35, 78, 112, 0.09);
  --retro-orange: #F5A623;
  --retro-blue: #234E70;
  --retro-cream: #FBEEE2;
  --vintage-brown: #8b6933;
  --retro-border: #f5e2b7;
}

/* Import fonts (retro-inspired: Montserrat/Roboto as base, fallback to more geometric fonts)*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500&display=swap');

/* ------------- LAYOUT STRUCTURE -------------- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

section {
  background: var(--offwhite);
  border-radius: 18px;
  box-shadow: 0 6px 32px var(--shadow), 0 1.5px 0 2px #f5e2b7;
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}

/* ------------- HEADER -------------- */
header {
  background: var(--retro-cream);
  border-bottom: 4px solid var(--retro-border);
  box-shadow: 0 4px 24px var(--shadow);
  font-family: 'Montserrat', Arial, sans-serif;
  position: sticky;
  top: 0;
  z-index: 80;
}

header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}
.logo img {
  height: 48px;
}
nav {
  display: flex;
  gap: 20px;
  align-items: center;
  font-size: 1.1rem;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--retro-blue);
  letter-spacing: 0.4px;
  padding: 4px 0;
  border-bottom: 3px solid transparent;
  transition: border-color .16s, color .16s;
}
nav a:hover,
nav a:focus {
  color: var(--accent);
  border-bottom: 3px solid var(--accent);
}
.cta-btn {
  padding: 10px 32px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 32px;
  font-size: 1.11rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1.4px;
  box-shadow: 0 3px 12px var(--shadow), 0 1.5px 0 2px #e1ac47;
  cursor: pointer;
  text-shadow: 1px 1px 0 #e1ac47;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  margin-left: 10px;
  margin-top: 0;
}
.cta-btn:hover, .cta-btn:focus {
  background: #bc6919;
  box-shadow: 0 6px 18px rgba(212, 136, 28, 0.22);
  transform: translateY(-2px) scale(1.03) rotate(-1deg);
}

/* ------------- MOBILE MENU BURGER -------------- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2.1rem;
  background: var(--retro-blue);
  color: #fff;
  border: none;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  z-index: 120;
  box-shadow: 0 4px 16px rgba(35, 78, 112, 0.14);
  cursor: pointer;
  transition: background 0.12s;
}
.mobile-menu-toggle:active {
  background: #1a3550;
}
/* ------------- MOBILE MENU OVERLAY --------- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--retro-cream);
  box-shadow: 3px 0 28px rgba(35,78,112,0.13);
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 85vw;
  max-width: 350px;
  padding: 32px 22px 24px 22px;
  z-index: 200;
  transform: translateX(-110%);
  transition: transform 0.34s cubic-bezier(.6,.1,.24,1.1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #234E70;
  font-size: 1.8rem;
  border: none;
  position: absolute;
  top: 12px; right: 18px;
  z-index: 202;
  padding: 4px 8px;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 48px;
}
.mobile-nav a {
  font-size: 1.14rem;
  padding: 12px 0;
  color: #234E70;
  letter-spacing: 0.6px;
  font-weight: 700;
  border-bottom: 2px solid transparent;
  border-radius: 5px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #f5e2b7;
  color: #bc6919;
}

@media (max-width: 992px) {
  header .container {
    gap: 10px;
  }
  nav {
    gap: 10px;
    font-size: 1rem;
  }
  .cta-btn {
    padding: 10px 18px;
    font-size: 1rem;
    margin-left: 0;
  }
}
@media (max-width: 860px) {
  header .container nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 460px) {
  .mobile-menu {
    max-width: 100vw;
    width: 100vw;
    border-radius: 0;
  }
}

/* ------------- MAIN GLOBAL SPACING & CARDS -------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--offwhite);
  border-radius: 18px;
  box-shadow: 0 6px 32px var(--shadow), 0 1.5px 0 2px var(--retro-border);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.card, .service-card, .feature {
  background: #fffbe6;
  border-radius: 16px;
  box-shadow: 0 2px 9px var(--shadow), 0 1px 0 2px var(--retro-border);
  padding: 26px 22px 20px 22px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 230px;
  min-width: 220px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.card:hover, .service-card:hover, .feature:hover {
  box-shadow: 0 7px 22px 0px rgba(212,136,28,0.13);
  border-color: #bc6919;
  transform: scale(1.027) translateY(-2px) rotate(-1deg);
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
  .feature {
    min-width: 100%;
  }
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 2.5px dotted #e1ac47;
  min-width: 200px;
  max-width: 300px;
  margin-bottom: 20px;
  font-size: 1.05rem;
  background: linear-gradient(135deg, #fffbe6 85%, #f5e2b7 100%);
}
.feature img {
  width: 40px;
  height: 40px;
  filter: sepia(0.3) brightness(0.93);
  margin-bottom: 5px;
}
.feature h3 {
  font-size: 1.12rem;
  color: #bc6919;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* SERVICE CARDS */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.service-card {
  min-width: 220px;
  max-width: 260px;
  border: 2.5px solid #f5e2b7;
  background: #fffbe6;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  justify-content: flex-start;
}
.service-price {
  display: inline-block;
  margin-top: 14px;
  background: #234E70;
  color: #fffbe6;
  font-size: 1.08rem;
  border-radius: 16px;
  padding: 6px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 1px;
  text-shadow: 1px 1px 0 #bc6919;
}
.service-card h3 {
  color: var(--accent);
  font-size: 1.1rem;
  font-weight: 700;
}

@media (max-width: 900px) {
  .service-cards, .feature-grid {
    gap: 18px;
  }
  .service-card { min-width: 160px; max-width: 100%; }
}
@media (max-width: 700px) {
  .service-cards, .feature-grid {
    flex-direction: column;
  }
  .service-card, .feature {
    min-width: 100%;
    max-width: 100%;
  }
}

/* Testimonial cards -------------------------- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px 16px 32px 16px;
  box-shadow: 0 2px 14px 0px rgba(35,78,112,0.11);
  border: 2.5px solid #f5e2b7;
  margin-bottom: 20px;
  margin-top: 0;
}
.testimonial-card p,
.testimonial-card strong {
  color: #2A2C24;
}
.testimonial-card span {
  font-size: 1.21em;
  color: #D4881C;
  letter-spacing: 2px;
  font-family: 'Montserrat', Arial, sans-serif;
}
@media(max-width: 700px) {
  .testimonial-card {
    margin-bottom: 18px;
    padding: 16px 11px;
  }
}

/* CONTACT DETAILS ---------------------------- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1em;
  font-family: 'Roboto', sans-serif;
}
.contact-details img {
  width: 23px;
  height: 23px;
  filter: sepia(0.26) saturate(1.2);
}

/* FAQ & ACCORDION ---------------------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 16px;
}
.faq-item {
  border-radius: 12px;
  border: 2px dashed #f5e2b7;
  background: #fffbe6;
  box-shadow: 0 2px 8px rgba(35, 78, 112, 0.05);
  padding: 15px 18px;
  transition: box-shadow 0.15s;
}
.faq-item h3 {
  cursor: pointer;
  font-size: 1.08rem;
  margin-bottom: 6px;
}
.faq-item div {
  font-size: 1rem;
  padding-top: 6px;
}
.faq-item.active {
  box-shadow: 0 4px 16px rgba(212, 136, 28, 0.12);
  background: #FFF8E1;
}

/* FOOTER -------------------------------------- */
footer {
  background: #234E70;
  color: #fff;
  padding-top: 32px;
  margin-top: 60px;
  font-family: 'Roboto', Arial, sans-serif;
}
footer .container {
  gap: 0;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 2.5px dotted #f5e2b7;
  padding-bottom: 18px;
  margin-bottom: 15px;
}
.logo-footer img {
  height: 55px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px 26px;
}
.footer-nav a {
  color: #FFF8E1;
  font-size: 1.02em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #D4881C;
}
.social-media {
  display: flex;
  gap: 14px;
  align-items: center;
}
.social-media a img {
  width: 28px; height: 28px;
  filter: sepia(0.41) hue-rotate(-30deg) brightness(1.1);
  transition: filter 0.2s;
}
.social-media a:hover img, .social-media a:focus img {
  filter: sepia(0.7) hue-rotate(-10deg) brightness(1.2) drop-shadow(0 1px 6px #f5e2b7);
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: 0.96rem;
  color: #f5e2b7;
  padding: 18px 0 10px 0;
  border-top: 0.5px solid rgba(245,226,183,0.15);
  justify-content: space-between;
}
footer address {
  font-style: normal;
  letter-spacing: 0.3px;
}
@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-bottom {
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
  .logo-footer img { height: 42px; }
}

/* TEXT SECTIONS, LISTS ------------------------- */
.text-section {
  margin-bottom: 10px;
  line-height: 1.8;
  color: #234E70;
}
.text-section p, .text-section ul, .text-section h3, .text-section strong {
  margin-bottom: 9px;
}
.text-section ul {
  padding-left: 17px;
}
.text-section li {
  margin-bottom: 6px;
}

/* QUICK FACTS/INFO BLOCKS -------------------------------------- */
.quick-facts {
  background: #F5A623;
  color: #fffbe6;
  border-radius: 16px;
  padding: 20px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 1px 8px rgba(212,136,28,0.08);
  font-size: 1.1em;
  margin: 18px 0 0 0;
}
.quick-facts strong { color: #234E70; }

/* TRUST ELEMENTS (About) --------------------------- */
.trust-elements {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  margin-top: 13px;
}
.trust-elements img {
  width: 36px;
  height: 36px;
  filter: sepia(0.33) hue-rotate(-10deg) brightness(1.05);
}

/* ------------- COOKIE CONSENT BANNER --------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 250;
  background: #FCF8E8;
  border-top: 3px solid #F5A623;
  box-shadow: 0 -2px 18px rgba(35, 78, 112, 0.09);
  padding: 24px 10px 14px 10px;
  font-size: 1.05em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.cookie-banner p {
  color: #234E70;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  text-align: center;
  margin-bottom: 8px;
}
.cookie-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.cookie-btn {
  background: #234E70;
  color: #fffbe6;
  border: none;
  border-radius: 18px;
  padding: 9px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-right: 2px;
  cursor: pointer;
  box-shadow: 0 1px 7px #e1ac47;
  transition: background 0.18s, box-shadow 0.18s;
}
.cookie-btn.accept {
  background: #F5A623;
  color: #fff;
}
.cookie-btn.reject {
  background: #D4881C;
  color: #fffbe6;
}
.cookie-btn.settings {
  background: #234E70;
  color: #fffbe6;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #bc6919;
  color: #fffbe6;
}
@media (max-width: 500px) {
  .cookie-banner {
    padding: 20px 4px 9px 4px;
  }
  .cookie-btn-group {
    gap: 11px;
  }
}

/* COOKIE SETTINGS MODAL ---------------- */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 300;
  background: rgba(35, 78, 112, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fffbe6;
  border-radius: 24px;
  max-width: 370px;
  padding: 38px 30px 22px 30px;
  box-shadow: 0 8px 36px rgba(35,78,112,0.20);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: fadeInModal 0.44s cubic-bezier(.24,1.4,.3,1);
}
@keyframes fadeInModal { from { transform: translateY(90px) scale(0.97); opacity: 0; } to { opacity: 1; transform: none; } }
.cookie-modal-content h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #234E70;
  margin-bottom: 6px;
  font-size: 1.32rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #234E70;
}
.cookie-toggle {
  width: 32px;
  height: 18px;
  border-radius: 16px;
  background: #FCF8E8;
  border: 1.5px solid #D4881C;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-toggle[aria-checked="true"] {
  background: #F5A623;
}
.cookie-toggle:before {
  content: '';
  display: block;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 2px; top: 1.5px;
  transition: left 0.16s, background 0.16s;
}
.cookie-toggle[aria-checked="true"]:before {
  left: 15px;
  background: #fffbe6;
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 20px;
  background: none;
  color: #234E70;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
}
.cookie-modal-actions {
  margin-top: 12px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: flex-end;
}
@media (max-width: 400px) {
  .cookie-modal-content {
    padding: 14vw 4vw 8vw 4vw;
    max-width: 99vw;
  }
}

/* ------------- RESPONSIVE ADJUSTMENTS / MEDIA ------------- */
@media (max-width: 700px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.22rem; }
  section {
    margin-bottom: 36px;
    padding: 23px 6px;
    border-radius: 12px;
  }
  .content-wrapper,
  .contact-details {
    gap: 10px;
  }
}
@media (max-width: 530px) {
  .container { padding: 0 7px; }
  nav, .footer-nav { gap: 7px; font-size: 0.94rem; }
  .cta-btn { padding: 8px 10px; font-size: .98rem; }
}

/* Decorative elements: Vintage look patterns/borders --------- */
section:after {
  content: '';
  display: block;
  position: absolute;
  left: 20px; bottom: 18px;
  width: 68px;
  height: 9px;
  border-radius: 10px;
  background: repeating-linear-gradient(90deg,#e1ac47,#f5e2b7 24px,#fffbe6 36px,#e1ac47 40px);
  opacity: 0.28;
  z-index: 2;
  pointer-events: none;
}

/* Subtle shadow for all interactive elements */
button, .cta-btn, .cookie-btn {
  box-shadow: 0 1.5px 8px rgba(212, 136, 28, 0.08);
}

/* Micro-interactions (subtle tap/hover animation for cards, buttons) */
button:active,.cta-btn:active,.cookie-btn:active {
  transform: translateY(2px) scale(0.99);
}

/* Vintage font for logo if available ----------- */
.logo,
.logo-footer {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 2.5px;
  color: #234E70;
}

/* Retro horizontal lines ----------- */
hr {
  border: none;
  border-top: 4px dotted #f5e2b7;
  margin: 32px 0;
}

/* Accessibility Comments: Many controls (toggle, modal, header) visible focus ring + sufficient contrast ensured everywhere */

/* ---------- END CSS ------------- */
