/* 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, 
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 {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #FFF8F6;
  color: #2B2C38;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

a {
  color: #E57399;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #B35478;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}

/* FLEXBOX CONTAINERS & SPACING */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(219, 170, 169, 0.11);
  padding: 32px 28px;
  transition: box-shadow 0.3s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 8px 32px rgba(219, 170, 169, 0.18);
}
.content-grid,
.services-list,
.services-grid,
.feature-grid,
.usp-list,
.experience-points ul {
  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: 16px;
  padding: 20px 28px;
  margin-bottom: 20px;
  border-radius: 15px;
  background: #FAF0F6;
  box-shadow: 0 2px 10px rgba(230, 140, 155, 0.07);
  border: 1px solid #F3D7B6;
  color: #2B2C38;
  max-width: 600px;
}
.testimonial-card blockquote {
  font-size: 18px;
  font-style: italic;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #2B2C38;
  margin-bottom: 4px;
  line-height: 1.6;
}
.testimonial-author {
  font-size: 15px;
  color: #A28696;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.feature-item, .usp-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #FFF5F6;
  gap: 15px;
  padding: 24px 20px;
  border-radius: 14px;
  box-shadow: 0 3px 12px rgba(219, 170, 169, 0.07);
  flex: 1 1 220px;
  min-width: 200px;
  transition: box-shadow 0.2s, background 0.2s;
}
.feature-item:hover, .usp-item:hover {
  box-shadow: 0 8px 20px rgba(219, 170, 169, 0.12);
  background: #FFF9FA;
}
.feature-item img, .usp-item img {
  height: 36px;
  width: 36px;
  margin-bottom: 3px;
  object-fit: contain;
}

/* HERO SECTION */
.hero {
  padding: 64px 0 54px 0;
  margin-bottom: 40px;
  background: linear-gradient(120deg, #FAF4EA 0%, #F3D7B6 100%);
  border-bottom: 3px solid #F3D7B6;
}
.hero .content-wrapper {
  gap: 16px;
  align-items: flex-start;
}
.hero h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 38px;
  color: #E57399;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 10px;
}
.hero .subheadline {
  font-size: 18px;
  color: #7C5A73;
  margin-bottom: 8px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

/* HEADINGS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #2B2C38;
}
h1 { font-size: 38px; margin-bottom: 10px; }
h2 { font-size: 28px; margin-bottom: 12px; color: #E57399; }
h3 { font-size: 19px; color: #2B2C38; margin-bottom: 8px; }
h4 { font-size: 16px; }

p {
  margin-bottom: 12px;
  font-size: 16px;
  color: #574B57;
}

strong, b { color: #2B2C38; font-weight: bold; }

/* BUTTONS */
.btn-cta, .btn-link {
  appearance: none;
  display: inline-block;
  border-radius: 26px;
  padding: 12px 38px;
  background: #E57399;
  color: #FFF;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 600;
  border: none;
  box-shadow: 0 4px 14px rgba(229,115,153,0.08);
  cursor: pointer;
  outline: none;
  letter-spacing: 0.01em;
  margin-top: 10px;
  margin-bottom: 6px;
  transition: background 0.19s, box-shadow 0.2s, transform 0.15s;
}
.btn-cta:hover, .btn-cta:focus, .btn-link:hover, .btn-link:focus {
  background: #EB82A6;
  box-shadow: 0 8px 28px rgba(229,115,153,0.16);
  transform: translateY(-1px) scale(1.03);
  color: #FFF;
}
.btn-link {
  padding: 0 0 0 0;
  background: none;
  color: #E57399;
  font-size: 16px;
  border: none;
  box-shadow: none;
  text-decoration: underline;
  cursor: pointer;
  margin-left: 4px;
  margin-top: 0;
}
.btn-link:hover, .btn-link:focus {
  color: #B35478;
  background: none;
  text-decoration: underline;
}

/* TABLES */
.pricing-table {
  background: #FFF8F6;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 16px;
  margin: 20px 0 28px 0;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(219, 170, 169, 0.09);
}
.pricing-table th, .pricing-table td {
  padding: 18px 16px;
  font-size: 16px;
}
.pricing-table thead th {
  background: #F8E6DE;
  color: #E57399;
  font-size: 17px;
  border-bottom: 2px solid #F3D7B6;
}
.pricing-table tbody tr {
  background: #FFFFFF;
  border-bottom: 1px solid #F9EAE3;
}
.pricing-table tbody tr:last-child {
  border-bottom: none;
}
.pricing-table td {
  color: #2B2C38;
}

.price {
  display: inline-block;
  color: #E57399;
  font-size: 17px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: #FFF0F5;
  padding: 4px 14px;
  border-radius: 26px;
  margin-top: 6px;
  margin-bottom: 4px;
}

/* RATINGS SUMMARY */
.ratings-summary {
  margin-top: 12px;
  font-size: 17px;
  color: #E57399;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #FFF0F7;
  border-radius: 14px;
  padding: 10px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ratings-summary strong {
  color: #2B2C38;
  font-size: 21px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* ADDRESS BLOCK & MAP */
.address-block {
  background: #FFF2E5;
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 15px;
  font-size: 15px;
  color: #2B2C38;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.map-embed {
  background: #F3D7B6;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2B2C38;
  font-weight: bold;
  border-radius: 8px;
  font-size: 17px;
  text-align: center;
}

.faq-teaser {
  font-size: 15px;
  margin-top: 6px;
}

/* FOOTER */
footer {
  background: #FAF4EA;
  padding: 38px 0 18px 0;
  border-top: 2px solid #F3D7B6;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #7C5A73;
  margin-bottom: 16px;
}
.footer-brand img {
  height: 44px;
  width: 44px;
}
.footer-nav {
  display: flex;
  gap: 28px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #E57399;
  font-size: 15px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #B35478;
}
footer p {
  color: #8A8F9A;
  font-size: 14px;
  text-align: left;
  margin-bottom: 0;
}

/* NAVIGATION */
header {
  background: #FFF8F6;
  border-bottom: 2px solid #F3D7B6;
}
header .container {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: relative;
}
.logo img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #7C5A73;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s, border 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #E57399;
}
.btn-cta {
  margin-left: 24px;
}
.mobile-menu-toggle {
  display: none;
  background: #E57399;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 26px;
  color: #FFF;
  border: none;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, box-shadow 0.2s;
  margin-left: 18px;
  box-shadow: 0 2px 10px rgba(229,115,153,0.11);
  z-index: 99;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #EB82A6;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 100%;
  max-width: 350px;
  height: 100vh;
  background: #FFF8F6;
  box-shadow: -6px 0 34px 0 rgba(229, 115, 153, 0.07);
  z-index: 9999;
  transform: translateX(105%);
  transition: transform 0.36s cubic-bezier(0.66,0,0.3,1);
  display: flex;
  flex-direction: column;
  padding: 38px 28px 28px 26px;
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #E57399;
  color: #FFF;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 24px;
  box-shadow: 0 2px 10px rgba(229,115,153,0.11);
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #EB82A6;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: #2B2C38;
  padding: 10px 0;
  border-radius: 10px;
  transition: background 0.2s, color 0.19s;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  color: #E57399;
  background: #FAE3ED;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .container { max-width: 96vw; }
}
@media (max-width: 900px) {
  .feature-grid, .usp-list, .services-list, .services-grid, .content-grid {
    gap: 16px;
  }
  .footer-nav { gap: 18px; }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
    max-width: 99vw;
  }
  .section {
    padding: 36px 6px;
    margin-bottom: 38px;
  }
  header .container {
    flex-direction: row;
    gap: 9px;
  }
  .main-nav { display: none; }
  .btn-cta { margin-left: 0; }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer-brand {
    flex-direction: column;
    gap: 7px;
    text-align: center;
  }
  .feature-grid, .usp-list, .services-list, .services-grid, .content-grid, .experience-points ul {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
  }
  .hero h1 { font-size: 27px; }
  h1 { font-size: 25px; }
  h2 { font-size: 21px; }
  h3 { font-size: 16px; }
}
@media (max-width: 540px) {
  .footer-brand img { height: 36px; width: 36px; }
  .pricing-table th, .pricing-table td { font-size: 13px; padding: 11px 6px; }
}

/* ---- INTERACTIVE ELEMENTS & MICRO-ACTIONS ---- */
.services-list .service-item, .services-grid .service-item {
  background: #FFFFFF;
  border-radius: 13px;
  padding: 26px 18px;
  margin-bottom: 20px;
  box-shadow: 0 1px 7px rgba(220,181,182,0.10);
  transition: box-shadow 0.25s, transform 0.17s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 200px;
  min-width: 180px;
}
.services-list .service-item:hover, .services-grid .service-item:hover {
  box-shadow: 0 8px 30px rgba(229,115,153,0.11);
  transform: translateY(-2px) scale(1.03);
}
.services-list .service-item h3, .services-grid .service-item h3 {
  color: #E57399;
  font-size: 18px;
  margin-bottom: 5px;
}
.services-list .service-item p, .services-grid .service-item p {
  font-size: 15px;
  color: #775766;
}

/* USP & EXPERIENCE */
.usp-list, .experience-points ul {
  width: 100%;
  flex-wrap: wrap;
}
.usp-item, .experience-points li {
  background: #FFF5F6;
  border-radius: 13px;
  padding: 21px 17px;
  box-shadow: 0 1px 7px rgba(220,181,182,0.09);
  margin-bottom: 16px;
  color: #604562;
  font-size: 15px;
}
/* REMOVE MARKERS FOR USP */
.experience-points ul, .usp-list {
  list-style: none;
  padding-left: 0;
}
.experience-points li {
  list-style: none;
  margin-bottom: 10px;
  background: #FBEDF6;
  font-size: 15px;
  padding: 16px 13px;
  border-radius: 9px;
  color: #6D5675;
}

/* ---- COOKIE CONSENT BANNER ---- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #F3D7B6;
  color: #2B2C38;
  border-top: 2px solid #E57399;
  box-shadow: 0 -3px 22px rgba(243,215,182,0.15);
  z-index: 66666;
  padding: 28px 20px 15px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  animation: cookieBannerIn 0.8s cubic-bezier(0.7,0,0.3,1);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
@keyframes cookieBannerIn {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 5px;
}
.cookie-btn {
  background: #E57399;
  color: #FFF;
  border: none;
  border-radius: 22px;
  padding: 8px 24px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin: 0 3px;
  transition: background 0.2s, box-shadow 0.15s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #EB82A6;
}
.cookie-btn.secondary {
  background: #FFF8F6;
  color: #E57399;
  border: 1px solid #E57399;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #F3D7B6;
}

/* ---- COOKIE SETTINGS MODAL ---- */
.cookie-modal-overlay {
  display: none;
  position: fixed; left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(229,115,153,0.14);
  z-index: 88888;
  justify-content: center; align-items: center;
  animation: cookieOverlayIn 0.17s cubic-bezier(0.8,0,0.25,1);
}
.cookie-modal-overlay.active {display: flex;}
@keyframes cookieOverlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #FFF8F6;
  border-radius: 19px;
  box-shadow: 0 8px 40px rgba(229,115,153,0.19);
  max-width: 388px;
  padding: 38px 32px 26px 32px;
  text-align: left;
  animation: cookieModalIn 0.36s cubic-bezier(0.7,0,0.3,1);
  color: #2B2C38;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
@keyframes cookieModalIn {
  0% {transform: scale(0.92); opacity: 0;}
  100% {transform: scale(1); opacity: 1;}
}
.cookie-modal h3 {
  font-size: 21px;
  color: #E57399; margin-bottom: 14px;
}
.cookie-pref-list {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin-bottom: 19px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  background: #F3D7B6;
  border-radius: 13px;
  padding: 11px 18px;
  color: #2B2C38;
  font-size: 16px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-category input[type='checkbox'] {
  accent-color: #E57399;
  width: 18px; height: 18px;
}
.cookie-category .cookie-essential-label {
  font-weight: 600;
  color: #A28696;
}
.cookie-modal-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* ---- MISC ---- */
::-webkit-input-placeholder { color: #BCA3B2; }
::-moz-placeholder { color: #BCA3B2; }
:-ms-input-placeholder { color: #BCA3B2; }
::placeholder { color: #BCA3B2; }

/* Remove decoration on input focus */
input, textarea, select, button {
  outline: none;
  font-family: inherit;
}

/* Card & Section Spacing Patterns (as per requirements) */
.card-container {display: flex; flex-wrap: wrap; gap: 24px;}
.card {margin-bottom: 20px; position: relative;}
.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;}
.feature-item {display: flex; flex-direction: column; align-items: flex-start; gap: 15px;}

/* Accessibility Focus States */
a:focus, button:focus, .btn-cta:focus, .cookie-btn:focus, .mobile-menu-close:focus {
  outline: 2px solid #E57399;
  outline-offset: 2px;
}

/* Hide scrollbars for mobile menu (if overflows) */
.mobile-menu {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.mobile-menu::-webkit-scrollbar { display: none; }

/* Hide cookie modal on mobile when not active */
@media (max-width: 540px) {
  .cookie-modal { padding: 23px 9vw 18px 9vw; }
}
