/* 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,
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-size: 16px;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F7F6F1;
  color: #334E5A;
  min-height: 100vh;
  line-height: 1.6;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: #334E5A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #D9B47E;
}
ul, ol {
  list-style: none;
}

/* BRAND FONTS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #253846;
  font-weight: 700;
}

h1 { font-size: 2.5rem; line-height: 1.16; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 20px; }
h3 { font-size: 1.4rem; line-height: 1.3; margin-bottom: 16px; }
h4 { font-size: 1.125rem; }
h5, h6 { font-size: 1rem; }

p, li, blockquote {
  font-size: 1rem;
  color: #334E5A;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  margin-bottom: 16px;
}
blockquote {
  border-left: 4px solid #D9B47E;
  padding-left: 20px;
  font-style: italic;
  color: #253846;
  background: #F7F6F1;
  margin-bottom: 12px;
}

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

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

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

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

/* NAVIGATION */
header {
  background: white;
  box-shadow: 0 2px 8px rgba(51,78,90,0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
}
nav > a img {
  height: 40px;
  width: auto;
}
nav ul {
  display: flex;
  align-items: center;
  gap: 20px;
}
nav ul li {
  display: flex;
}
nav ul li a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #334E5A;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
nav ul li a:hover, nav ul li a:focus {
  background: #F7F6F1;
  color: #D9B47E;
}
.cta-button {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  background: #334E5A;
  color: #fff;
  padding: 12px 28px;
  border-radius: 24px;
  font-size: 1rem;
  border: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 3px 10px rgba(51,78,90,0.07);
  cursor: pointer;
  margin-left: 16px;
}
.cta-button.secondary {
  background: #D9B47E;
  color: #334E5A;
}
.cta-button:hover, .cta-button:focus {
  background: #253846;
  color: #fff;
  box-shadow: 0 6px 16px rgba(51,78,90,0.11);
}
.cta-button.secondary:hover, .cta-button.secondary:focus {
  background: #b6975e;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: #334E5A;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  cursor: pointer;
  z-index: 120;
  margin-left: 16px;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #253846;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(51,78,90,0.98);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.3,1.5,.6,1);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 32px;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 2rem;
  margin-left: 28px;
  margin-bottom: 24px;
  cursor: pointer;
  align-self: flex-start;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-left: 40px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 8px 0;
  transition: color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #D9B47E;
}

@media (max-width: 1024px) {
  nav ul {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  nav ul {
    gap: 6px;
  }
  .cta-button {
    margin-left: 6px;
    padding: 10px 18px;
    font-size: 0.95rem;
  }
}
@media (max-width: 768px) {
  nav ul {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  nav {
    padding: 10px 0;
  }
}

/* HERO SECTION (For /) */
.hero {
  background: linear-gradient(95deg,#f7f6f1 75%,#e2e7e9 100%);
  padding: 60px 20px 60px 20px;
  display: flex;
  align-items: center;
  min-height: 360px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  max-width: 570px;
  align-items: flex-start;
  gap: 20px;
}
.hero h1 {
  color: #334E5A;
}
.hero p {
  color: #334E5A;
  font-size: 1.15rem;
}

@media (max-width: 700px) {
  .hero {
    padding: 36px 0 36px 0;
    min-height: 180px;
  }
  .hero h1 {
    font-size: 1.45rem;
    margin-bottom: 16px;
  }
}

/* FLEX & CARD CONTAINERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 14px rgba(51,78,90,0.10);
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 300px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(51,78,90,0.14);
}
.content-grid,
.service-list,
.service-list-detailed {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.service-card {
  background: #fff;
  border: 1px solid #e1e5e8;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(51,78,90,0.08);
  flex: 1 1 270px;
  min-width: 230px;
  max-width: 340px;
  padding: 26px 20px 22px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.18s, border 0.18s;
}
.service-card:hover {
  border: 1.5px solid #D9B47E;
  box-shadow: 0 8px 26px rgba(218,179,124,0.08);
}
.service-price {
  color: #D9B47E;
  font-weight: 700;
  font-size: 1.08rem;
  margin-top: 15px;
  letter-spacing: 0.01em;
}

@media (max-width: 900px) {
  .service-list, .service-list-detailed {
    gap: 14px;
  }
  .service-card {
    min-width: 180px;
    max-width: 100%;
    padding: 19px 12px 16px 12px;
  }
}
@media (max-width: 600px) {
  .service-list, .service-list-detailed {
    flex-direction: column;
    gap: 12px;
  }
  .service-card {
    margin-bottom: 12px;
  }
}

/* Timeline Steps, Value Grid, Feature Grid */
.timeline-steps, .value-grid, .feature-grid, .reference-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  flex-direction: column;
  margin-bottom: 24px;
  padding-left: 0;
}
.timeline-steps li, .value-grid li, .feature-grid li, .reference-list li {
  font-size: 1rem;
  background: #e9eef0;
  color: #334E5A;
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 6px;
  line-height: 1.5;
}
.feature-grid li {
  background: #f4f7fa;
}
.reference-list li {
  background: #F7F6F1;
  color: #253846;
}

@media (min-width: 680px) {
  .timeline-steps, .value-grid, .feature-grid {
    flex-direction: row;
    gap: 18px 24px;
  }
  .timeline-steps li, .value-grid li, .feature-grid li {
    min-width: 220px;
    flex: 1 1 auto;
    margin-bottom: 0;
  }
}

/* Feature Descriptions, Icon Row */
.feature-descriptions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
  margin-bottom: 18px;
}
.icon-row {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 18px;
  margin-bottom: 18px;
}
.icon-row img {
  height: 44px;
  width: 44px;
}
@media (max-width: 660px) {
  .icon-row {
    gap: 14px;
  }
  .icon-row img {
    height: 32px;
    width: 32px;
  }
  .feature-descriptions {
    gap: 8px;
  }
}

/* Testimonials */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 20px;
  background: #fff;
  border: 1px solid #e4e8ea;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(51,78,90,0.10);
  margin-bottom: 20px;
  max-width: 390px;
  transition: box-shadow 0.17s, border 0.18s, background 0.15s;
}
.testimonial-card blockquote {
  color: #334E5A;
  background: #f7fafe;
  border-left: 4px solid #D9B47E;
  padding-left: 14px;
  margin-bottom: 0;
}
.testimonial-meta {
  color: #253846;
  font-weight: 500;
  font-size: 0.99rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.stars {
  color: #D9B47E;
  letter-spacing: 1px;
  font-size: 1.12rem;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(51,78,90,0.12);
  border: 1.5px solid #D9B47E;
  background: #f9fbfd;
}
@media (max-width: 800px) {
  .testimonial-list {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    max-width: 100%;
  }
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 26px;
}
.faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1.5px 8px rgba(51,78,90,0.07);
  padding: 22px 18px;
  border-left: 4px solid #D9B47E;
  margin-bottom: 0;
  transition: box-shadow 0.17s, border-color 0.18s;
}
.faq-item:hover {
  box-shadow: 0 4px 18px rgba(218,179,124,0.07);
  border-left: 4px solid #334E5A;
}
.faq-item h2 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.faq-item p {
  font-size: 1rem;
  color: #334E5A;
}

/* Contact */
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-details li {
  font-size: 1.09rem;
  padding-left: 0;
  color: #253846;
}
.map-placeholder {
  margin-top: 18px;
  background: #e9eef0;
  border-radius: 10px;
  color: #334E5A;
  padding: 18px 16px;
  text-align: center;
}

/* BUTTONS & LINKS GENERAL */
button, .cta-button {
  outline: none;
}
button:focus, .cta-button:focus {
  box-shadow: 0 0 0 2px #D9B47E44;
}

/* FOOTER */
footer {
  background: #334E5A;
  color: #fff;
  margin-top: 60px;
  padding: 28px 0 18px 0;
  font-size: 0.99rem;
}
.footer-nav {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #fff;
  opacity: 0.9;
  font-size: 0.98rem;
  transition: color 0.18s, opacity 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #D9B47E;
  opacity: 1;
}
.footer-info {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
  opacity: 0.91;
}
@media (max-width: 600px) {
  .footer-nav, .footer-info {
    flex-direction: column;
    gap: 6px;
  }
}

/* UTILITY LAYOUTS */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .content-wrapper {
    gap: 18px;
    padding: 0;
  }
  .section,
  section {
    padding: 32px 8px;
    margin-bottom: 40px;
  }
}
@media (max-width: 380px) {
  html { font-size: 14px; }
  .cta-button {
    font-size: 0.9rem;
    padding: 8px 12px;
  }
}

/* FEATURE ITEM UTILITY */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f4f7fa;
  padding: 14px 15px;
  border-radius: 8px;
  margin-bottom: 10px;
}

/* CARDS AND CARDUALS */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

/* MODALS AND COOKIE CONSENT */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 12000;
  background: #fff;
  border-top: 3.5px solid #D9B47E;
  box-shadow: 0 -2px 18px rgba(51,78,90,0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 1rem;
  animation: cookie-fadein 0.6s cubic-bezier(.31,1.26,.59,1);
}
@keyframes cookie-fadein {
  from {transform: translateY(70px); opacity: 0.1;}
  to {transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #253846;
  margin-bottom: 0;
  max-width: 540px;
  flex: 1 0 280px;
}
.cookie-banner .cookie-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-btn {
  border: none;
  border-radius: 20px;
  padding: 9px 22px;
  background: #334E5A;
  color: #fff;
  font-family: 'Montserrat', Arial;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cookie-btn.secondary {
  background: #D9B47E;
  color: #334E5A;
}
.cookie-btn.settings {
  background: #F7F6F1;
  color: #334E5A;
  border: 1.5px solid #D9B47E;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #253846;
  color: #fff;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #b6975e;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #f3eeea;
  color: #D9B47E;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 10px 14px 10px;
    gap: 16px;
  }
}

.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(51,78,90,0.52);
  z-index: 12010;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: cookie-fadein 0.34s cubic-bezier(.28,1.36,.60,1);
}
.cookie-modal-content {
  background: #fff;
  border-radius: 14px;
  max-width: 410px;
  width: 94vw;
  box-shadow: 0 2px 15px rgba(51,78,90,0.18);
  padding: 30px 28px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: fadeIn 0.4s;
}
@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.94);}
  to {opacity: 1; transform: scale(1);}
}
.cookie-modal-content h3 {
  color: #334E5A;
  font-size: 1.2rem;
  margin-bottom: 7px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f4f7fa;
  border-radius: 8px;
  padding: 11px 13px;
}
.cookie-category label {
  font-size: 1rem;
  color: #334E5A;
  font-family: 'Roboto', Arial;
  flex: 1;
}
.cookie-switch {
  min-width: 38px;
  position: relative;
  display: inline-block;
  width: 40px;
  height: 22px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e4e8ea;
  border-radius: 22px;
  transition: background 0.14s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #D9B47E;
}
.cookie-slider:before {
  content: '';
  position: absolute;
  left: 4px;
  bottom: 4.5px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.17s;
  box-shadow: 0 1px 4px rgba(51,78,90,.05);
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(17px);
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #334E5A;
  font-size: 1.5rem;
  position: absolute;
  right: 18px;
  top: 14px;
  cursor: pointer;
  opacity: 0.8;
}
.cookie-modal-close:hover { opacity: 1; color: #D9B47E; }

/* Miscellaneous Enhancements */
::-webkit-input-placeholder { color: #a0a7ab; }
::-moz-placeholder { color: #a0a7ab; }
:-ms-input-placeholder { color: #a0a7ab; }
::placeholder { color: #a0a7ab; }

/* Accessibility outline */
:focus-visible {
  outline: 2px solid #D9B47E;
  outline-offset: 1.5px;
}

/* Animations for micro-interactions */
.cta-button,
.cookie-btn,
.service-card,
.card,
.testimonial-card,
.faq-item {
  transition: box-shadow 0.18s, border 0.18s, background 0.18s, transform 0.18s;
}
.cta-button:active, .cookie-btn:active {
  transform: scale(0.96);
}

/* Hide visually (for toggled items, JS will use this) */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Responsive tweaks for font sizes */
@media (max-width: 500px) {
  h1 { font-size: 1.32rem; }
  h2 { font-size: 1.09rem; }
  h3 { font-size: 1.01rem; }
}
