/* 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, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { line-height: 1.15; -webkit-text-size-adjust: 100%; }
body { background: #F8F8F2; color: #242B45; font-family: 'Open Sans', Arial, sans-serif; font-size: 16px; line-height: 1.7; }
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section { display: block; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
img { border-style: none; max-width: 100%; height: auto; }
button, input, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
}
input, textarea { background: #fff; }

/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Open+Sans:wght@400;600;700&display=swap');

/* BRAND PALETTE & COMMON VARIABLES */
:root {
  --primary: #242B45;
  --secondary: #1AB07A;
  --accent: #F8F8F2;
  --card: #fff;
  --text-light: #FAFAFA;
  --text-dark: #242B45;
  --gray: #EEEFF1;
}

/* TYPOGRAPHY */
h1, .display {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 24px;
  letter-spacing: -1px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
}
p, li, ul, ol {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 12px;
}
strong { color: var(--secondary); font-weight: 700; }
.subheadline {
  font-size: 1.25rem;
  color: var(--secondary);
  margin-bottom: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* CONTAINER */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}

/* SPACING BASE */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  margin-bottom: 28px;
  padding: 0;
}

/* FLEX LAYOUTS */
.features-grid, .usp-list, .service-detail-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.features-grid > div,
.usp-list > div,
.service-detail-list > div {
  background: var(--card);
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(26, 176, 122, 0.08), 0 0.5px 2px rgba(36,43,69,0.08);
  padding: 28px 22px;
  min-width: 220px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.18s, box-shadow 0.18s;
  margin-bottom: 20px;
  position: relative;
}
.features-grid > div:hover,
.usp-list > div:hover,
.service-detail-list > div:hover {
  transform: translateY(-6px) scale(1.04) rotate(-1.5deg);
  box-shadow: 0 6px 32px rgba(36, 43, 69, 0.14), 0 2px 8px rgba(26, 176, 122, 0.09);
}
.features-grid img,
.usp-list img {
  margin-bottom: 14px;
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.offer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: space-between;
}
.property-snippet {
  background: var(--card);
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(36,43,69,0.09);
  padding: 28px 20px;
  min-width: 260px;
  flex: 1 1 320px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.property-snippet h3 { margin-bottom: 8px; }

.property-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
}
.property-filters button {
  background: var(--secondary);
  color: var(--card);
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 22px;
  cursor: pointer;
  border: none;
  margin-right: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.15s, box-shadow 0.13s;
  box-shadow: 0 1px 4px rgba(26,176,122, 0.15);
}
.property-filters button:hover { background: #16845e; }
.property-filters span { color: var(--primary); font-weight: 700; }

/* FLEX UTILITIES */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card);
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(36,43,69,0.07);
  margin-bottom: 20px;
  padding: 32px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.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;
  margin-bottom: 24px;
}
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 0 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(36,43,69,0.09);
  font-size: 1.01rem;
  max-width: 410px;
  min-width: 220px;
  flex: 1 1 300px;
  margin-bottom: 20px;
  transition: box-shadow 0.14s, transform 0.14s;
  border-left: 6px solid var(--secondary);
  color: var(--primary);
}
.testimonial-card:hover {
  box-shadow: 0 7px 28px rgba(26,176,122,0.13);
  transform: translateY(-5px) scale(1.03) rotate(1deg);
}
.testimonial-card p {
  font-size: 1.03rem;
  color: var(--text-dark);
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--secondary);
}

/* BUTTONS */
.cta, .cta.primary, .cta.secondary {
  display: inline-block;
  background: var(--secondary);
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  border-radius: 34px;
  padding: 14px 38px;
  margin: 10px 10px 10px 0;
  box-shadow: 0 2px 13px rgba(26,176,122,0.13);
  transition: background 0.15s, transform 0.18s, box-shadow 0.17s;
  cursor: pointer;
  position: relative;
  border: none;
  text-align: center;
}
.cta.primary {
  background: var(--primary);
  color: var(--accent);
  border: 2px solid var(--secondary);
}
.cta.secondary {
  background: #FFD800;
  color: var(--primary);
}
.cta:hover, .cta.primary:hover, .cta.secondary:hover {
  background: #16b77c;
  color: #FFF;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 7px 22px rgba(26,176,122,0.15);
}
.cta.primary:hover { background: #1e223a; }

/* HEADER & NAVIGATION */
header {
  background: var(--accent);
  border-bottom: 2px solid var(--secondary);
  padding: 0;
  top: 0; left: 0; z-index: 990;
  box-shadow: 0 3px 18px rgba(36,43,69,0.03);
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 24px;
  color: var(--primary);
  font-size: 1rem;
  transition: background 0.14s, color 0.16s;
}
header nav a:hover, header nav a:focus {
  background: var(--secondary);
  color: #FFF;
}
header img {
  height: 48px;
  margin-right: 16px;
}

.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: #FFF;
  font-size: 2.2rem;
  padding: 7px 16px;
  border-radius: 99px;
  cursor: pointer;
  border: none;
  margin-left: 12px;
  z-index: 1102;
  box-shadow: 0 1px 12px rgba(26,176,122,0.13);
  transition: background 0.14s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover { background: #16845e; }

.mobile-menu {
  position: fixed;
  background: var(--accent);
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1200;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.5,1.8,.4,.94);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  box-shadow: 3px 0 32px rgba(36,43,69,0.13);
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.3s cubic-bezier(.61,1.4,.45,1.01);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  margin: 25px 32px 10px 0;
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1202;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(26,176,122,0.1);
  transition: background 0.16s;
}
.mobile-menu-close:hover {
  background: #16845e;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  margin: 12px 0 0 46px;
}
.mobile-nav a {
  padding: 13px 0 13px 0;
  width: 100%;
  font-size: 1.22rem;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  border-bottom: 1px solid var(--gray);
  border-radius: 0;
  transition: color 0.14s, background 0.12s;
}
.mobile-nav a:hover {
  background: var(--secondary);
  color: #fff;
}

@media (max-width: 1050px) {
  .quick-links, .brand-info, .social-links, .legal-links {
    margin-bottom: 16px;
  }
}
@media (max-width: 860px) {
  header .container { flex-direction: column; gap: 16px; }
  header nav { flex-direction: row; gap: 10px; margin: 12px 0 0 0; }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta.primary { margin-top: 12px; }
}
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu.open {
    display: none !important;
  }
}

/* HERO/INTRO */
main > .section:first-child {
  background: linear-gradient(95deg, #1AB07A 0%, #FFD800 100%);
  background: var(--secondary);
  color: var(--accent);
  border-radius: 0 0 44px 44px;
  box-shadow: 0 3px 24px rgba(36,43,69,0.07);
}
main > .section:first-child h1,
main > .section:first-child h2, 
main > .section:first-child .subheadline {
  color: #fff !important;
}
main > .section:first-child .cta.primary {
  background: #FFD800;
  color: var(--primary);
  border: none;
}
main > .section:first-child .cta.primary:hover {
  background: #fff400;
  color: var(--primary);
}

/* PAGE SECTIONS */
ul, ol {
  margin-left: 22px;
  margin-bottom: 22px;
  font-size: 1rem;
}
ul li {
  margin-bottom: 8px;
  list-style: disc inside;
}
ol li {
  margin-bottom: 8px;
  list-style: decimal inside;
}
.price-info {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.11rem;
  margin-top: 10px;
}

/* CAROUSELS/BLOCKS (if needed later) */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-section {
  max-width: 680px;
  margin-bottom: 16px;
}

/***** FOOTER *****/
footer {
  background: var(--primary);
  color: #fff;
  padding: 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 18px 0 18px;
  width: 100%;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 30px;
  padding: 40px 0 16px 0;
  margin-bottom: 0;
  justify-content: space-between;
}
.brand-info {
  display: flex;
  flex-direction: column;
  max-width: 320px;
  gap: 14px;
}
.brand-info img {
  width: 48px;
  margin-bottom: 9px;
}
.brand-info a { color: var(--secondary); text-decoration: underline; }
.quick-links, .legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-start;
}
.quick-links a, .legal-links a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.95rem;
  transition: color 0.13s;
  opacity: 0.83;
}
.quick-links a:hover, .legal-links a:hover { color: var(--secondary); opacity: 1;}
.social-links {
  display: flex;
  gap: 22px;
  align-items: center;
}
.social-links a img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
  transition: box-shadow 0.17s, background 0.14s;
}
.social-links a:hover img { box-shadow: 0 2px 14px #1AB07A44; background: #ECECEA; }
footer p {
  font-size: 0.98rem;
  color: #eee;
  margin-bottom: 8px;
}

@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    padding: 36px 0 8px 0;
  }
  .brand-info { max-width: 100%; }
}
@media (max-width: 768px) {
  .container, footer .container { padding: 0 10px; }
  .content-wrapper { padding: 0; }
  .text-image-section, .content-grid { flex-direction: column; gap: 18px; }
  .features-grid, .usp-list, .service-detail-list, .testimonials, .card-container, .offer-list {
    flex-direction: column;
    gap: 20px;
  }
  .property-snippet, .testimonial-card { min-width: 0; width: 100%; }
  .features-grid > div, .usp-list > div, .card, .service-detail-list > div { width: 100%; min-width: unset; }
  footer .content-wrapper { padding: 30px 0 12px 0; }
}

/******** PLAYFUL & DYNAMIC EXTRAS ********/
section {
  border-radius: 34px;
  box-shadow: 0 4px 32px rgba(36,43,69,0.07);
  position: relative;
  overflow: visible;
}
section:before {
  content: '';
  position: absolute;
  z-index: 1;
  top: -45px; left: -75px;
  width: 120px; height: 120px;
  background: #FFD800;
  border-radius: 50%;
  opacity: 0.23;
  filter: blur(7px);
  pointer-events: none;
  animation: float-bubble 6s infinite linear alternate;
}
section:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -40px; right: -45px;
  width: 84px; height: 84px;
  background: #1AB07A;
  border-radius: 50%;
  opacity: 0.19;
  filter: blur(3px);
  pointer-events: none;
  animation: float-bubble2 7.5s infinite ease-in-out alternate;
}
@media (max-width: 768px) {
  section:before, section:after { display: none; }
}
@keyframes float-bubble {
  0% { transform: translateY(0) scale(1) rotate(0deg); }
  100% { transform: translateY(14px) scale(1.1) rotate(13deg); }
}
@keyframes float-bubble2 {
  0% { transform: translateY(0) scale(1) rotate(0deg); }
  100% { transform: translateY(-14px) scale(0.96) rotate(-16deg); }
}

/* Playful font for big numbers & subheaders */
h2, h3, .subheadline, .cta, .cta.primary {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.2px;
}
section {
  box-shadow: 0 4px 32px rgba(36,43,69,0.07);
}

/* Animations for interactive elements */
.cta, .property-filters button, .mobile-menu-toggle, .mobile-menu-close, .features-grid > div, .testimonial-card, .property-snippet, .card {
  transition: box-shadow 0.18s, transform 0.15s, background 0.18s, color 0.15s;
}
.cta:active, .property-filters button:active {
  transform: scale(0.98);
}
/* Fun accent dots for playful look */
.content-wrapper h2 {
  position: relative;
}
.content-wrapper h2:after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  height: 8px;
  background: #FFD800;
  border-radius: 6px;
  margin-left: 11px;
  position: relative;
  top: -4px;
  opacity: .77;
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1600;
  width: 100vw;
  background: #FFEFA6;
  color: var(--primary);
  box-shadow: 0 -2px 18px rgba(36,43,69,0.09);
  padding: 20px 10px 20px 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  animation: banner-slidein 0.45s cubic-bezier(.46,1.56,.49,.98) 1;
  font-size: 1.03rem;
}
@keyframes banner-slidein {
  0% { transform: translateY(110%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 14px;
  margin-left: 22px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 26px;
  border: none;
  padding: 8px 18px;
  margin: 0 2px;
  font-size: 1rem;
  background: var(--primary);
  color: #FFD800;
  cursor: pointer;
  transition: background 0.14s, color 0.11s;
  box-shadow: 0 1px 8px rgba(36,43,69,0.07);
}
.cookie-banner button.accept {
  background: var(--secondary);
  color: #fff;
}
.cookie-banner button.settings {
  background: #FFD800;
  color: var(--primary);
}
.cookie-banner button:hover { opacity: .91; background: #A3DF62; color: var(--primary); }
.cookie-banner button.accept:hover { background: #16845e; }
.cookie-banner button.settings:hover { background: #FFC400; color: var(--primary); }

/* --- Cookie Modal --- */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 1700;
  background: rgba(36,43,69,0.19);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein .23s;
}
@keyframes fadein {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 44px rgba(36,43,69,0.14);
  padding: 38px 22px 30px 22px;
  min-width: 340px;
  max-width: 400px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: popup-bounce .34s cubic-bezier(.61,1.7,.47,.93) 1;
}
@keyframes popup-bounce {
  0% { opacity: 0; transform: scale(0.9) translateY(32px); }
  70% { opacity: 1; transform: scale(1.04); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h3 {
  color: var(--secondary);
  margin-bottom: 9px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 7px;
}
.cookie-category label {
  font-size: 1.03rem;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  background: #EEEFF1;
  border-radius: 22px;
  position: relative;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-toggle input {
  opacity: 0; width: 0; height: 0; pointer-events: none;
}
.cookie-toggle span {
  position: absolute;
  top: 2px; left: 2px;
  width: 18px;
  height: 18px;
  background: #FFD800;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(1,1,1,0.04);
  transition: left 0.2s, background 0.16s;
}
.cookie-toggle input:checked + span {
  left: 18px;
  background: var(--secondary);
}
.cookie-modal .actions {
  margin-top: 19px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-modal .actions button {
  padding: 9px 28px;
  font-size: 1rem;
  border-radius: 24px;
  border: none;
  background: var(--secondary);
  color: #fff;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-modal .actions button.secondary {
  background: #FFD800;
  color: var(--primary);
}
.cookie-modal .actions button:hover { background: #16845e; color: #fff; }
.cookie-modal .actions button.secondary:hover { background: #FFC400; color: var(--primary); }
.cookie-modal .close {
  position: absolute;
  top: 8px; right: 10px;
  font-size: 1.65rem;
  color: var(--primary);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal .close:hover { color: var(--secondary); }

@media (max-width: 600px) {
  .cookie-modal { min-width: 90vw; max-width: 97vw; }
}

/******** PLAYFUL DECORATIVE ACCENTS ********/
.cta:after, .cta.primary:after, .cta.secondary:after {
  content: '';
  display: inline-block;
  background: #FFD800;
  width: 9px; height: 9px;
  margin-left: 9px;
  border-radius: 50%;
  position: relative;
  top: -2px;
  animation: accent-pop .88s infinite alternate;
  opacity: .47;
}
@keyframes accent-pop {
  from { transform: scale(1); }
  to   { transform: scale(1.25) rotate(13deg); }
}

/******** SCROLLBAR & SELECTION ********/
::-webkit-scrollbar {
  width: 8px; background: #EEEFF1;
}
::-webkit-scrollbar-thumb {
  background: #1AB07A; border-radius: 10px;
}
::selection {
  background: #FFD800;
  color: #242B45;
}

/******** MISC ********/
hr { border: none; border-top: 1px solid #DDD; margin: 30px 0; }


/**** PRINTING (FOR REPORTS ETC.) ****/
@media print {
  header, nav, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  body { background: #fff !important; }
  main { padding-top: 0; }
}
