/* =============================
   CSS RESET & BASE 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, 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 { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #FFF8ED;
  color: #22302d;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: #105C63; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #7a2725; text-decoration: underline; }
ul, ol { list-style-position: inside; }

/* ============================
   VINTAGE RETRO DESIGN SYSTEM
   ============================ */
:root {
  --primary: #105C63;
  --secondary: #faeecf;
  --accent: #FADB58;
  --retro-red: #B94B39;
  --retro-navy: #355c7d;
  --retro-creme: #FFF8ED;
  --card-bg: #fff7e0;
  --card-border: #eed491;
  --card-shadow: 0 4px 16px 0 rgba(159,115,70,0.10);
  --vintage-brown: #ae9069;
  --vintage-orange: #cd7e3e;
  --vintage-blue: #58aebb;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Impact, Arial Black, sans-serif;
  color: var(--primary);
  text-shadow: 0 1px 0 #eed491;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
h1 { font-size: 2.7rem; line-height: 1.2; margin-bottom: 18px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 14px; }
h3 { font-size: 1.29rem; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1rem; }
p, li { color: #22302d; font-size: 1.02em; }
strong { color: var(--retro-red); font-family: 'Montserrat', Arial, sans-serif; font-weight: 700; }

body {
  background: var(--retro-creme);
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ==================
   HEADER & NAVBAR
   ================== */
header {
  background: var(--accent);
  border-bottom: 5px solid var(--primary);
  box-shadow: 0 9px 24px -10px #85583611;
  position: relative;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 68px;
}
header img {
  height: 52px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
}
header nav a {
  font-family: 'Montserrat', Impact, Arial Black, sans-serif;
  font-size: 1rem;
  padding: 10px 14px;
  border-radius: 22px;
  font-weight: 700;
  color: #624216;
  background: transparent;
  border: none;
  box-shadow: none;
  transition: background 0.18s, color 0.2s;
}
header nav a.cta {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 10px 0 #6b614e21;
  border-radius: 25px;
  margin-left: 10px;
  letter-spacing: 0.04em;
  border-bottom: 4px solid var(--vintage-brown);
}
header nav a.cta:hover, header nav a.cta:focus {
  background: var(--accent);
  color: var(--primary);
  border-bottom: 4px solid var(--retro-red);
}
header nav a:hover, header nav a:focus {
  background: var(--vintage-brown);
  color: #fff;
}

/* ============
   MOBILE MENU
   ============ */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.22s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--retro-red);
  outline: none;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--retro-navy);
  color: #fff;
  z-index: 1500;
  flex-direction: column;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(.23,1.22,.56,.99), opacity 0.25s;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: var(--accent);
  background: transparent;
  border: none;
  align-self: flex-end;
  margin: 20px 24px 0 0;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 0 32px;
  margin-top: 50px;
}
.mobile-nav a {
  font-family: 'Montserrat', Impact, Arial Black, sans-serif;
  color: #fff6da;
  font-size: 1.4rem;
  padding: 12px 0;
  width: 100%;
  border-bottom: 1px solid #355c7d33;
  transition: color 0.22s, background 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
  background: #fff1de19;
  outline: none;
}

@media (max-width: 1024px) {
  header nav { gap: 8px; }
  header nav a { font-size: 0.96rem; padding: 8px 8px; }
  header .container {
    gap: 10px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    gap: 6px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 768px) {
  header img { height: 44px; }
  header .container { min-height: 56px; }
}

/* =================
   SECTION LAYOUTS
   ================= */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 32px 8px 32px 8px;
  box-shadow: 0 1px 4px 0 #ffce8250;
  border: 1px dashed var(--card-border);
}

@media (max-width: 600px) {
  section { padding: 28px 4vw 28px 4vw; margin-bottom: 30px; border-radius: 20px 6px 20px 6px; }
}

.hero {
  background: var(--vintage-blue);
  color: #fff;
  box-shadow: 0 6px 32px 0 #58aebb44;
  border: none;
  margin-bottom: 60px;
}
.hero .container {
  align-items: center;
}
.hero h1,
.hero p {
  color: #fff !important;
}
.hero .cta {
  margin-top: 24px;
}

.features, .services-overview {
  background: var(--secondary);
  border: 2px solid var(--accent);
  box-shadow: 0 8px 32px 0 #faeecf50;
}

.features ul,
.services-overview ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  list-style: none;
  justify-content: space-between;
}
.features ul li,
.services-overview ul li {
  flex: 1 1 250px;
  min-width: 220px;
  background: var(--card-bg);
  border: 2px solid var(--card-border);
  border-radius: 18px 32px 18px 32px;
  padding: 28px 20px 22px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.18s, transform 0.2s;
  position: relative;
}
.features ul li:hover, .services-overview ul li:hover {
  box-shadow: 0 6px 32px 0 #b94b3925;
  z-index: 2;
  transform: translateY(-6px) scale(1.03);
}
.features ul li img, .services-overview ul li img {
  width: 38px; height: 38px; border-radius: 16px;
  border: 2px solid var(--accent);
  background: #fff9e4;
  box-shadow: 0 2px 7px 0 #e7decf29;
}

.testimonials {
  background: var(--vintage-brown);
  border: 2px solid var(--card-border);
  box-shadow: 0 9px 35px 0 #ae906928;
}
.testimonials h2 { color: #fff !important; text-shadow: none; }
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #fffbe6;
  color: #22302d;
  border-radius: 18px 16px 32px 8px;
  margin-bottom: 20px;
  padding: 20px 22px 18px 22px;
  box-shadow: 0 6px 24px 0 #ba94460f;
  border: 1.5px solid var(--retro-red);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.02em;
  font-style: italic;
  position: relative;
  min-width: 210px;
  max-width: 510px;
  transition: box-shadow 0.1s, border 0.14s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 10px 24px 0 #355c7d33;
  border: 2.5px solid var(--primary);
}
.testimonial-card p { color: #23352e; margin-bottom: 0; }
.testimonial-card span {
  display: block;
  color: var(--vintage-orange);
  font-weight: 500;
  font-size: 0.98em;
  font-style: normal;
}

.about, .about-story {
  background: var(--retro-creme);
}
.about ul, .about-story ul { margin: 18px 0 16px 14px; }

.cta {
  background: var(--vintage-orange);
  color: #fff;
  border-radius: 25px;
  padding: 14px 34px;
  font-family: 'Montserrat', Arial Black, Impact, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 2px 12px 0 #b94b3926;
  border: none;
  letter-spacing: 0.03em;
  transition: background 0.22s, color 0.12s, transform 0.2s, box-shadow 0.18s;
  cursor: pointer;
  margin-top: 18px;
}
.cta:hover, .cta:focus {
  background: var(--retro-red);
  color: #fff7e0;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 6px 28px 0 #355c7d4b;
  outline: none;
}

.pricing table {
  width: 100%;
  border-spacing: 0;
  margin-bottom: 30px;
  background: #fffbe7;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px 0 #fadb580a;
}
.pricing th, .pricing td {
  border: 1.5px solid var(--card-border);
  padding: 14px 16px;
  text-align: left;
  font-size: 1.05rem;
}
.pricing th {
  background: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
}
.pricing tr:nth-child(even) td {
  background: #fcf4c1;
}

.faq > .content-wrapper > div {
  background: #f9ede0;
  border-radius: 14px 24px 12px 8px;
  padding: 12px 18px 14px 14px;
  margin-bottom: 20px;
  border: 1.2px dashed #d9bc74;
}

.privacy-policy, .gdpr, .cookie-policy, .terms, .usps, .service-benefits, .process-guide, .location-benefits { background: #fffbe6; }

/* ================================
   CARDS, FLEX CONTAINERS, FEATURES
   ================================ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border: 2px solid var(--retro-navy);
  border-radius: 18px 32px 18px 32px;
  padding: 28px 22px;
  box-shadow: var(--card-shadow);
  transition: box-shadow 0.12s, border 0.16s, transform 0.17s;
}
.card:hover, .card:focus { box-shadow: 0 8px 28px 0 #b94b3922; border: 2.5px solid var(--accent); }

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

/* ===========================
   FOOTER / CONTACT / SOCIALS
   =========================== */
footer {
  background: var(--primary);
  color: #fff;
  padding: 42px 0 18px;
  font-size: 1.01em;
  border-top: 8px solid var(--vintage-orange);
  position: relative;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
footer img { height: 52px; margin-bottom: 7px; }
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 4px 0;
}
footer nav a {
  color: #fff;
  padding: 8px 14px;
  font-family: 'Montserrat', Arial Black, Impact, sans-serif;
  font-weight: 700;
  font-size: 1.02em;
  letter-spacing: 0.01em;
  border-bottom: 2px solid transparent;
  transition: border 0.1s, color 0.13s, background 0.13s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--accent);
  background: #2a7b90;
  border-bottom: 2px solid var(--vintage-orange);
  outline: none;
}
footer .contact-info {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
  justify-content: center;
  color: #fff7d6;
  font-size: 1em;
}
footer .contact-info span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.99em;
}
footer .contact-info img {
  width: 18px; height: 18px; filter: brightness(0.98) invert(0.07) sepia(0.25) saturate(2.8); margin-right: 3px;
}
footer .social-media {
  display: flex; gap: 18px; justify-content: center; margin-top: 13px;
}
footer .social-media a img {
  width: 32px; height: 32px; filter: grayscale(0.30) brightness(0.98) contrast(2.4);
  transition: filter 0.17s, transform 0.15s;
}
footer .social-media a:hover img, footer .social-media a:focus img {
  filter: grayscale(0) brightness(1) contrast(1.05) drop-shadow(0 2px 6px var(--accent));
  transform: scale(1.1);
}
footer .legal-info {
  margin-top: 13px;
  color: #fff9e3;
  font-size: 0.94em;
}

/* ===========================
   COOKIE CONSENT BANNER/MODAL
   =========================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 2500;
  width: 100vw;
  background: var(--vintage-orange);
  color: #fffbe6;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 18px 24px;
  box-shadow: 0 -8px 32px 0 #105c6350;
  font-size: 1.05em;
  animation: bannerDrop 0.7s cubic-bezier(.12,.74,.58,1.36);
}
@keyframes bannerDrop {
  0% { transform: translateY(120%); opacity: 0; }
  85% { transform: translateY(-8px); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner button {
  margin: 0 6px;
  font-family: 'Montserrat', Arial Black, Impact, sans-serif;
  font-weight: 700;
  background: var(--accent);
  color: var(--primary);
  border: none;
  padding: 10px 20px;
  border-radius: 21px;
  cursor: pointer;
  transition: background 0.19s, color 0.14s, transform 0.17s, box-shadow 0.15s;
  box-shadow: 0 2px 8px 0 #fff7e026;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  outline: none;
}

.cookie-modal {
  position: fixed;
  left: 0; right: 0;
  top: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(16,92,99,0.93);
  z-index: 4500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal .modal-content {
  background: #fff7e0;
  color: #392a2a;
  border-radius: 24px;
  padding: 34px 30px 20px 30px;
  min-width: 300px;
  max-width: 97vw;
  box-shadow: 0 8px 50px 0 #105c6347;
  border: 2px solid var(--card-border);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: modalPop 0.3s cubic-bezier(.13,.49,.46,1.32);
}
@keyframes modalPop {
  0% { transform: scale(0.93) translateY(55px); opacity: 0; }
  85% { transform: scale(1.02) translateY(-7px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px; right: 17px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--vintage-orange);
  cursor: pointer;
  padding: 3px;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: var(--retro-red);
  outline: none;
}
.cookie-modal h2 { color: var(--primary); margin-bottom: 8px; font-size: 1.3em; }
.cookie-modal ul {
  list-style: none;
  margin: 0 0 12px 0;
  padding: 0;
}
.cookie-modal ul li { margin-bottom: 12px; }
.cookie-category {
  display: flex;
  align-items: center;
  gap: 9px;
}
.cookie-toggle {
  appearance: none;
  width: 36px; height: 18px;
  background: #ddd;
  border-radius: 12px;
  position: relative;
  outline: none;
  cursor: pointer;
  border: 1.5px solid #d2ac5f;
  transition: background 0.12s;
}
.cookie-toggle:checked { background: var(--vintage-orange); }
.cookie-toggle::before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 14px; height: 14px;
  background: #fff7e0;
  border-radius: 50%;
  box-shadow: 0 1px 2px #d2ac5f36;
  transition: left 0.13s;
}
.cookie-toggle:checked::before { left: 20px; }
.cookie-category label { font-size: 1em; color: #4c4631; }
.cookie-modal .category-essential label {
  color: #222;
  font-weight: 700;
}
.cookie-modal .category-essential .cookie-toggle {
  opacity: 0.45;
  pointer-events: none;
}
.cookie-modal .modal-actions {
  margin-top: 10px;
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  min-width: 100px;
  font-size: 1.01em;
  font-family: 'Montserrat', Arial Black, Impact, sans-serif;
  font-weight: 700;
  padding: 9px 0;
  border-radius: 18px;
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 1px 4px 0 #fadb583d;
}
.cookie-modal .modal-actions button.save-btn {
  background: var(--vintage-orange);
  color: #fff;
}
.cookie-modal .modal-actions button:hover, .cookie-modal .modal-actions button:focus {
  background: var(--primary);
  color: #fff;
  outline: none;
}

/* ===========
   UTILITIES
   =========== */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.no-shadow { box-shadow: none !important; }

/* ==================================
   RESPONSIVE LAYOUTS (MOBILE FIRST)
   ================================== */
@media (max-width: 1024px) {
  .features ul,
  .services-overview ul {
    gap: 16px;
  }
}
@media (max-width: 850px) {
  .features ul,
  .services-overview ul,
  .card-container,
  .content-grid,
  .contact-info {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .testimonials {
    border-radius: 18px;
    box-shadow: 0 4px 18px 0 #ae906919;
  }
}
@media (max-width: 720px) {
  .content-wrapper { padding: 0; }
}
@media (max-width: 600px) {
  .hero, .features, .testimonials, .about, .about-story, .cta, section, .service-benefits, .process-guide, .location-benefits {
    padding: 24px 6vw;
    border-radius: 16px 4px 16px 4px;
    margin-bottom: 25px;
  }
  .testimonial-card {
    max-width: 97vw;
    min-width: 0;
    font-size: 0.98em;
    padding: 13px 9px 12px 11px;
  }
}
@media (max-width: 480px) {
  .container { padding-left: 2vw; padding-right: 2vw; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.09rem; }
}

@media (max-width: 900px) {
  .text-image-section { flex-direction: column; gap: 20px; align-items: flex-start; }
}

@media (max-width: 600px) {
  .card, .features ul li, .services-overview ul li {
    border-radius: 10px 18px 10px 18px;
    padding: 14px 9px;
  }
  .testimonial-card { border-radius: 12px 12px 16px 6px; }
}

/* Display Font Family & Fallback for Older Browsers */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: local('Montserrat'), local('Montserrat-Regular'),
    url('https://fonts.gstatic.com/s/montserrat/v15/JTUQjIg1_i6t8kCHKm459WxZxygn.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular'),
    url('https://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Me5g.ttf') format('truetype');
}

/* ===================
   MICRO-INTERACTIONS
   =================== */
.cta, .cookie-banner button, header nav a.cta, .cookie-modal .modal-actions button {
  transition: background 0.20s, color 0.14s, transform 0.16s, box-shadow 0.17s;
}
section, .card, .testimonial-card {
  transition: box-shadow 0.17s, border 0.16s;
}

/* =============
   PRINT STYLES
   ============= */
@media print {
  body, section, .container { background: #fff !important; color: #000 !important; }
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
}
