/* ---------------------------------------------------------
   RESET & BASE STYLES
--------------------------------------------------------- */
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;
  background: linear-gradient(135deg, #F5F2EC 0%, #C09CB7 100%);
  color: #313045;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  min-width: 320px;
  letter-spacing: 0.01em;
  -webkit-text-size-adjust: 100%;
  transition: background 0.6s;
}
img, picture, video, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #C09CB7;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #313045;
  text-decoration: underline;
}
strong {
  font-weight: 600;
  color: #313045;
}
ul, ol {
  margin-left: 1.4em;
  margin-bottom: 1em;
  padding-left: 0.2em;
}
li {
  margin-bottom: 0.4em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: #313045;
  margin-bottom: 0.7em;
}
h1 {
  font-size: 2rem;
  margin-top: 0.1em;
}
h2 {
  font-size: 1.5rem;
}
h3 {
  font-size: 1.15rem;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.text-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(49, 48, 69, 0.09);
  padding: 32px;
  margin-bottom: 32px;
}
.map-placeholder {
  background: #F5F2EC;
  border-radius: 12px;
  padding: 28px;
  min-height: 120px;
  box-shadow: 0 1px 8px 0 rgba(192, 156, 183, 0.10);
}
[tabindex="-1"]:focus {
  outline: 0 !important;
}
::-webkit-input-placeholder { color: #a9a9a9; }
::-moz-placeholder { color: #a9a9a9; }
:-ms-input-placeholder { color: #a9a9a9; }
::placeholder { color: #a9a9a9; }

/* ---------------------------------------------------------
   BRAND FONTS
--------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Playfair+Display:700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lato:400,700&display=swap');

/* ---------------------------------------------------------
   HEADER & MAIN NAVIGATION
--------------------------------------------------------- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 14px 0 rgba(49, 48, 69, 0.04);
  position: relative;
  z-index: 100;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 12px 0;
}
header nav > a {
  display: flex;
  align-items: center;
  margin-right: 12px;
}
header nav img {
  height: 42px;
  min-width: 42px;
}
header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
header nav ul li {
  margin: 0;
}
header nav ul a {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  color: #313045;
  padding: 7px 10px;
  border-radius: 12px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
header nav ul a:hover,
header nav ul a:focus {
  background: #F5F2EC;
  color: #C09CB7;
}
.cta-primary {
  appearance: none;
  display: inline-block;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(90deg, #C09CB7 0%, #313045 100%);
  padding: 10px 28px;
  border: none;
  border-radius: 22px;
  box-shadow: 0 2px 10px 0 rgba(192, 156, 183, 0.10);
  margin-left: 16px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background 0.3s, transform 0.1s, box-shadow 0.3s;
  position: relative;
  z-index: 1;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #313045 0%, #C09CB7 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px 0 rgba(49, 48, 69, 0.08);
}

/* ---------------------------------------------------------
   HERO SECTION
--------------------------------------------------------- */
.hero-section {
  background: linear-gradient(135deg, #C09CB7 2%, #F5F2EC 90%);
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 54px 0 44px 0;
  position: relative;
  margin-bottom: 60px;
}
.hero-section .container {
  align-items: center;
  justify-content: center;
}
.hero-section .content-wrapper {
  align-items: center;
  gap: 24px;
  text-align: center;
}
.hero-section h1 {
  font-size: 2.5rem;
  color: #313045;
  margin-bottom: 0.4em;
  line-height: 1.15;
}
.hero-section p {
  color: #313045;
  font-size: 1.15rem;
}
.hero-section .cta-primary {
  margin-top: 10px;
}

/* ---------------------------------------------------------
   GENERAL SECTION SPACING & LAYOUTS
--------------------------------------------------------- */
.section, .features-section, .services-section, .testimonials-section, .cta-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .services-grid, .features-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(49, 48, 69, 0.09);
  padding: 24px;
  min-width: 240px;
}
.card-content,
.service-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 6px 0 rgba(192, 156, 183, 0.08);
  padding: 28px 18px;
  min-width: 220px;
}
.service-card strong {
  color: #C09CB7;
  font-size: 1.02em;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 700;
}
.features-grid {
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: linear-gradient(120deg, #F5F2EC 85%, #C09CB7 100%);
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 1px 10px 0 rgba(192, 156, 183, 0.06);
  min-width: 200px;
  flex: 1 1 180px;
  transition: transform 0.21s, box-shadow 0.21s;
}
.feature-item img {
  max-width: 38px;
  margin-bottom: 8px;
}
.feature-item h3 {
  margin: 0.3em 0 0.1em;
  font-size: 1.15rem;
  color: #313045;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 4px 20px 0 rgba(49,48,69,0.09);
  transform: translateY(-3px) scale(1.03);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.service-card {
  flex: 1 1 260px;
  max-width: 300px;
  cursor: default;
  box-shadow: 0 2px 12px 0 rgba(49, 48, 69, 0.07);
  transition: box-shadow 0.22s, transform 0.22s;
  min-height: 180px;
}
.service-card:hover, .service-card:focus-within {
  transform: translateY(-5px) scale(1.025);
  box-shadow: 0 8px 28px 0 rgba(49,48,69,0.13);
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* Section: Testimonials (Reviews) */
.testimonials-section {
  background: linear-gradient(120deg, #fff 80%, #F5F2EC 100%);
  border-radius: 28px;
  box-shadow: 0 2px 12px 0 rgba(49, 48, 69, 0.07);
}
.testimonials-section .container {
  align-items: center;
}
.testimonials-section h2 {
  text-align: left;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 28px;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(49, 48, 69, 0.06);
  max-width: 520px;
  color: #313045;
}
.testimonial-card p {
  font-size: 1.07rem;
  color: #313045;
  margin-bottom: 0.3em;
  font-family: 'Lato', Arial, sans-serif;
}
.testimonial-card strong {
  font-size: 1rem;
  color: #C09CB7;
  font-family: 'Lato', Arial, sans-serif;
  letter-spacing: 0.01em;
}
.testimonial-card:hover, .testimonial-card:focus-within{
  box-shadow: 0 4px 22px 0 rgba(192, 156, 183, 0.14);
  transform: scale(1.01);
}

.cta-section {
  padding: 36px 0 48px;
  background: linear-gradient(270deg, #C09CB7 10%, #fff 80%);
  border-radius: 22px;
  box-shadow: 0 2px 12px 0 rgba(192, 156, 183, 0.07);
  margin-bottom: 0;
}
.cta-section h2 {
  color: #313045;
}
.cta-section .cta-primary {
  margin-top: 18px;
  font-size: 1.07rem;
}

/* ---------------------------------------------------------
   FOOTER
--------------------------------------------------------- */
footer {
  background: #313045;
  color: #fff;
  padding: 32px 0 0 0;
  margin-top: 60px;
}
footer nav {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer nav ul {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}
footer nav a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 9px;
  transition: background 0.2s, color 0.2s;
}
footer nav a:hover,
footer nav a:focus {
  background: #C09CB7;
  color: #313045;
}
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 30px 20px 16px 20px;
  font-size: 0.98rem;
  color: #fff;
}
.footer-info img {
  display: block;
  margin-bottom: 8px;
  width: 46px;
}

/* ---------------------------------------------------------
   MOBILE MENU
--------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #313045;
  padding: 8px 15px;
  cursor: pointer;
  z-index: 2200;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2600;
  box-shadow: 0 3px 40px 0 rgba(49,48,69,0.35);
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.72,.03,.39,1.18);
  overflow-y: auto;
  padding: 0 0 40px 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 0 0;
  background: none;
  border: none;
  color: #313045;
  font-size: 2.1rem;
  cursor: pointer;
  z-index: 2610;
  line-height: 1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
  padding: 28px 32px 0 32px;
}
.mobile-nav a {
  color: #313045;
  font-size: 1.17rem;
  font-family: 'Lato', Arial, sans-serif;
  font-weight: 500;
  padding: 10px 0;
  border-radius: 10px;
  width: 100%;
  transition: background 0.21s, color 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F5F2EC;
  color: #C09CB7;
}

/* ---------------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
--------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #313045;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  z-index: 2800;
  box-shadow: 0 -1px 18px 0 rgba(49, 48, 69, 0.17);
  font-size: 1rem;
  gap: 26px;
  transition: transform 0.44s cubic-bezier(.68,.11,.34,1.18);
  transform: translateY(100%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner.visible {
  transform: translateY(0);
  pointer-events: all;
  opacity: 1;
}
.cookie-banner button {
  margin-left: 14px;
  font-size: 1rem;
  font-family: 'Lato', Arial, sans-serif;
  color: #fff;
  background: #C09CB7;
  border: none;
  border-radius: 14px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.19s, color 0.19s;
  box-shadow: 0 1px 6px rgba(192,156,183,0.07);
}
.cookie-banner .cookie-settings-btn {
  background: transparent;
  color: #C09CB7;
  border: 1.5px solid #C09CB7;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #fff;
  color: #313045;
}

.cookie-modal-overlay {
  background: rgba(49,48,69,0.15);
  z-index: 3000;
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #313045;
  border-radius: 22px;
  box-shadow: 0 8px 40px 0 rgba(49,48,69,0.19);
  padding: 36px 28px 28px 28px;
  max-width: 400px;
  width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: fadeInScale 0.42s cubic-bezier(.68,.11,.34,1.18);
}
@keyframes fadeInScale {
  from { opacity:0; transform: scale(0.96); }
  to   { opacity:1; transform: scale(1); }
}
.cookie-modal h2 {
  font-size: 1.37rem;
  color: #313045;
  margin-bottom: 0.4em;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.39rem;
  color: #313045;
  cursor: pointer;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 1.04rem;
  border-bottom: 1px solid #F5F2EC;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-toggle {
  accent-color: #C09CB7;
  width: 22px;
  height: 22px;
  vertical-align: middle;
}
.cookie-toggle[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.cookie-modal-actions button {
  width: 100%;
  font-size: 1rem;
  font-family: 'Lato', Arial, sans-serif;
  border-radius: 12px;
  border: none;
  background: #C09CB7;
  color: #fff;
  padding: 12px 0;
  font-weight: 600;
  transition: background 0.18s, color 0.18s;
  box-shadow: 0 1px 6px rgba(192,156,183,0.09);
}
.cookie-modal-actions button:hover,
.cookie-modal-actions button:focus {
  background: #313045;
  color: #fff;
}

/* ---------------------------------------------------------
   TRUST SIGNALS IN CONTACT PAGE
--------------------------------------------------------- */
.trust-signals {
  margin: 18px 0 8px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.trust-signals img {
  vertical-align: middle;
  margin-right: 8px;
  height: 22px;
  width: 22px;
}
.trust-signals p {
  font-size: 1.02rem;
  color: #313045;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ---------------------------------------------------------
   RESPONSIVE DESIGN
--------------------------------------------------------- */
@media (max-width: 1150px) {
  .container {
    max-width: 94vw;
  }
}
@media (max-width: 900px) {
  .service-card, .feature-item {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: 140px;
  }
  .features-grid, .services-grid {
    gap: 16px;
  }
  .testimonials-section {
    border-radius: 18px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    max-width: 100vw;
    padding: 0 10px;
  }
  .content-wrapper, .cta-section .content-wrapper {
    padding: 0;
    gap: 16px;
  }
  .section, .features-section, .services-section, .testimonials-section, .cta-section {
    padding: 30px 8px;
    margin-bottom: 36px;
  }
  .text-section {
    padding: 16px 7px;
  }
  .hero-section .content-wrapper {
    padding: 0 5px;
    gap: 18px;
  }
  .card-container, .features-grid, .services-grid, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item, .service-card, .card {
    padding: 18px 10px;
  }
  .testimonial-card {
    padding: 14px 10px;
    font-size: 0.99rem;
    max-width: 100vw;
  }
  .hero-section {
    padding: 32px 0 22px 0;
    min-height: unset;
  }
  .cta-section {
    border-radius: 11px;
    padding: 10px 0 25px;
  }
  .footer-info {
    padding: 20px 5px 10px 5px;
    font-size: 0.90rem;
  }
  .map-placeholder {
    padding: 12px 6px;
    font-size: 0.97rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 670px) {
  header nav ul,
  header nav .cta-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header nav {
    padding: 16px 0 8px 0;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.15rem; }
  .cta-primary { font-size: 1rem; padding: 8px 16px; }
  footer nav ul { gap: 12px; font-size: 0.95rem; }
  .footer-info img { width: 38px; }
}

/* ---------------------------------------------------------
   UTILITY CLASSES & MICRO-INTERACTIONS
--------------------------------------------------------- */
.gap-24 { gap: 24px !important; }
.align-center { align-items: center !important; }
.rounded-18 { border-radius: 18px !important; }
.shadow-md { box-shadow: 0 2px 18px 0 rgba(49,48,69,0.09) !important; }
.m-t-24 { margin-top: 24px !important; }
.m-b-12 { margin-bottom: 12px !important; }
.m-b-24 { margin-bottom: 24px !important; }

/* Animations for button micro-interaction */
button, .cta-primary {
  outline: none;
  will-change: transform, box-shadow;
}
button:active, .cta-primary:active {
  transform: scale(0.96);
  box-shadow: 0 1px 4px 0 rgba(49,48,69,0.11);
}

/* ---------------------------------------------------------
   CUSTOM SCROLLBARS FOR MODERN TOUCH
--------------------------------------------------------- */
::-webkit-scrollbar { width: 8px; background: #eee; }
::-webkit-scrollbar-thumb { background: #C09CB7; border-radius: 18px; }
::-webkit-scrollbar-thumb:hover { background: #313045; }

/* Hide scrollbars on modal overlay */
.cookie-modal-overlay { scrollbar-width: none; -ms-overflow-style: none; }
.cookie-modal-overlay::-webkit-scrollbar { display: none; }

/* ---------------------------------------------------------
   FINAL: ENSURE NO OVERLAPPING & PROPER SPACING
--------------------------------------------------------- */
.card, .service-card, .feature-item, .testimonial-card {
  margin-bottom: 20px;
}
.section > .container, .features-section > .container, .services-section > .container, .testimonials-section > .container, .cta-section > .container {
  gap: 20px;
}

/* DENSE LIST STYLES FOR POLICY PAGES */
.policy-page ul, .policy-page ol {
  margin-left: 1.2em;
  padding-left: 0.2em;
  margin-bottom: 1.1em;
}
.policy-page li {
  margin-bottom: 0.7em;
  color: #313045;
}

/* Policy / legal h1, h2 spacing */
.policy-page h1, .policy-page h2, .policy-page h3 {
  margin-bottom: 0.5em;
  margin-top: 1.2em;
}

/* ---------------------------------------------------------
   END
--------------------------------------------------------- */
