/* ===== CSS RESET & BASE ===== */
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,
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;}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {display:block;}
body {line-height:1; background: #F4F7F1; color:#25232A;}
ol, ul {list-style:none;}
a {text-decoration:none; color:inherit;}
img {max-width:100%; display:block;}
table {border-collapse:collapse; border-spacing:0;}
button {background:none; border:none; cursor:pointer; font:inherit;}

/* ===== CUSTOM VINTAGE RETRO FONT SETUP ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background-color: #F4F7F1;
  color: #25232A;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 1px;
  color: #25232A;
  margin-bottom: 18px;
  font-weight: 900;
  text-shadow: 1px 1px 0 #E44B7A22;
}
h1 {font-size: 2rem; margin-bottom: 24px;}
h2 {font-size: 1.5rem; margin-bottom: 16px;}
h3 {font-size: 1.15rem; margin-bottom: 12px;}
h4 {font-size: 1rem;}

p, ul li, ol li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 12px;
  color: #25232A;
}
strong {font-weight:700; color:#994957;}

/* ===== VINTAGE RETRO COLOR PALETTE ===== */
:root {
  --primary: #25232A;
  --secondary: #E44B7A;
  --accent: #F4F7F1;
  --vintage-yellow: #FFE09B;
  --vintage-blue: #3B4B79;
  --vintage-green: #7CA58D;
  --vintage-brown: #A47848;
}

/* ===== SPACING HELPERS ===== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.content-wrapper {
  margin: 0 auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fffbe9;
  border-radius: 16px;
  box-shadow: 0 4px 16px #A4784833;
  min-width: 270px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 280px;
  padding: 28px 24px;
  border: 2px solid #FFE09B;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover {
  box-shadow: 0 8px 28px #E44B7A33;
  border-color: #E44B7A;
  z-index:1;
}
.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;
  padding: 20px;
  background: #FFE09B;
  border-radius: 16px;
  box-shadow: 0 4px 16px #A4784833;
  margin-bottom: 20px;
  border: 2px dashed #A47848;
}
.testimonial-card p {
  color: #25232A;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===== VINTAGE DECORATIVE ELEMENTS ===== */
.category-tags {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 20px 0;
}
.tag {
  background: #E44B7A;
  color: #fffbe9;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.95rem;
  border-radius: 18px;
  padding: 6px 16px;
  box-shadow: 1px 1px 0 #FFE09B88;
  margin-bottom: 6px;
  letter-spacing: 0.7px;
}
.benefit-highlight, .tips {
  background: #FFE09B55;
  border-left: 4px solid #E44B7A;
  padding: 18px 22px;
  margin: 24px 0;
  border-radius: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #3B4B79;
}
.awards-badges {
  margin: 20px 0 8px 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 1rem;
}
.awards-badges span {
  padding: 8px 16px;
  border-radius: 12px;
  background: #FFE09B;
  color: #7CA58D;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 1px 2px 6px #E44B7A12;
}

.visual-overview img {
  border-radius: 50%;
  background: #FFF;
  box-shadow: 0 4px 12px #3B4B7913;
  border: 2px solid #FFE09B;
}

/* ====== BUTTONS (CTA & LINKS) ====== */
.cta-btn {
  background: #E44B7A;
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 22px;
  padding: 13px 32px;
  font-size: 1.1rem;
  margin: 10px 10px 10px 0;
  border: 2px solid transparent;
  box-shadow: 2px 4px 14px #25232A1d, 0 1px 0 #FFE09B44;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border 0.2s;
  display: inline-block;
  z-index: 0;
}
.cta-btn:hover, .cta-btn:focus {
  background: #fffbe9;
  color: #E44B7A;
  border: 2px solid #E44B7A;
  box-shadow: 0 8px 24px #E44B7A23;
  outline: none;
}
.main-nav a:not(.cta-btn) {
  font-family:'Montserrat',Arial,sans-serif;
  color:#25232A;
  font-size:1.05rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 12px;
  transition: background 0.15s, color 0.15s;
  position:relative;
  margin: 0 4px;
}
.main-nav a:not(.cta-btn):hover {
  background: #FFE09B;
  color: #E44B7A;
}
.footer-contact img, .footer-logo img, .contact-details img {
  margin-right: 8px;
  vertical-align: middle;
  height: 20px;
  width: 20px;
}

/* ===== TABLES & LISTS ===== */
table.price-table {
  width:100%;
  margin: 22px 0 32px 0;
  border-collapse: collapse;
  font-size:1rem;
  font-family:'Roboto', Arial, sans-serif;
}
table.price-table th,table.price-table td {
  border:2px solid #FFE09B;
  padding: 18px 10px;
}
table.price-table th {
  background: #FFE09B;
  color: #3B4B79;
  font-family: 'Montserrat',Arial,sans-serif;
}
table.price-table tr:nth-child(even) td {
  background: #fffbe9;
}
table.price-table tr:nth-child(odd) td {
  background: #FFF;
}

ul, ol {
  margin-bottom: 16px;
}
ul li, ol li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 6px;
}
ul li:before {
  content: '\2022';
  color: #E44B7A;
  font-weight: bold;
  display: inline-block;
  width: 22px;
  margin-left: -26px;
  font-size: 1.1em;
  font-family: 'Montserrat', Arial, sans-serif;
}
ul li img {
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  margin-right: 12px;
}

ol li {
  list-style: decimal;
  list-style-position:inside;
  font-weight: 500;
}

/* Text sections for particular blocks */
.text-section { background: #fff; border-radius: 18px; padding: 32px 22px; margin-bottom: 32px; box-shadow: 0 2px 12px #FFE09B35;}
.team-bio, .faq-preview, .tips { background:#FFF7DD; border-left: 4px solid #A47848; margin:20px 0 0 0; padding:18px 18px; border-radius:12px;}
.map-location {color:#3B4B79; background:#E7F1EE; border-radius:12px; margin:18px 0 0 0; padding:13px 16px;}
.contact-details {margin-bottom:16px;}

/*************** HEADER & NAVIGATION ***************/
header {
  background: #fffbe9 url('assets/retro-pattern.png') repeat;
  border-bottom: 4px double #A47848;
  box-shadow: 0 2px 15px #FFE09B33;
  position:sticky;
  top:0; z-index:100;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 10px 18px 8px;
}
.logo img {
  height:48px;
  width:auto;
  margin-right:20px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: #E44B7A;
  color: #FFF;
  border-radius: 11px;
  width:44px;
  height:44px;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  z-index:111;
  border:2px solid #FFE09B;
}
.mobile-menu-toggle:hover {
  background: #fffbe9;
  color: #E44B7A;
}

/* ===== MOBILE SLIDING MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFE09B;
  z-index: 9999;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.68,-0.55,.27,1.55);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 0;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.2rem;
  background: #E44B7A;
  color: #fff;
  border: none;
  margin: 18px 22px 14px 0;
  border-radius: 12px;
  width:44px;
  height:44px;
  z-index:1;
  transition: background 0.15s;
}
.mobile-menu-close:hover {
  background: #fffbe9;
  color: #E44B7A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  padding: 36px 44px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: #3B4B79;
  border-radius: 14px;
  padding: 16px 0 16px 14px;
  transition: background 0.13s, color 0.13s;
  display: block;
  margin-bottom: 2px;
}
.mobile-nav a.cta-btn {
  background:#E44B7A;
  color:#FFF;
  margin: 22px 0 0 0;
  border-radius: 22px;
  font-size: 1rem;
  box-shadow: 2px 4px 14px #25232A24, 0 1px 0 #FFE09B33;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fffbe9;
  color: #E44B7A;
}

/*************** MAIN LAYOUT CONTAINERS ***************/
main {
  width: 100%;
  margin: 0;
  padding-bottom: 64px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 14px;
}

/*************** FOOTER ***************/
footer {
  background: #fffbe9 url('assets/retro-pattern.png') repeat;
  border-top: 4px double #A47848;
  box-shadow: 0 -2px 14px #FFE09B44;
  font-size:0.97rem;
  color: #7CA58D;
  padding: 36px 0 0 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 18px;
}
footer nav a {
  color: #3B4B79;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 9px;
  padding: 6px 14px;
  transition: background 0.14s, color 0.14s;
}
footer nav a:hover {
  background: #FFE09B;
  color: #E44B7A;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
  align-items: center;
  color:#3B4B79;
  margin-bottom:18px;
}
.footer-logo {
  margin: 16px 0 0 0;
}
.footer-logo img {
  height:36px; width:auto;
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 8888;
  background: #25232A;
  color: #ffe09b;
  font-family: 'Roboto',Arial,sans-serif;
  box-shadow: 0 -2px 18px #25232A38;
  display: flex;
  flex-direction: column;
  padding: 32px 18px 24px 18px;
  align-items: flex-start;
  gap: 20px;
  transition: transform 0.3s, opacity 0.3s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  color: #ffe09b;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
.cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn, .cookie-settings-btn {
  background: #FFE09B;
  color: #25232A;
  border-radius: 24px;
  font-weight: bold;
  padding: 10px 30px;
  font-size: 1rem;
  border: 2px solid #FFE09B;
  margin: 0;
  transition: background 0.18s, color 0.18s, border 0.15s;
  box-shadow: 0 2px 10px #25232A18;
}
.cookie-btn:hover, .cookie-settings-btn:hover {
  background: #E44B7A;
  color: #fff;
  border: 2px solid #E44B7A;
}
.cookie-btn.reject {
  background: #A47848;
  color: #fffbe9;
  border: 2px solid #A47848;
}
.cookie-btn.reject:hover {
  background: #FFE09B;
  color: #A47848;
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  z-index: 9910;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(37,35,42,0.70);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.22s, visibility 0.18s;
}
.cookie-modal.open {
  opacity: 1; visibility: visible;
}
.cookie-modal-content {
  background: #fffbe9;
  color: #25232A;
  border-radius: 16px;
  padding: 36px 18px 28px 20px;
  box-shadow: 0 4px 36px #A4784836;
  min-width: 300px; max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 240px;
  position: relative;
}
.cookie-modal-content h2 {
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin: 10px 0;
}
.cookie-modal-content input[type="checkbox"] {
  accent-color: #E44B7A;
  width: 22px;
  height: 22px;
  margin-right: 7px;
}
.cookie-modal-content .cookie-modal-btns {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 17px;
  background: #E44B7A;
  color: #fffbe9;
  border-radius: 12px;
  font-size: 1.5rem;
  width: 38px; height: 38px;
  text-align: center;
  line-height: 38px;
  border:2px solid #FFE09B;
  transition: background 0.15s;
  z-index:1;
}
.cookie-modal-close:hover {
  background: #FFE09B;
  color: #E44B7A;
}
.cookie-modal-content .desc {
  color: #3B4B79;
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.cookie-category {
  background: #FFE09B22;
  border-radius: 10px;
  padding: 11px 13px;
  margin: 8px 0;
  font-size: 0.95rem;
  color: #25232A;
}
.cookie-category.essential { opacity:0.8; font-weight: 700;}

/* ========== ANIMATIONS & MICROINTERACTIONS ========== */
.cta-btn, .main-nav a, .mobile-nav a, .cookie-btn, .cookie-settings-btn, .mobile-menu-toggle, .mobile-menu-close, .cookie-modal-close {
  transition: background 0.17s, color 0.17s, border 0.18s, box-shadow 0.16s;
}
.card, .testimonial-card, .tag, .awards-badges span {
  transition: box-shadow 0.15s, border 0.15s, background 0.16s, color 0.16s;
}

/*************** RESPONSIVE DESIGN ***************/
@media (max-width: 1200px) {
  .container {max-width: 98vw;}
}
@media (max-width: 900px) {
  .main-nav {gap: 6px;}
  .section, section {padding-left: 8px; padding-right: 8px;}
}
@media (max-width: 850px) {
  .main-nav {gap: 2px;}
  .footer-contact {gap: 14px;}
}
@media (max-width: 768px) {
  /* Header menu */
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  header .container {gap: 2px;}
  /* Mobile: text/image sections stack */
  .text-image-section {flex-direction: column;align-items:flex-start;gap:22px;}
  /* content-grid/cards become cols! */
  .content-grid, .card-container {
    flex-direction: column;
    gap: 22px;
  }
  .card, .testimonial-card {min-width: 0;}
  .category-tags {flex-direction:column;gap:10px;align-items:stretch;}
  .section, section {padding:28px 4px; margin-bottom:38px;}
  .text-section {padding:16px 4px;}
  .content-wrapper {padding:0 2px;}
  h1 {font-size: 1.4rem;}
  h2 {font-size: 1.07rem;}
  .footer-contact {flex-direction: column;gap:8px;}
  .awards-badges {flex-direction:column;gap:8px;}
}
@media (max-width: 540px) {
  header .container {
    flex-direction: row;
    gap: 6px;
    padding: 10px 3px 12px 2px;
  }
  .logo img {height:34px;}
  .mobile-menu {
    padding:0;
  }
  .mobile-nav {
    padding: 26px 10px;
    font-size: 1.09rem;
    gap: 10px;
  }
  .mobile-menu-close {
    margin: 12px 6px 8px 0;
    width:36px;height:36px;font-size:1.7rem;
  }
  .footer-contact span {
    font-size: 0.98rem;
  }
}

/******** Adv. Hide Banner/Menu on Modal/Overlay ********/
body.mobile-menu-open, .mobile-menu.open {
  overflow-y: hidden !important;
}
