/* CSS RESET & BASE STYLES (Normalize & Reset) */
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 {
  font-size: 16px;
}
body {
  background: #fff8f2;
  color: #264653;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.66;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
svg {
  display: inline-block;
  vertical-align: middle;
}
a {
  color: #2a9d8f;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
a:hover, a:focus {
  color: #f4a261;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}
strong {
  font-weight: 600;
}

/* TYPOGRAPHY SCALE */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #264653;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #264653;
  margin-bottom: 20px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: #264653;
  margin-bottom: 16px;
}
h4, .h4 {
  font-size: 1.125rem;
  font-weight: 500;
  color: #264653;
  margin-bottom: 14px;
}
p {
  font-size: 1rem;
  color: #264653;
  margin-bottom: 16px;
  line-height: 1.7;
}

/* LAYOUT CONTAINERS */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(244, 162, 97, 0.09), 0 1.5px 5px rgba(38, 70, 83, 0.05);
  transition: box-shadow 0.28s;
}

@media (max-width: 900px) {
  .section, section { padding: 32px 10px; margin-bottom: 36px; }
}
@media (max-width: 600px) {
  .section, section { padding: 24px 3vw; margin-bottom: 30px; }
}

/* CARD LAYOUTS & SPACING */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #faf6f1;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(244,162,97,0.10);
  transition: box-shadow 0.22s, transform 0.14s;
  padding: 24px;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 28px rgba(244,162,97,0.14), 0 1.5px 9px rgba(38,70,83,0.07);
  transform: translateY(-2px) scale(1.02);
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #ffeede;
  border-radius: 14px;
  padding: 22px 16px;
  box-shadow: 0 2px 7px rgba(244,162,97,.08);
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff8f2;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(42,157,143,0.09);
  margin-bottom: 24px;
  max-width: 650px;
  transition: box-shadow 0.18s;
}
.testimonial-card .testimonial-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-card p {
  margin-bottom: 10px;
  font-size: 1.12rem;
  color: #264653;
}
.testimonial-meta {
  font-size: 0.98rem;
  color: #2a9d8f;
  font-weight: 500;
  margin-bottom: 6px;
}
.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

/* BUTTONS - Brand style */
.btn-primary {
  background: #f4a261;
  color: #264653;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 24px;
  padding: 14px 32px;
  font-size: 1.13rem;
  transition: background 0.19s, box-shadow 0.15s, transform 0.19s;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(244,162,97,0.12);
  letter-spacing: 0.01em;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #faab64;
  color: #264653;
  box-shadow: 0 4px 16px rgba(244,162,97,0.18);
  transform: translateY(-2px) scale(1.02);
}
.btn-secondary {
  background: #2a9d8f;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  border: none;
  border-radius: 24px;
  padding: 13px 28px;
  font-size: 1.05rem;
  transition: background 0.16s, box-shadow 0.14s, transform 0.16s;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(42,157,143,0.12);
  margin-top: 10px;
  letter-spacing: 0.01em;
  display: inline-block;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #227a69;
  box-shadow: 0 3px 12px rgba(42,157,143,0.17);
  color: #fff;
  transform: scale(1.02);
}

/* FORM ELEMENTS (future proof) */
input, textarea, select {
  padding: 12px 16px;
  border-radius: 10px;
  border: 1.4px solid #e3e1de;
  font-size: 1rem;
  background: #fcfaf8;
  color: #264653;
  margin-bottom: 18px;
  width: 100%;
  font-family: 'Roboto', Arial, sans-serif;
  transition: border 0.17s, box-shadow 0.17s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: #f4a261;
  box-shadow: 0 1px 7px rgba(244,162,97,.13);
}

/* NAVIGATION & HEADER */
header {
  background: #fffceb;
  box-shadow: 0 2px 8px rgba(38,70,83,0.05);
  position: relative;
  z-index: 12;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}
.main-nav > a img {
  height: 40px;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}
.main-nav ul li a {
  padding: 8px 14px;
  color: #264653;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  transition: background 0.15s, color 0.12s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: #f4a261;
  color: #fff;
}
.main-nav .btn-primary {
  margin-left: 18px;
}
.mobile-menu-toggle {
  display: none;
  background: #f4a261;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1.5px 8px rgba(244,162,97,0.17);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #faab64;
  transform: scale(1.06);
}

/* MOBILE NAVIGATION STYLES */
.mobile-menu {
  position: fixed;
  top: 0; right: 0; left: 0; bottom: 0;
  background: rgba(255,252,235,0.95);
  z-index: 1300;
  transition: transform 0.34s cubic-bezier(.78,-0.12,.29,1.11);
  transform: translateX(100%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  box-shadow: 0 4px 20px rgba(244,162,97,0.19);
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.44s cubic-bezier(.78,-0.12,.29,1.11);
}
.mobile-menu-close {
  background: #f4a261;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  margin: 22px 22px 16px 0;
  align-items: center; justify-content: center;
  display: flex;
  cursor: pointer;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #faab64;
}
.mobile-nav {
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 28px 38px 32px 32px;
  font-size: 1.28rem;
  background: none;
}
.mobile-nav a {
  width: 100%;
  padding: 14px 0 14px 4px;
  color: #264653;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 14px;
  font-weight: 500;
  transition: background 0.16s;
  font-size: 1.13rem;
  background: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #f7c695;
  color: #264653;
}

@media (max-width: 1050px) {
  .main-nav ul, .main-nav .btn-primary { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (min-width: 1051px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* FOOTER STYLES */
footer {
  background: #fffceb;
  border-top: 1.5px solid #f1e8d9;
  padding: 34px 0 20px;
  margin-top: 40px;
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #2a9d8f;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  border-radius: 10px;
  padding: 3px 10px;
  transition: background 0.18s, color 0.12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #f4a261;
  color: #fff;
}
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1rem;
  color: #264653;
}
.footer-brand img {
  height: 28px;
  width: 28px;
}

/* CONTACT INFO & MAP */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-info ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.03rem;
}
.address-block {
  background: #efefec;
  border-radius: 10px;
  padding: 13px 16px 13px 18px;
  color: #264653;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 14px;
}
.map-embed {
  margin-top: 10px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(42,157,143,0.13);
}
.map-embed img {
  max-height: 260px;
  width: 100%;
}

/* SERVICE CARDS & PRICING */
.service-card {
  background: #f3faf9;
  border-radius: 18px;
  margin-bottom: 24px;
  box-shadow: 0 2px 9px rgba(42,157,143,0.10);
  padding: 24px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow 0.19s, transform 0.16s;
}
.service-card h3 {
  margin-bottom: 11px;
  font-size: 1.25rem;
  color: #264653;
}
.service-card .price {
  color: #2a9d8f;
  font-weight: 600;
  font-size: 1.14rem;
  margin-top: 10px;
}
.service-card:hover {
  box-shadow: 0 6px 17px rgba(42,157,143,0.16);
  transform: translateY(-2px) scale(1.01);
}

/* LIST STYLING */
ul li {
  margin-bottom: 6px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.62;
}
ul li img {
  margin-right: 6px;
  height: 28px;
  width: 28px;
  min-width: 28px;
}

/* SECTIONS & CONTENT WRAPPER */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ADDRESS BLOCKS, MAPS, and Info*/
.address-block, .map-embed {
  margin-bottom: 14px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container {
    width: 99%;
    padding: 0 2vw;
    max-width: unset;
  }
  .main-nav {
    flex-direction: row;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
  .main-nav > a img { height: 32px; }
  .footer-brand img { height: 23px; width: 23px; }
}

/* VISUAL HIERARCHY & SUBTLE ANIMATION */
.section, section, .card, .testimonial-card, .service-card, .feature-item {
  transition: box-shadow 0.21s, transform 0.16s;
}
.section:hover, section:hover, .card:hover, .testimonial-card:hover, .service-card:hover, .feature-item:hover {
  box-shadow: 0 6px 24px rgba(244,162,97,0.13);
  transform: translateY(-2px) scale(1.01);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  z-index: 1500;
  background: #fffceb;
  color: #264653;
  box-shadow: 0 -2px 12px rgba(244,162,97,0.13);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 26px 16px 26px 10px;
  font-size: 1.02rem;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  animation: cookiefadein 0.88s ease; 
}
@keyframes cookiefadein { from { opacity: 0; transform: translateY(48px); } to { opacity: 1; transform: none; } }
.cookie-banner p {
  margin: 0;
  color: #264653;
}
.cookie-banner .cookie-btn {
  margin: 0 9px;
  padding: 11px 18px;
  border-radius: 18px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: 500;
  transition: background 0.15s, color 0.13s, box-shadow 0.13s;
  cursor: pointer;
  min-width: 44px;
  box-shadow: 0 1px 4px rgba(244,162,97,0.07);
  outline: none;
}
.cookie-banner .cookie-btn.accept {
  background: #f4a261;
  color: #264653;
}
.cookie-banner .cookie-btn.accept:hover { background: #faab64; color: #264653; }
.cookie-banner .cookie-btn.reject {
  background: #e76f51;
  color: #fff;
}
.cookie-banner .cookie-btn.reject:hover {
  background: #c8583c;
  color: #fff;
}
.cookie-banner .cookie-btn.settings {
  background: #2a9d8f;
  color: #fff;
}
.cookie-banner .cookie-btn.settings:hover {
  background: #227a69;
}
@media (max-width: 650px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 16px; padding: 16px 8px 18px 12px; font-size: 0.98rem; }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(38,70,83,0.22);
  z-index: 1860;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadein 0.33s;
}
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal {
  background: #fffceb;
  border-radius: 28px;
  padding: 42px 30px 36px 30px;
  max-width: 96vw;
  width: 390px;
  box-shadow: 0 6px 22px rgba(244,162,97,0.19);
  color: #264653;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 1900;
  animation: modalfadein 0.38s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes modalfadein { from { opacity: 0; transform: translateY(50px); } to { opacity: 1; transform: none; } }
.cookie-modal h2, .cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #264653; font-size: 1.19rem; font-weight: 600; margin-bottom: 6px;
}
.cookie-cookie-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-cookie-item {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 14px;
  background: #faf6f1;
  border-radius: 12px;
  padding: 11px 14px 11px 16px;
  font-size: 0.99rem;
  line-height: 1.44;
}
.cookie-cookie-item .toggle {
  min-width: 38px;
}
/* Toggle Switch (for cookies modal) */
.toggle {
  width: 44px;
  height: 24px;
  border-radius: 12px;
  background: #e0eeda;
  position: relative;
  cursor: pointer;
  transition: background 0.19s;
  display: inline-block;
}
.toggle input { display: none; }
.toggle-slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(42,157,143,0.11);
  transition: left 0.17s, background 0.19s;
}
.toggle.checked { background: #2a9d8f; }
.toggle.checked .toggle-slider { left: 22px; background: #2a9d8f; }
.toggle.disabled {
  background: #ffeede;
  cursor: not-allowed;
  opacity: .68;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal-actions .cookie-btn {
  min-width: 80px;
  font-size: 1.01rem;
  padding: 10px 18px;
  border-radius: 12px;
}
@media (max-width: 430px) {
  .cookie-modal {
    padding: 20px 5vw 20px 5vw;
    width: 98vw;
  }
}

/* Hide cookie modal by default, should be handled by JS */
.cookie-banner, .cookie-modal-overlay { display: none; }
.cookie-banner.show, .cookie-modal-overlay.show { display: flex; }

/* ACCESSIBILITY & FOCUS */
:focus-visible { outline: 2.5px solid #f4a261; outline-offset: 1px; }

/* MICRO INTERACTIONS & HOVER states */
.btn-primary:active, .btn-secondary:active, .mobile-menu-toggle:active, .mobile-menu-close:active, .cookie-btn:active {
  filter: brightness(0.95);
  transform: scale(0.98);
}

/* UTILITIES */
.fw-bold { font-weight: bold; }
.bg-primary { background: #264653 !important; color: #fff !important; }
.bg-secondary { background: #2a9d8f !important; color: #fff !important; }
.bg-accent { background: #f4a261 !important; color: #264653 !important; }
.rounded { border-radius: 18px !important; }
.shadow { box-shadow: 0 3px 18px rgba(244,162,97,0.19) !important; }

/* PRINT styles */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  body { background: #fff; }
  .section, section { box-shadow: none; background: #fff; }
}
