/* ========================
   CSS RESET & NORMALIZATION
   ======================== */
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;
}

html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  line-height: 1.5;
  background: #F5F3EB;
  color: #212359;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #212359;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #6BC6BB;
  outline-offset: 2px;
}


/* ========================
   TYPOGRAPHY
   ======================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #212359;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.18;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.21;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}
p, ul, ol {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #2F3048;
}
strong {
  color: #212359;
}

.subheadline {
  font-size: 1.2rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #444;
  margin-bottom: 20px;
}


/* ========================
   LAYOUT & CONTAINERS
   ======================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
  display: flex;
  flex-direction: column;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(212,188,155,0.09);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.map-embed {
  margin-top: 18px;
}

.map-description {
  font-size: 1rem;
  color: #694333;
  background: #F5E8E5;
  border-radius: 10px;
  padding: 14px 16px;
}

/* ======================
   FLEX UTILITY CLASSES
   =====================*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 0 10px 0;
  list-style: none;
}
.feature-grid li {
  background: #FFF9F4;
  border-radius: 17px;
  box-shadow: 0 2px 8px rgba(248, 165, 111, 0.07);
  padding: 22px 20px 18px 20px;
  min-width: 220px;
  min-height: 60px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  color: #4F2B18;
  margin-bottom: 0;
  transition: box-shadow 0.2s, transform 0.15s;
}
.feature-grid li img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffebda;
  padding: 5px;
}
.feature-grid li:hover {
  box-shadow: 0 6px 20px 0 rgba(212,188,155,0.13);
  transform: translateY(-3px) scale(1.02);
  background: #FFF4E8;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
}
.service-list li {
  background: #FDF8F4;
  border-radius: 16px;
  padding: 18px 18px 12px 18px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 1px 5px rgba(215,153,85,0.05);
  position: relative;
}
.service-list .price {
  position: absolute;
  right: 18px;
  top: 18px;
  background: #FFDCD2;
  color: #943d1c;
  font-weight: bold;
  font-size: 1.05rem;
  border-radius: 1em;
  padding: 2px 16px;
  box-shadow: 0 2px 8px 0 rgba(255,182,140,0.08);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 26px;
}
.service-grid > div {
  flex: 1 1 260px;
  background: #FFF9F4;
  border-radius: 16px;
  padding: 28px 22px 32px 22px;
  min-width: 220px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
  box-shadow: 0 2px 12px 0 rgba(212,188,155,0.09);
  transition: box-shadow 0.21s, transform 0.13s;
}
.service-grid > div .price {
  margin-top: 8px;
  align-self: flex-end;
  color: #943d1c;
  background: #FFDCD2;
  padding: 3px 15px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 1rem;
}
.service-grid > div:hover {
  box-shadow: 0 7px 30px 0 rgba(212,150,135,0.13);
  transform: translateY(-2px) scale(1.019);
  background: #FFF4E8;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(242,169,116,0.06);
  padding: 30px 28px;
  min-width: 250px;
  flex: 1 1 250px;
  transition: box-shadow 0.2s, transform 0.13s;
}
.card:hover {
  box-shadow: 0 8px 24px 0 rgba(233, 154, 86, 0.13);
  transform: translateY(-3px);
}

.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;
}
.text-image-section img {
  border-radius: 16px;
  max-width: 420px;
  flex: 1 1 300px;
  box-shadow: 0 8px 28px 0 rgba(245, 183, 118, 0.09);
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #FFF0EA;
  border-radius: 16px;
  box-shadow: 0 3px 26px 0 rgba(227, 169, 123, 0.09);
  padding: 20px;
  margin-bottom: 20px;
  color: #2B2B34;
  max-width: 700px;
  transition: box-shadow 0.24s, background 0.17s;
}
.testimonial-card blockquote {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.13rem;
  font-style: italic;
  color: #4A342E;
  margin-right: 20px;
  line-height: 1.7;
  font-weight: 500;
}
.testimonial-card .customer-info {
  font-size: 0.97rem;
  color: #A46649;
  font-family: 'Roboto', Arial, sans-serif;
  font-style: normal;
  font-weight: 400;
  margin-top: 6px;
}
.testimonial-card:hover {
  box-shadow: 0 10px 52px 0 rgba(196, 148, 116, 0.21);
  background: #FFE1D6;
  transform: translateY(-2px) scale(1.01);
}

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

.price-list {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #FFFAF4;
  border-radius: 18px;
  margin-bottom: 18px;
  box-shadow: 0 2px 14px 0 rgba(248,165,111,0.04);
  overflow: hidden;
}
.price-list th,
.price-list td {
  font-size: 1rem;
  padding: 14px 16px;
  border-bottom: 1px solid #F3E0D7;
  text-align: left;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.price-list th {
  background: #FFDCD2;
  color: #943d1c;
  font-weight: 700;
}
.price-list tr:last-child td {
  border-bottom: none;
}


/* ========================
   HEADER & NAVIGATION
   ======================== */
header {
  background: #FFF9F4;
  box-shadow: 0 5px 24px 0 rgba(245, 243, 235, 0.23);
  border-radius: 0 0 22px 22px;
  position: sticky;
  top: 0;
  z-index: 1000;
  margin-bottom: 18px;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 18px 18px 10px 18px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #994E21;
  padding: 7px 13px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s;
}
header nav a:hover {
  background: #FFDCD2;
  color: #212359;
}
header .cta-primary {
  margin-left: 12px;
}

.mobile-menu-toggle {
  background: #FFDCD2;
  border: none;
  color: #B7561F;
  font-size: 2rem;
  padding: 10px 15px;
  border-radius: 16px;
  cursor: pointer;
  display: none;
  transition: background 0.18s, transform 0.15s;
}
.mobile-menu-toggle:hover {
  background: #F5E8E5;
  transform: scale(1.06);
}

/* ========================
   CTA BUTTONS & LINKS
   ======================== */
.cta-primary {
  background: #F59B57;
  color: #212359;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 18px;
  font-size: 1.17rem;
  padding: 14px 33px 12px 33px;
  box-shadow: 0 2px 9px 0 rgba(245,155,87,0.08);
  cursor: pointer;
  margin-top: 18px;
  margin-bottom: 0;
  transition: background 0.15s, color 0.13s, transform 0.16s, box-shadow 0.12s;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: #ffd6c3;
  color: #943d1c;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 22px 0 rgba(245,155,87,0.14);
  text-decoration: none;
}

/* ========================
   FOOTER
   ======================== */
footer {
  background: #F5F3EB;
  padding: 38px 0 24px 0;
  margin-top: 58px;
  font-size: 0.98rem;
  color: #694333;
  border-radius: 20px 20px 0 0;
}
footer .container {
  flex-direction: column;
  gap: 18px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 14px;
}
.footer-links a {
  color: #91411A;
  background: #FFF0EA;
  border-radius: 10px;
  padding: 7px 15px;
  transition: background 0.18s, color 0.18s;
}
.footer-links a:hover {
  background: #FFDCD2;
  color: #212359;
}
.address {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #874C2C;
  font-size: 0.98rem;
}
.social-icons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 10px;
}
.social-icons img {
  width: 32px;
  border-radius: 7px;
  background: #FFDCD2;
  padding: 3px;
  transition: background 0.16s, transform 0.12s;
  box-shadow: 0 1px 6px 0 rgba(245,155,87,0.06);
  cursor: pointer;
}
.social-icons img:hover {
  background: #F5E8E5;
  transform: scale(1.1);
}

/* ==============================
   CONTACT DETAILS + GENERIC LISTS
   ==============================*/
.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 18px;
  color: #783721;
  font-size: 1.05rem;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff6ed;
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 0;
}
.contact-details li img {
  width: 22px;
  height: 22px;
}
.contact-details a {
  color: #91411A;
  text-decoration: underline;
  margin-left: 3px;
}
.contact-details a:hover {
  color: #212359;
}

ul, ol {
  margin-left: 16px;
}
ul li, ol li {
  margin-bottom: 0;
  padding: 0;
}


/* ========================
   MOBILE MENU STYLES
   ======================== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(255, 246, 237, 0.98);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(.25,.8,.25,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 30px;
  padding-right: 16px;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  background: #ffd6c3;
  border: none;
  color: #ad2d2d;
  font-size: 2.2rem;
  padding: 10px 15px;
  border-radius: 16px;
  margin-bottom: 27px;
  margin-right: 2px;
  cursor: pointer;
  transition: background 0.18s, color 0.14s, transform 0.13s;
  z-index: 10002;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F5E8E5;
  color: #693100;
  transform: scale(1.09);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-end;
  padding-right: 24px;
  margin-top: 10px;
}
.mobile-nav a {
  font-size: 1.23rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #212359;
  background: #fff9f2;
  padding: 10px 25px;
  border-radius: 12px;
  margin: 0;
  font-weight: 500;
  box-shadow: 0 2px 10px 0 rgba(245,183,87,0.07);
  transition: background 0.14s, color 0.15s, transform 0.13s;
  min-width: 170px;
  text-align: right;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFDCD2;
  color: #943d1c;
  transform: scale(1.03);
}

/* Hide desktop nav on small screens, show burger */
@media (max-width: 950px) {
  header nav,
  header .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 951px) {
  .mobile-menu {
    display: none !important;
  }
}


/* ========================
   COOKIE CONSENT BANNER
   ======================== */
#cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFF4E8;
  color: #402c1d;
  padding: 18px 16px 14px 16px;
  z-index: 8888;
  box-shadow: 0 -2px 22px 0 rgba(230,161,88,0.14);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-direction: column;
  border-radius: 20px 20px 0 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
  transition: opacity 0.26s, transform 0.32s cubic-bezier(.25,.8,.34,1);
}
#cookie-consent.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
#cookie-consent p {
  font-size: 1.1rem;
  color: #67482A;
  line-height: 1.6;
  margin-bottom: 12px;
}
#cookie-consent .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
#cookie-consent button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  padding: 9px 22px;
  border-radius: 14px;
  border: none;
  background: #F59B57;
  color: #212359;
  font-weight: 600;
  box-shadow: 0 2px 7px 0 rgba(245,155,87,0.07);
  cursor: pointer;
  transition: background 0.15s, color 0.16s, transform 0.12s;
}
#cookie-consent .cookie-settings-btn {
  background: #FFDCD2;
  color: #8e7646;
}
#cookie-consent .cookie-settings-btn:hover {
  background: #fff1e5;
  color: #402c1d;
}
#cookie-consent button:hover, #cookie-consent button:focus {
  background: #ffd6c3;
  color: #943d1c;
  transform: translateY(-1px) scale(1.03);
}

/* COOKIE MODAL */
#cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 99999;
  background: rgba(36,23,9,0.17);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
#cookie-modal.visible {
  opacity: 1;
  pointer-events: all;
}
#cookie-modal .cookie-modal-box {
  background: #FFF9F4;
  padding: 36px 20px 28px 28px;
  border-radius: 20px;
  box-shadow: 0 6px 42px 0 rgba(245,183,87,0.11);
  min-width: 320px;
  max-width: 94vw;
  max-height: 90vh;
}
#cookie-modal h2 {
  font-size: 1.5rem;
  margin-bottom: 18px;
  color: #212359;
}
#cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
#cookie-modal .cookie-cat {
  background: #fff3ec;
  padding: 13px 14px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
}
#cookie-modal .cookie-cat input[type=checkbox] {
  accent-color: #F59B57;
  width: 21px;
  height: 21px;
  margin-right: 8px;
  border-radius: 7px;
}
#cookie-modal .cookie-cat label {
  font-size: 1.07rem;
  color: #5A3A32;
}
#cookie-modal .cookie-cat .essential {
  color: #70A86B;
  font-weight: 500;
}
#cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
#cookie-modal button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.03rem;
  padding: 10px 20px;
  border-radius: 13px;
  border: none;
  background: #F59B57;
  color: #212359;
  font-weight: 600;
  box-shadow: 0 2px 7px 0 rgba(245,155,87,0.06);
  cursor: pointer;
  transition: background 0.13s, color 0.14s, transform 0.12s;
}
#cookie-modal button.secondary {
  background: #FFDCD2;
  color: #943d1c;
}
#cookie-modal button:hover, #cookie-modal button:focus {
  background: #FFDCD2;
  color: #943d1c;
  transform: translateY(-1px) scale(1.03);
}
#cookie-modal .cookie-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  color: #943d1c;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10001;
}
#cookie-modal .cookie-close:hover {
  color: #b43c18;
}


/* =============================
      SPACING & RESPONSIVENESS
   ============================= */
@media (max-width: 1200px) {
  .container {
    max-width: 96vw;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 980px) {
  .service-grid, .feature-grid, .content-grid, .card-container {
    gap: 18px;
  }
  .service-grid > div, .feature-grid li, .card {
    min-width: 170px;
    padding: 18px 10px;
  }
}
@media (max-width: 780px) {
  .container {
    padding-left: 5px;
    padding-right: 5px;
  }
  h1 {
    font-size: 2rem;
    margin-bottom: 14px;
  }
  h2 {
    font-size: 1.4rem;
    margin-bottom: 13px;
  }
  .section, .card {
    padding: 19px 8px;
  }
  .feature-grid li,
  .service-grid > div {
    min-width: 140px;
    font-size: 0.98rem;
  }
}
@media (max-width: 650px) {
  .service-grid, .feature-grid, .content-grid, .card-container {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 8px;
    padding: 17px 7px;
  }
  .card, .section {
    padding: 13px 4px;
    border-radius: 12px;
  }
  .address, .social-icons, .footer-links {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  header .container {
    gap: 10px;
    padding: 7px 4px 7px 4px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.25rem;
  }
  h2 {
    font-size: 1.02rem;
  }
  .cta-primary {
    font-size: 1rem;
    padding: 12px 19px 10px 19px;
  }
}

/* ============
   FLEX DIRECTION ADJUSTMENTS (FOR RESPONSIVENESS)
   =============*/
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .card-container,
  .content-grid,
  .feature-grid,
  .service-grid {
    flex-direction: column;
  }
}

/* ========================
   ANIMATIONS & MICROINTERACTIONS
   ======================== */
.card, .service-grid > div, .feature-grid li, .testimonial-card {
  transition: box-shadow 0.19s, background 0.14s, transform 0.18s;
}
.cta-primary, .footer-links a, .mobile-nav a, .mobile-menu-close, .mobile-menu-toggle, #cookie-consent button, #cookie-modal button {
  transition: background 0.14s, color 0.15s, box-shadow 0.12s, transform 0.17s;
}

/* ========================
   FORM ELEMENTS
   ======================== */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #E8CFBC;
  background: #FFF9F4;
  margin-bottom: 18px;
  resize: vertical;
  transition: border 0.12s, background 0.13s;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border: 1.5px solid #F59B57;
  background: #FFF5EE;
  outline: none;
}
button, input[type="submit"] {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  border: none;
  outline: none;
  cursor: pointer;
}


/***********
  ACCESSIBILITY
**********/
a:focus, .cta-primary:focus, .footer-links a:focus, .mobile-nav a:focus, .mobile-menu-close:focus, .mobile-menu-toggle:focus {
  outline: 2px solid #6BC6BB;
  outline-offset: 1px;
  z-index: 999998;
}

/********************
 * PRINT ADJUSTMENTS *
 ********************/
@media print {
  header, footer, .cta-primary, .mobile-menu, #cookie-consent, #cookie-modal { display: none !important; }
  body { background: #fff !important; color: #212359; }
}
