/* RESET & BASE TYPOGRAPHY ---------------------------------------------------- */

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #23313B;
  background: #F6F4F0;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  margin-bottom: 24px;
  padding-left: 24px;
}
ul li, ol li {
  margin-bottom: 12px;
  line-height: 1.5;
}
a {
  color: #537765;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #A9C5B5;
  outline-offset: 2px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #23313B;
  letter-spacing: 0.01em;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.text-section h1,
.text-section h2,
.text-section h3 {
  margin-top: 12px;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  width: 100%;
  margin: 0 auto;
}

.text-section {
  margin-bottom: 20px;
}

/* BRAND COLORS -------------------------------------------------------------- */
:root {
  --primary: #23313B;
  --secondary: #A9C5B5;
  --accent: #F6F4F0;
  --forest: #537765;
  --earth: #918168;
  --sand: #ede7db;
  --card-bg: #fcfbf7;
  --shadow: rgba(35,49,59,0.05);
  --shadow-strong: rgba(35,49,59,0.12);
  --success: #68a05e;
  --danger: #d87c58;
  --btn-hover: #81ab97;
}

/* LAYOUT & FLEXBOX PATTERNS ------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: var(--card-bg);
  border-radius: 22px;
  box-shadow: 0 6px 32px var(--shadow), 0 1px 3px var(--shadow-strong);
  padding: 32px 24px;
  transition: box-shadow 0.22s, transform 0.22s;
  position: relative;
}
.card:hover {
  box-shadow: 0 12px 40px var(--shadow-strong), 0 4px 8px var(--shadow);
  transform: translateY(-4px) scale(1.015);
}
.content-grid, .feature-grid, .district-list, .property-categories, .article-list {
  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 28px;
  background: #fff;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px var(--shadow-strong);
  min-width: 240px;
  flex: 1 1 320px;
  max-width: 520px;
}
.testimonial-card p {
  color: #374747;
  font-size: 1.07rem;
}
.testimonial-card span {
  color: var(--primary);
  font-weight: 600;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature {
  flex: 1 1 220px;
  min-width: 200px;
  background: var(--card-bg);
  border-radius: 22px;
  box-shadow: 0 2px 16px var(--shadow);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature img {
  margin-bottom: 10px;
  height: 38px;
}
.feature:hover {
  box-shadow: 0 8px 36px var(--shadow-strong);
  transform: translateY(-2px) scale(1.02);
}

.property-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.property-categories li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--sand);
  border-radius: 16px;
  font-size: 1rem;
  padding: 12px 18px;
  box-shadow: 0 1px 7px var(--shadow);
  font-weight: 500;
  color: var(--primary);
}

.district-list {
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
}
.district-list li {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 16px 20px;
  color: var(--forest);
  font-size: 1.07rem;
  font-weight: 500;
  box-shadow: 0 1px 7px var(--shadow);
}

.article-list {
  flex-direction: column;
  gap: 16px;
}
.article-list li {
  background: var(--card-bg);
  border-radius: 18px;
  padding: 16px 22px;
  box-shadow: 0 1px 8px var(--shadow);
}

.highlighted-tips, .key-attractions {
  background: #e8f0ea;
  border-radius: 16px;
  padding: 18px 22px 8px 22px;
  margin: 14px 0 0 0;
  box-shadow: 0 1px 9px var(--shadow);
  color: var(--primary);
}
.key-attractions ul {
  margin: 10px 0 5px 0;
}

/* HEADER + NAVIGATION ------------------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 12px var(--shadow);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  padding: 16px 20px;
}
header img {
  height: 46px;
  min-width: 118px;
  margin-right: 24px;
}
header nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex: 1 1 auto;
}
header nav a {
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 500;
  color: var(--primary);
  padding: 6px 15px;
  border-radius: 20px;
  transition: background 0.13s, color 0.18s;
  font-size: 1.04rem;
}
header nav a:hover, header nav a:focus {
  background: var(--secondary);
  color: #fff;
}
.cta-btn {
  background: var(--secondary);
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  padding: 10px 24px;
  border-radius: 32px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 1px 7px var(--shadow);
  transition: background 0.2s, color 0.2s, transform 0.12s, box-shadow 0.2s;
  margin-left: 16px;
  line-height: 1.1;
  letter-spacing: 0.01em;
  display: inline-block;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--btn-hover);
  color: var(--primary);
  transform: translateY(-1.5px) scale(1.03);
  box-shadow: 0 2px 14px var(--shadow-strong);
}

/* MOBILE NAVIGATION --------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  border: none;
  border-radius: 7px;
  padding: 8px 15px;
  font-size: 1.45rem;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 1px 7px var(--shadow);
  margin-left: 12px;
  transition: background 0.15s, box-shadow 0.13s, color 0.15s;
  z-index: 15;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--forest);
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,49,59, 0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 22px 0 24px;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.5,.05,.1,1);
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  color: #fff;
  font-size: 2rem;
  border: none;
  background: transparent;
  align-self: flex-end;
  padding: 12px 12px 6px 12px;
  cursor: pointer;
  margin-bottom: 16px;
  border-radius: 8px;
  transition: background 0.15s;
  z-index: 1001;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #1d282e;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 22px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.14rem;
  padding: 14px 0 14px 5px;
  border-radius: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  transition: background 0.15s, color 0.2s;
  line-height: 1.2;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--secondary);
  color: var(--primary);
}

@media (max-width: 1024px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  header .container {
    gap: 12px;
  }
  header nav {
    gap: 9px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 8px;
    justify-content: space-between;
    align-items: center;
    padding: 11px 10px;
  }
  header nav {
    display: none;
  }
  .cta-btn {
    margin-left: 2vw;
    font-size: 1rem;
    padding: 9px 18px;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* RESPONSIVE FLEX ADJUSTMENTS ----------------------------------------------- */
@media (max-width: 900px) {
  .feature-grid, .content-grid, .card-container {
    gap: 16px;
  }
  .feature, .testimonial-card, .card {
    padding: 18px 10px;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .feature-grid, .property-categories, .district-list, .article-list {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .testimonial-card, .feature, .card {
    min-width: 0;
    max-width: 100%;
  }
  .card, .testimonial-card {
    margin-bottom: 16px;
    padding: 16px 7px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.57rem; }
  h2 { font-size: 1.19rem; }
  .property-categories li, .district-list li, .article-list li, .feature {
    font-size: 1rem;
    padding: 12px 7px;
  }
  .section, main .section {
    padding: 24px 0 18px 0;
  }
}

/* BUTTONS & LINKS ----------------------------------------------------------- */
button, .cta-btn {
  border: none;
  outline: none;
  box-sizing: border-box;
}
button:focus-visible, .cta-btn:focus-visible {
  outline: 2.5px solid var(--secondary);
  outline-offset: 2.5px;
}

/* CARDS --------------------------------------------------------------------- */
.card {
  margin-bottom: 20px;
  border: none;
}

/* TESTIMONIALS -------------------------------------------------------------- */
.testimonial-card {
  background: #fff;
  border-left: 7px solid var(--forest);
  box-shadow: 0 2px 15px var(--shadow-strong);
  color: #23313B;
  position: relative;
  min-height: 140px;
}
.testimonial-card img {
  height: 26px;
  width: 26px;
  display: inline-block;
  margin-right: 2.5px;
  vertical-align: middle;
}
.testimonial-card strong {
  color: var(--forest);
}

/* FORMS --------------------------------------------------------------------- */
input[type="text"], input[type="email"], textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--secondary);
  padding: 11px 14px;
  background: #fff;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 18px;
  transition: border-color 0.16s;
}
input:focus, textarea:focus {
  border-color: var(--forest);
  outline: none;
}
label {
  font-size: 1.05rem;
  margin-bottom: 8px;
  display: block;
  font-weight: 600;
}

/* FOOTER -------------------------------------------------------------------- */
footer {
  background: var(--primary);
  color: #fff;
  padding: 38px 0 28px 0;
  margin-top: 48px;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}
footer img {
  height: 44px;
  margin-bottom: 8px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: #fff;
  padding: 3px 0;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  transition: color 0.2s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--secondary);
  text-decoration: underline;
}
.footer-contact {
  font-size: 0.97rem;
}
.footer-contact p {
  margin-bottom: 7px;
  display: flex;
  align-items: center;
}
.footer-contact img {
  width: 20px;
  margin-right: 8px;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}

/* ORGANIC VISUALS/TEXTURES (SUBTLE) ----------------------------------------- */
.section, .feature, .card, .testimonial-card, .highlighted-tips, .key-attractions, .property-categories li, .district-list li {
  /* Soft organic background pattern using SVG base64 or subtle shadow overflowed */
  background-image: url('data:image/svg+xml;utf8,<svg opacity="0.06" width="140" height="43" viewBox="0 0 140 43" fill="none" xmlns="http://www.w3.org/2000/svg"><ellipse cx="70" cy="21.5" rx="70" ry="21.5" fill="%23A9C5B5"/></svg>');
  background-repeat: no-repeat;
  background-size: 80% 45px;
  background-position: 50% 100%;
}

/* NATURE-ORGANIC EFFECTS (ACCENTS/SUBTLE SHAPES) --------------------------- */
.feature, .card, .testimonial-card {
  border-bottom-left-radius: 44px 30px;
  border-top-right-radius: 44px 33px;
  border-top-left-radius: 18px 32px;
  border-bottom-right-radius: 22px 15px;
}

/* ANIMATIONS & MICRO-INTERACTIONS ------------------------------------------- */
.cta-btn, button, .feature, .card, .testimonial-card, .property-categories li {
  transition: 
    background 0.23s,
    color 0.19s,
    box-shadow 0.26s,
    transform 0.17s;
}
.card:active, .feature:active, .testimonial-card:active {
  transform: scale(0.99);
}

/* COOKIE CONSENT BANNER ----------------------------------------------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right:0; bottom: 0;
  width: 100vw;
  z-index: 10600;
  background: #23313B;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: center;
  padding: 23px 15px 20px 15px;
  box-shadow: 0 -4px 32px var(--shadow-strong);
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.25s, transform 0.38s;
}
.cookie-consent-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-consent-banner .cookie-btn {
  margin-left: 15px;
  margin-right: 4px;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 20px;
  border: none;
  padding: 8px 21px;
  color: #fff;
  background: var(--secondary);
  box-shadow: 0 2px 8px var(--shadow);
  cursor: pointer;
  transition: background 0.22s, color 0.19s, transform .16s;
}
.cookie-consent-banner .cookie-btn:not(:last-child) {
  margin-right: 9px;
}
.cookie-consent-banner .cookie-btn.cookie-settings {
  background: var(--forest);
}
.cookie-consent-banner .cookie-btn.accept {
  background: var(--success);
}
.cookie-consent-banner .cookie-btn.reject {
  background: var(--danger);
}
.cookie-consent-banner .cookie-btn:hover, .cookie-consent-banner .cookie-btn:focus {
  filter: brightness(1.05);
  transform: scale(1.03);
  outline: 2px solid #fff;
}

/* Cookie Modal -------------------------------------------------------------- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom:0;
  z-index: 10801;
  background: rgba(51,60,63,0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s;
}
.cookie-modal-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: var(--primary);
  padding: 38px 28px 20px 28px;
  border-radius: 24px;
  box-shadow: 0 8px 44px var(--shadow-strong);
  min-width: 330px;
  max-width: 94vw;
  max-height: 86vh;
  overflow-y: auto;
  animation: popscale 0.33s cubic-bezier(.5,.13,.17,1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@keyframes popscale {
  0% { transform: scale(.82); opacity: 0.6; }
  75% { transform: scale(1.03); opacity: 1; }
  100% { transform: scale(1); }
}
.cookie-modal h2 {
  font-size: 1.22rem;
  color: var(--forest);
  margin-bottom: 8px;
}
.cookie-category {
  padding: 10px 0 8px 0;
  border-bottom: 1px solid #e9e7e1;
  margin-bottom: 11px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.1rem;
}
.cookie-switch {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.cookie-switch input[type=checkbox] {
  display: none;
}
.cookie-switch label {
  display: block;
  width: 40px;
  height: 21px;
  background: #c6e0d6;
  border-radius: 22px;
  position: relative;
  margin-right: 9px;
  transition: background 0.18s;
}
.cookie-switch input[type=checkbox]:checked + label {
  background: var(--forest);
}
.cookie-switch label:before {
  content: "";
  position: absolute;
  left: 3px; top: 3px;
  width: 15px; height: 15px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.15s;
}
.cookie-switch input[type=checkbox]:checked + label:before {
  transform: translateX(18px);
}
.cookie-modal .close-cookie-modal {
  margin-top: 16px;
  font-family: 'Playfair Display', serif;
  background: var(--secondary);
  color: #fff;
  border-radius: 20px;
  padding: 9px 22px;
  border: none;
  align-self: flex-end;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s;
}
.cookie-modal .close-cookie-modal:hover, .cookie-modal .close-cookie-modal:focus {
  background: var(--forest);
}

/* UTILITY CLASSES ----------------------------------------------------------- */
.mt-0     { margin-top: 0!important;    }
.mb-0     { margin-bottom: 0!important; }
.mt-12    { margin-top: 12px!important; }
.mb-12    { margin-bottom: 12px!important; }
.mt-24    { margin-top: 24px!important; }
.mb-24    { margin-bottom: 24px!important; }
.pt-24    { padding-top: 24px!important; }
.pb-24    { padding-bottom: 24px!important; }
.gap-20   { gap: 20px!important; }
.flex-row { display: flex; flex-direction: row!important; gap: 16px; }
.flex-col { display: flex; flex-direction: column!important; gap: 12px; }
.text-center { text-align: center!important; }

/* SELECTION/HIGHLIGHT ------------------------------------------------------- */
::selection {
  background: var(--secondary);
  color: #fff;
}

/* SCROLLBAR (Webkit) -------------------------------------------------------- */
body::-webkit-scrollbar {
  width: 11px;
  background: #E6EEE4;
}
body::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 8px;
}

/* FONT IMPORTS (Playfair Display, Lato) ------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;500;700&family=Playfair+Display:wght@700&display=swap');
