/* Reset & Basic 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 {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background-color: #fff;
  color: #232D37;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background-color: #fff;
  line-height: 1.6;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  color: #232D37;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  border: none;
  display: inline-block;
}
a {
  color: #BC9458;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F44336;
}
*, *::before, *::after {
  box-sizing: inherit;
}
::-webkit-input-placeholder { color: #888; }
::-moz-placeholder { color: #888; }
:-ms-input-placeholder { color: #888; }
::placeholder { color: #888; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: #232D37;
  line-height: 1.1;
  letter-spacing: -1.5px;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.5rem; margin-bottom: 10px; }
h4 { font-size: 1.17rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.9rem; }
p, ul, ol, .subheadline, .text-section {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-bottom: 14px;
  color: #232D37;
}
.subheadline {
  font-size: 1.15rem;
  color: #BC9458;
  font-weight: 500;
  margin-bottom: 24px;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 24px;
}
ul li, ol li {
  margin-bottom: 10px;
  line-height: 1.5;
}
strong {
  font-weight: 700;
  color: #3E67EC;
}

/* Container & Layouts */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px 0 rgba(44,92,166,0.08), 0 1.5px 8px 0 #BC945810;
  margin-bottom: 20px;
  position: relative;
  padding: 24px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(44,92,166,0.16), 0 3px 12px 0 #BC945830;
  transform: translateY(-3px) scale(1.02) rotate(-1.5deg);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}
.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: #F4F4F4;
  border-radius: 15px;
  border: 2px solid #BC94582D;
  margin-bottom: 20px;
  color: #232D37 !important;
  box-shadow: 0 2px 10px #BC945822;
  position: relative;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px #BC945844;
  transform: scale(1.02) rotate(0.5deg);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Spacing Between Elements */
.section > *,
.card-container > *,
.content-grid > *,
.text-image-section > *,
.testimonial-card > *,
.feature-item > * {
  margin-bottom: 0px !important;
}
.section > * + *,
.card-container > * + *,
.content-grid > * + *,
.text-image-section > * + *,
.testimonial-card > * + *,
.feature-item > * + * {
  margin-top: 20px !important;
}

/* Hero Section */
.hero {
  background: #F4F4F4;
  padding: 60px 0 48px 0;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  animation: heroPop 1s cubic-bezier(.25,.9,.68,1.25) 1;
}
@keyframes heroPop {
  0% { opacity: 0; transform: scale(.97) translateY(30px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.hero h1 {
  font-size: 2.6rem;
  color: #232D37;
  margin-bottom: 12px;
  text-shadow: 0 1px 0 #fff4, 0 2px 8px #BC945824;
}

/* Button Styles */
.cta-primary, .cta-nav, .mobile-nav a.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #BC9458;
  color: #fff !important;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.03rem;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 25px;
  padding: 12px 34px;
  margin-top: 10px;
  margin-bottom: 9px;
  box-shadow: 0 2px 9px #BC94581a;
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.25s, transform 0.12s;
  outline: none;
}
.cta-primary:hover, .cta-nav:hover, .mobile-nav a.cta-primary:hover {
  background: #232D37;
  color: #FFE289 !important;
  box-shadow: 0 6px 18px #BC945833;
  transform: translateY(-2px) scale(1.032);
}

.cta-nav {
  margin-left: 16px !important;
  margin-right: 0;
}

.main-nav a {
  color: #232D37;
  padding: 7px 14px;
  border-radius: 22px;
  margin-right: 8px;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 500;
  position: relative;
  transition: background 0.16s, color 0.19s, transform 0.12s;
}
.main-nav a.cta-nav {
  background: #BC9458;
  color: #fff !important;
  box-shadow: 0 2px 8px #BC94581e;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F4F4F4;
  color: #BC9458;
  transform: scale(1.04) rotate(-1deg);
}
.main-nav a.cta-nav:hover {
  background: #232D37;
  color: #fff;
}

footer .footer-nav a {
  font-size: 0.99rem;
  margin-right: 12px;
  padding: 5px 10px;
}
.footer-nav a:hover {
  color: #BC9458;
  text-decoration: underline;
}

/* Playful Animated Button Highlight */
.cta-primary, .cta-nav {
  box-shadow: 0 0 0 0 #FFF0,
              0 4px 21px #BC945833;
  position: relative;
  z-index: 1;
}
.cta-primary:after, .cta-nav:after {
  content: '';
  display: block;
  position: absolute;
  top: 55%;
  left: 50%;
  width: 115%;
  height: 85%;
  background: #FFEFCB;
  opacity: 0.23;
  z-index: -1;
  border-radius: 30px;
  transform: translate(-50%, -50%) scale(0.95) rotate(-2deg);
  filter: blur(6px);
  pointer-events: none;
  transition: opacity 0.24s, transform 0.2s;
}
.cta-primary:hover:after, .cta-nav:hover:after {
  opacity: 0.31;
  transform: translate(-50%, -56%) scale(1.03) rotate(1deg);
}

/* Feature and Category Grids */
.feature-grid, .category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
  margin-bottom: 12px;
}
.feature-grid li, .category-grid li {
  background: #FFEFCB;
  color: #232D37;
  font-weight: 600;
  padding: 13px 20px;
  border-radius: 15px;
  font-size: 1.07rem;
  box-shadow: 0 1px 8px #BC945814;
  transition: box-shadow 0.18s, transform 0.14s;
}
.feature-grid li:hover, .category-grid li:hover {
  box-shadow: 0 6px 16px #FFE28959;
  transform: translateY(-2px) scale(1.04) rotate(-2.5deg);
}
.feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0 10px 0;
}
.feature-icons span {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F4F4F4;
  color: #BC9458;
  font-weight: 600;
  font-size: 1rem;
  padding: 9px 18px;
  border-radius: 25px;
  box-shadow: 0 1px 4px #BC94581a;
  transition: background 0.14s, box-shadow 0.14s;
}
.feature-icons span:hover {
  background: #FFEFCB;
  box-shadow: 0 4px 16px #BC945822;
}

/* Table Styles */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  box-shadow: 0 2px 14px #BC94581b;
  border-radius: 15px;
  overflow: hidden;
  margin: 2px 0 24px 0;
  font-size: 1rem;
}
.pricing-table th, .pricing-table td {
  padding: 14px 14px;
  text-align: left;
  border-bottom: 1px solid #F4F4F4;
}
.pricing-table thead th {
  background: #BC9458;
  color: #fff;
  font-weight: 700;
}
.pricing-table tbody tr:nth-child(odd) {
  background: #FFEFCB;
}

/* Average Rating Display */
.average-rating-display {
  margin: 28px 0 0 0;
  font-size: 1.13rem;
  color: #232D37;
  background: #FFF3CC;
  border-radius: 12px;
  padding: 11px 18px;
  font-weight: 600;
  display: inline-block;
}

/* Steps List */
.steps-list {
  list-style: decimal inside;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 20px;
}
.steps-list li {
  background: #F4F4F4;
  border-left: 5px solid #BC9458;
  padding: 9px 18px;
  font-weight: 600;
  border-radius: 0 20px 20px 0;
  box-shadow: 0 1px 8px #BC94580F;
  font-size: 1.02rem;
  margin-bottom: 0;
}

/* Header */
header {
  background: #fff;
  box-shadow: 0 4px 24px #232D3708;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 16px;
}
.logo-link img {
  height: 46px;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile Navigation */
.mobile-menu-toggle {
  background: #232D37;
  color: #fff;
  font-size: 2.1rem;
  padding: 0 13px;
  border: none;
  border-radius: 8px;
  display: none;
  cursor: pointer;
  height: 44px;
  width: 44px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 1px 14px #232D3713;
  transition: background 0.19s, color 0.17s, box-shadow 0.16s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #BC9458;
  color: #fffde7;
  box-shadow: 0 4px 24px #BC945871;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #fff;
  box-shadow: 0 5px 32px #232D371C;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 38px 28px 28px 28px;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.77,.45,.34,1.14);
  will-change: transform;
  opacity: 1;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  background: #FFF3CC;
  color: #232D37;
  border: none;
  font-size: 2.4rem;
  font-weight: bold;
  padding: 5px 17px;
  border-radius: 15px;
  cursor: pointer;
  margin-bottom: 18px;
  transition: background 0.17s;
  box-shadow: 0 3px 13px #BC945812;
}
.mobile-menu-close:hover{
  background: #232D37;
  color: #FFEFCB;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  padding: 12px 16px;
  font-size: 1.15rem;
  color: #232D37;
  background: #F4F4F4;
  border-radius: 18px;
  font-weight: 600;
  transition: background 0.13s, color 0.15s, transform 0.14s;
  margin-right: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFEFCB;
  color: #BC9458;
  transform: scale(1.06) rotate(-2deg);
}
.mobile-nav a.cta-primary {
  background: #BC9458;
  color: #fff;
  margin-top: 14px;
  font-weight: 700;
  padding: 13px 6px;
}

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

/* Generic Hide Mobile Menu on desktop */
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Footer Styles */
footer {
  background: #232D37;
  color: #fff;
  padding: 52px 0 36px;
  font-size: 1rem;
  margin-top: 70px;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
  justify-content: space-between;
}
.footer-logo img {
  height: 42px;
  margin-bottom: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 1.01rem;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #FFEFCB;
  font-size: 0.99rem;
}
.footer-contact img {
  height: 18px;
  width: 18px;
  margin-right: 7px;
  vertical-align: text-bottom;
}
footer .footer-contact p {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #FFEFCB;
  font-size: 0.97rem;
  margin-bottom: 4px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: #ffeec7;
  color: #232D37;
  font-size: 1rem;
  box-shadow: 0 -3px 18px #BC94581a;
  padding: 20px 24px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.48s cubic-bezier(.55,.32,.6,1.14), opacity .24s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  margin-top: 2px;
}
.cookie-banner button {
  background: #BC9458;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 10px 26px;
  margin: 0 2px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.16s, color 0.15s, transform .10s;
  box-shadow: 0 1px 8px #BC945814;
}
.cookie-banner button:hover {
  background: #232D37;
  color: #FFEFCB;
}
.cookie-banner button.cookie-settings {
  background: #fff;
  color: #BC9458;
  border: 1.5px solid #BC94586b;
}
.cookie-banner button.cookie-settings:hover {
  background: #FFEFCB;
  color: #232D37;
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(42,41,54, 0.73);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.28s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  padding: 34px 24px 29px;
  width: 100%;
  max-width: 410px;
  box-shadow: 0 11px 36px #232D3744;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalBounceIn 0.41s cubic-bezier(.42,1.41,.38,1) both;
  position: relative;
}
@keyframes modalBounceIn {
  0% { transform: scale(.8) translateY(40px); opacity: 0; }
  60% { transform: scale(1.05) translateY(-10px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 21px;
  top: 13px;
  background: #FFEFCB;
  color: #232D37;
  border: none;
  font-size: 2.0rem;
  border-radius: 15px;
  cursor: pointer;
  padding: 3px 13px;
  transition: background 0.16s;
}
.cookie-modal .cookie-modal-close:hover {
  background: #232D37;
  color: #FFEEC7;
}
.cookie-modal h2 {
  font-size: 1.17rem;
  margin-bottom: 9px;
  color: #BC9458;
}
.cookie-modal .cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #F4F4F4;
  border-radius: 12px;
  padding: 12px 17px;
  margin: 0 0 8px 0;
}
.cookie-modal .cookie-toggle {
  position: relative;
  width: 40px; height: 22px;
  display: inline-block;
}
.cookie-modal .cookie-toggle input {
  opacity: 0; width: 0; height: 0;
}
.cookie-modal .cookie-slider {
  position: absolute; cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #ffeec7;
  border-radius: 14px;
  transition: background 0.2s;
}
.cookie-modal .cookie-toggle input:checked + .cookie-slider {
  background: #BC9458;
}
.cookie-modal .cookie-slider:before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.21s;
  box-shadow: 0 0 5px #BC945814;
}
.cookie-modal .cookie-toggle input:checked + .cookie-slider:before {
  transform: translateX(18px);
}
.cookie-modal .cookie-description {
  font-size: 0.97rem;
  color: #232D37;
}

/* Legal Section Styling */
.legal-section {
  background: #F4F4F4;
  margin-bottom: 68px;
  padding: 42px 0 48px;
  border-radius: 24px;
}
.legal-section h1 {
  color: #BC9458;
  font-size: 2.1rem;
  margin-bottom: 9px;
}
.legal-section h2 {
  color: #232D37;
  font-size: 1.21rem;
  margin-top: 26px;
  margin-bottom: 7px;
}

/* Responsive & Mobile Adjustments */
@media (max-width: 900px) {
  .footer-flex, .content-grid, .card-container {
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 700px) {
  .footer-flex, .content-grid, .card-container, .feature-grid, .category-grid, .feature-icons {
    flex-direction: column;
    gap: 18px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero {
    padding: 30px 0 25px 0;
    min-height: 165px;
  }
  footer {
    padding: 38px 0 20px;
  }
  .section {
    padding: 24px 4vw;
  }
  .pricing-table th, .pricing-table td {
    font-size: 0.93rem;
    padding: 8px 7px;
  }
}
@media (max-width: 768px) {
  .text-image-section, .footer-flex {
    flex-direction: column !important;
    align-items: flex-start;
  }
  .hero h1 {
    font-size: 1.45rem;
  }
  .container {
    padding: 0 5vw;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 8px;
  }
  h1 { font-size: 1.15rem; }
  h2 { font-size: 1.01rem; }
  .testimonials-section, .about-section, .features-section {
    padding: 14px 2px;
  }
}

/* Animations and Playful Effects */
@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.97) translateY(64px); }
  85% { opacity: 1; transform: scale(1.04) translateY(-8px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.card, .testimonial-card, .hero, .cta-primary {
  animation: bounceIn .9s cubic-bezier(.18,.85,.62,1.25) 0s 1;
}

/* Fun Decorative Dots for Playful Dynamic Look */
.card:before, .testimonial-card:before {
  content: '';
  position: absolute;
  bottom: 13px; right: 21px;
  width: 18px; height: 18px;
  background: #FFE28955;
  border-radius: 50%;
  z-index: 3;
  opacity: 0.7;
  pointer-events: none;
}
.card:after {
  content: '';
  position: absolute;
  top: 13px; left: 21px;
  width: 9px; height: 9px;
  background: #3E67EC33;
  border-radius: 50%;
  z-index: 3;
  opacity: 0.23;
  pointer-events: none;
}

/* Miscellaneous: Forms Placeholder for Contact Pages */
input[type=text], input[type=email], textarea, select {
  border: 1.5px solid #BC94584a;
  border-radius: 13px;
  background: #FFF;
  padding: 10px 16px;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 15px;
  transition: border 0.18s, background 0.2s;
}
input[type=text]:focus, input[type=email]:focus, textarea:focus, select:focus {
  border-color: #BC9458;
  background: #FFEFCB;
  outline: none;
}

/* Map Snippet Special Styling */
.map-snippet {
  background: #ffeec7;
  color: #232D37;
  border-radius: 18px;
  padding: 10px 16px;
  margin-top: 12px;
  font-size: 1rem;
}
.map-snippet img {
  margin-right: 6px;
  height: 20px;
  width: 20px;
}

/* Thank You Section */
.thank-you-section {
  background: linear-gradient(110deg, #FFEFCB 80%, #F4F4F4 100%);
  border-radius: 22px;
  min-height: 260px;
  padding: 40px 12px 40px;
  box-shadow: 0 6px 22px #BC945817;
  margin-bottom: 40px;
  text-align: center;
  animation: bounceIn .9s cubic-bezier(.18,.85,.62,1.25) 0s 1;
}

/* Utility Classes for Clarity & Whitespace */
.text-section {
  margin-top: 12px;
  margin-bottom: 14px;
  background: none;
  color: #232D37;
}

/* Hide visually */
.visually-hidden {
   position:absolute !important;
   height:1px; width:1px; overflow:hidden;
   clip: rect(1px, 1px, 1px, 1px);
   white-space:nowrap;
}

/* --- END --- */
