/* CSS 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F8F7F4;
  min-height: 100vh;
  color: #243046;
}
html {
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul, ol {
  list-style-position: inside;
}

/* BRAND PALETTE & FONTS */
:root {
  --primary: #243046;
  --secondary: #BC985B;
  --accent: #F6F3ED;
  --pastel-blue: #BFD8EF;
  --pastel-mint: #CFF1E3;
  --pastel-pink: #F6C6CB;
  --pastel-lavender: #D7D2FB;
  --pastel-yellow: #FFF4C2;
  --box-shadow: 0 2px 24px rgba(36,48,70,0.05), 0 1.5px 8px rgba(36,48,70,0.09);
  --radius: 18px;
  --container-width: 1100px;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&family=Playfair+Display:wght@400;600;700&display=swap');

body, html {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 400;
  background: linear-gradient(135deg, #F6F3ED 0%, #E1EEFA 100%);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.4rem; margin-bottom: 20px; }
h2 { font-size: 1.8rem; margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 14px; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 10px; font-weight: 600; }
p, .subtitle, ul, li, ol { font-size: 1rem; color: #384862; line-height: 1.7; }
p.subtitle { font-size: 1.15rem; color: #53607A; margin-bottom: 18px; }
.small { font-size: 0.95rem; color: #5D6780; }
strong { font-weight: 600; }

/* LAYOUT CONTAINER */
.container {
  max-width: var(--container-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* HEADER - BRAND & NAVIGATION */
header {
  background: rgba(255,255,255,0.85);
  box-shadow: 0 2px 20px 0 rgba(36,48,70,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo img {
  height: 44px;
  width: auto;
  border-radius: 6px;
}
.main-nav {
  display: flex;
  gap: 16px;
  margin-left: 36px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 12px;
  transition: background 0.25s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--pastel-blue);
  color: var(--secondary);
}
.btn.primary {
  background: linear-gradient(90deg, #CFF1E3 0%, #F6C6CB 100%);
  color: var(--primary);
  border: none;
  border-radius: 13px;
  padding: 13px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.07rem;
  margin-left: auto;
  margin-right: 0;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(36,48,70,0.06);
  transition: background 0.2s, box-shadow 0.2s, color 0.18s;
  outline: none;
  letter-spacing: 0.02em;
}
.btn.primary:hover, .btn.primary:focus {
  background: linear-gradient(90deg, #D7D2FB 10%, #BFD8EF 90%);
  color: var(--secondary);
  box-shadow: 0 4px 16px 0 rgba(36,48,70,0.10);
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  background: var(--pastel-blue);
  color: var(--primary);
  border: none;
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 1.7rem;
  transition: background 0.2s, color 0.2s;
  margin-left: 18px;
  cursor: pointer;
  z-index: 120;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--secondary);
  color: #fff;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(245, 247, 252, 0.94);
  backdrop-filter: blur(4px);
  z-index: 2002;
  width: 100vw;
  height: 100vh;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.36s cubic-bezier(.31,1.27,.49,.91), opacity 0.28s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 22px;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: var(--pastel-pink);
  color: var(--primary);
  border: none;
  font-size: 2.1rem;
  padding: 5px 14px;
  border-radius: 10px;
  margin-bottom: 12px;
  align-self: flex-end;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 16px;
}
.mobile-nav a {
  padding: 13px 12px;
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 12px;
  color: var(--primary);
  background: transparent;
  transition: background 0.19s, color 0.15s;
  font-weight: 500;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--pastel-blue);
  color: var(--secondary);
}

/* ===================== SECTIONS, CARDS, LAYOUTS ==================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

.content-wrapper, .text-section, .cta-block {
  padding: 0;
  background: none;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--box-shadow);
  position: relative;
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 3px 26px 0 rgba(188,152,91,0.14), 0 0.5px 10px rgba(36,48,70,0.09);
  z-index: 2;
}
.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: 14px;
  padding: 20px;
  background: linear-gradient(110deg, #F6F3ED 70%, #FFF4C2 100%);
  border-radius: 18px;
  box-shadow: 0 3px 24px 0 rgba(188, 152, 91, 0.17);
  margin-bottom: 20px;
  max-width: 510px;
  min-width: 240px;
  color: #283756;
  position: relative;
  border: 1.2px solid #eddcba;
  transition: box-shadow 0.16s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 38px 0 rgba(188, 152, 91, 0.22);
  border-color: var(--secondary);
}
.testimonial-name {
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.02em;
  color: var(--secondary);
}
.star-rating {
  color: #FFD700;
  font-size: 1.18rem;
  letter-spacing: 1px;
}

.cta-block {
  background: linear-gradient(98deg, #bff3de 15%, #F6C6CB 85%);
  border-radius: var(--radius);
  box-shadow: 0 2px 32px 0 rgba(36,48,70,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  padding: 38px 24px 36px 24px;
  margin-top: 16px;
  margin-bottom: 20px;
}
.cta-block h2,
.cta-block p {
  text-align: center;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* USP/FEATURES LAYOUTS */
.usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 12px;
  margin-top: 18px;
  padding-left: 0;
}
.usp-list li {
  background: #fff;
  border-radius: 13px;
  box-shadow: var(--box-shadow);
  padding: 18px 19px;
  font-size: 1rem;
  color: #384862;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 250px;
  flex: 1 1 260px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.usp-list img {
  height: 30px;
  width: 30px;
  margin-right: 8px;
}
@media (max-width: 1100px) {
  .usp-list li { min-width: 180px; font-size: 0.95rem; }
}

/* SERVICE HIGHLIGHTS & LISTS */
.service-highlights, .property-teasers, .guide-list, .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 13px;
  padding-left: 0;
}
.service-highlights li, .property-teasers li, .guide-list li, .service-cards li {
  background: #fff;
  border-radius: 13px;
  box-shadow: var(--box-shadow);
  padding: 19px 20px;
  color: #243046;
  font-size: 1rem;
  flex: 1 1 260px;
  margin-bottom: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  position: relative;
  transition: box-shadow 0.18s, border-color 0.16s;
}
.service-cards li {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-cards li .price {
  color: var(--secondary);
  margin-top: 5px;
  font-weight: 600;
}
.service-highlights strong, .guide-list strong, .property-teasers strong {
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
}
.property-teasers img {
  width: 28px;
  height: 28px;
  margin-right: 10px;
  vertical-align: middle;
}

.benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
  padding-left: 0;
}
.benefit-list li {
  background: var(--pastel-mint);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--primary);
  font-size: 0.97rem;
  flex: 1 1 210px;
  margin-bottom: 20px;
}

/* FOOTER */
footer {
  background: linear-gradient(90deg, #F6F3ED 85%, #E1EEFA 100%);
  border-top: 1.5px solid #e7e1cf;
  margin-top: 80px;
  padding: 38px 0 0 0;
  font-size: 1rem;
  color: #384862;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.footer-logo img {
  height: 49px;
  width: auto;
  margin-bottom: 6px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  margin: 8px 0 2px 0;
}
.footer-nav a {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.18s, color 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
  background: var(--pastel-pink);
}
.footer-info {
  font-size: 0.98rem;
  text-align: center;
  color: #53607A;
  line-height: 1.75;
}
.copyrignt, .copyright {
  font-size: 0.91rem;
  color: #acabb7;
  padding: 12px 0 22px 0;
  letter-spacing: 0.01em;
  text-align: center;
}

/* ===================== RESPONSIVE (MOBILE-FIRST) ==================== */
@media (max-width: 980px) {
  .container {
    max-width: 95vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  h1 { font-size: 2rem; }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .btn.primary { margin-left: 0; margin-right: 0; }
  section { margin-bottom: 36px; padding: 28px 4px 28px 4px; }
  .cta-block { padding: 28px 6px 22px 6px; }
  .usp-list, .service-highlights, .property-teasers, .guide-list, .service-cards, .benefit-list {
    flex-direction: column;
    gap: 16px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .footer-nav { flex-direction: column; gap: 8px; }
  footer .container { gap: 18px; }
}

@media (max-width: 500px) {
  h1 { font-size: 1.52rem; }
  h2 { font-size: 1.13rem; }
  p, .footer-info { font-size: 0.98rem; }
  .testimonial-card, .card { padding: 13px 8px 10px 8px; }
  .btn.primary { padding: 10px 17px; font-size: 0.98rem; }
  section { padding: 13px 2px 15px 2px; }
}

/* ===================== ANIMATIONS & MICRO-INTERACTIONS ==================== */
.btn, .main-nav a, .footer-nav a, .mobile-nav a {
  transition: background 0.18s, color 0.14s, box-shadow 0.18s, border-color 0.16s;
}
.card, .service-cards li, .property-teasers li, .guide-list li {
  transition: box-shadow 0.18s, border-color 0.16s, background 0.22s;
}
.cta-block, .testimonial-card {
  transition: box-shadow 0.18s, border-color 0.16s, background 0.22s;
}

/* ===================== FLEXBOX LAYOUTS ==================== */
/* already specified per layout classes, see above */

/* ===================== FORMS, INPUTS, LINKS ==================== */
input, textarea, select {
  border: 1px solid #c1c9db;
  border-radius: 9px;
  padding: 12px 10px;
  font-size: 1rem;
  margin-bottom: 18px;
  width: 100%;
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(90deg,#fff 84%,#eef5fa 100%);
  box-shadow: 0 1.5px 6px 0 rgba(36,48,70,.04);
  transition: border 0.17s, box-shadow 0.17s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--secondary);
  box-shadow: 0 2px 10px 0 rgba(188,152,91,0.16);
  outline: none;
}

/* ===================== COOKIE CONSENT BANNER ==================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: linear-gradient(90deg, #fff 76%, #F6C6CB 100%);
  box-shadow: 0 -2px 24px 0 rgba(36,48,70,0.08);
  padding: 22px 9vw 22px 18px;
  z-index: 9999;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  border-radius: 14px 14px 0 0;
  transition: transform 0.27s cubic-bezier(.67,1,.48,.8), opacity 0.18s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-banner-message {
  flex: 3 1 auto;
  font-size: 1rem;
  color: #243046;
}
.cookie-banner .cookie-banner-actions {
  display: flex;
  gap: 18px;
  flex: 1 0 auto;
  align-items: center;
}
.cookie-banner .cookie-btn {
  border: none;
  border-radius: 10px;
  padding: 10px 24px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.19s, color 0.16s, box-shadow 0.14s;
  cursor: pointer;
  margin-right: 0;
}
.cookie-btn.accept {
  background: var(--pastel-mint);
  color: var(--primary);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--secondary);
  color: #fff;
}
.cookie-btn.reject {
  background: var(--pastel-pink);
  color: var(--primary);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #caa5b3;
  color: #fff;
}
.cookie-btn.settings {
  background: var(--pastel-lavender);
  color: var(--primary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--secondary);
  color: #fff;
}
@media (max-width: 650px) {
  .cookie-banner { flex-direction: column; gap: 14px; padding: 14px 6vw 14px 6px; font-size: 0.95rem; }
  .cookie-banner .cookie-banner-actions { gap: 8px; }
}

/* ===================== COOKIE PREFERENCES MODAL ==================== */
.cookie-modal-overlay {
  position: fixed;
  top:0;left:0;right:0;bottom:0;
  background: rgba(50,60,75,0.24);
  z-index: 13000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.cookie-modal-overlay.open { opacity: 1; pointer-events: auto; }
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 420px;
  width: 95vw;
  padding: 36px 24px 22px 24px;
  box-shadow: 0 6px 48px 0 rgba(44,46,71,.18);
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  animation: cookieFadeIn 0.38s cubic-bezier(.61,1.16,.56,1.12);
}
@keyframes cookieFadeIn { from { opacity:0; transform: scale(0.93);} to {opacity:1;transform: scale(1);}}
.cookie-modal h3 { font-family: 'Playfair Display', serif; font-size: 1.22rem; }
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  background: var(--pastel-blue);
  border-radius: 10px;
  padding: 10px 17px;
}
.cookie-modal .cookie-category.essential {
  background: var(--pastel-mint);
  opacity: 0.85;
}
.cookie-modal .category-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary);
}
.cookie-modal .category-toggle {
  pointer-events: none;
  color: #93bf80;
}
.cookie-modal .toggle-switch {
  appearance: none;
  width: 38px;
  height: 20px;
  background: #ddd;
  border-radius: 12px;
  position: relative;
  outline: none;
  transition: background 0.15s;
  cursor: pointer;
}
.cookie-modal .toggle-switch:checked {
  background: var(--secondary);
}
.cookie-modal .toggle-switch::before {
  content: '';
  position: absolute;
  left: 3px; top: 2.5px;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 6px #80819c0a;
  transition: left 0.15s;
}
.cookie-modal .toggle-switch:checked::before {
  left: 20px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 17px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 10px; right: 18px;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.45rem;
  cursor: pointer;
  border-radius: 7px;
  padding: 2px 8px;
  transition: background 0.12s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: var(--pastel-pink);
  color: var(--secondary);
}

/* ===================== MICRO-ELEMENTS & UTILITIES ==================== */
.text-section {
  margin-top: 13px;
  margin-bottom: 22px;
  max-width: 830px;
}
.text-section ul,
.text-section ol {
  margin: 12px 0 0 14px;
  padding-left: 20px;
}
.text-section li ul, .text-section li ol {
  margin-top: 6px;
}
.text-section a {
  color: var(--secondary);
  text-decoration: underline;
  transition: color 0.13s;
}
.text-section a:hover, .text-section a:focus {
  color: #bda86a;
}
@media (max-width: 650px) {
  .text-section { padding-left: 1.5px; padding-right: 1.5px; }
}

/* Animate fade-in for main hero content */
.content-wrapper h1, .content-wrapper .subtitle, .content-wrapper > p, .content-wrapper .btn.primary {
  opacity: 0;
  transform: translateY(14px);
  animation: fadeInUp 0.6s cubic-bezier(.48,1.32,.48,1.08) forwards;
}
.content-wrapper h1 { animation-delay: 0.03s; }
.content-wrapper .subtitle { animation-delay: 0.15s; }
.content-wrapper > p { animation-delay: 0.21s; }
.content-wrapper .btn.primary { animation-delay: 0.31s; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}

/* ===================== SCROLLBAR ==================== */
::-webkit-scrollbar {
  width: 10px;
  background: #E1EEFA;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #BFD8EF;
  border-radius: 8px;
}

/* ===================== Z-INDEX CONTROL ==================== */
header { z-index: 1000; }
.mobile-menu { z-index: 2002; }
.cookie-banner { z-index: 9999; }
.cookie-modal-overlay { z-index: 13000; }

/* ===================== END OF FILE ==================== */
