/* =========================================================
   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,
main, 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 { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  line-height: 1.55;
  background: #FFF8F2;
  color: #284F2D;
  font-family: 'Open Sans', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #28684F; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #F8B34E; text-decoration: underline; }
ul, ol {
  list-style-position: outside;
  padding-left: 1.4em;
  margin-bottom: 16px;
}
main { flex: 1 0 auto; }

/* =========================================================
   Brand Fonts and Color Variables (Fallbacks for safety)
   ========================================================= */
:root {
  --primary: #284F2D;
  --secondary: #F8B34E;
  --accent: #FFFFFF;
  --creative1: #FF6B00;
  --creative2: #3AB492;
  --creative3: #FEDE70;
  --creative4: #F8647A;
}

@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

/* =========================================================
   Utilities
   ========================================================= */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 24px 0 rgba(40, 79, 45, 0.05), 0 1.5px 6px 0 rgba(248, 179, 78, 0.04);
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.text-section {
  margin-bottom: 20px;
  padding: 0;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 13px 0 rgba(40,79,45,0.10);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover { transform: translateY(-4px) scale(1.03); box-shadow: 0 8px 22px 0 rgba(248, 179, 78, 0.15); }
.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: 20px;
  background: #FEDE70;
  color: #26340F;
  padding: 20px;
  border-left: 8px solid #F8647A;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px 0 rgba(40,79,45,0.07);
  transition: box-shadow 0.3s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(248,179,78,0.15);
  transform: translateY(-2px) scale(1.015);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =========================================================
   Typography
   ========================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.16;
  color: #284F2D;
}
h1 { font-size: 2.4rem; font-weight: 900;  color: #3AB492; text-shadow: 1px 2px 0 #F8B34E; }
h2 { font-size: 2rem; font-weight: 800; color: #FF6B00; margin-bottom: 8px; }
h3 { font-size: 1.3rem; font-weight: 700; color: #284F2D; }
h4 { font-size: 1.1rem; }
p, li, a, button, input {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #284F2D;
  line-height: 1.7;
}
strong {
  font-weight: 700;
  color: #3AB492;
}
em, i { font-style: italic; color: #F8647A; }

/* Headings with custom artistic underline */
h2:after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #F8B34E;
  border-radius: 2px;
  margin-top: 8px;
}

/* Unique accent drop for display text */
h1::before {
  content: '';
  display: inline-block;
  width: 16px; height: 16px;
  background: #F8647A;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
  box-shadow: 0 4px 10px #F8B34E6a;
  position: relative;
  top: -3px;
}

/* Artistic font accents for main-cta */
.cta-btn, .secondary-cta-btn {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  border-radius: 36px;
  padding: 14px 34px;
  background: linear-gradient(90deg, #F8B34E 70%, #FF6B00 100%);
  color: #284F2D;
  box-shadow: 0 1px 6px #F8B34E44;
  border: 0;
  margin-top: 6px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.25s, color 0.18s;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #FF6B00 60%, #F8B34E 100%);
  color: #fff;
  box-shadow: 0 8px 24px #F8647A33;
}
.secondary-cta-btn {
  background: #284F2D;
  color: #fff;
  border: 2px solid #F8B34E;
}
.secondary-cta-btn:hover {
  background: #F8B34E;
  color: #284F2D;
  border: 2px solid #284F2D;
}

/* Star ratings artistic style */
.star-rating {
  font-size: 1.2rem;
  color: #F8B34E;
  font-weight: 700;
  text-shadow: 0 1px 0 #FFF7E1;
  letter-spacing: 2px;
  margin-bottom: 2px;
}

/* Input fields */
input[type="text"], input[type="email"], textarea {
  padding: 12px 16px;
  border: 2px solid #F8B34E;
  border-radius: 18px;
  font-size: 1rem;
  outline: none;
  margin-bottom: 16px;
  background: #fffaf3;
  color: #284F2D;
  transition: border 0.14s, box-shadow 0.17s;
  box-shadow: 0 1px 4px #F8B34E14;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #3AB492;
  box-shadow: 0 2px 12px #3AB49229;
}

/* =========================================================
   Artistic Details
   ========================================================= */
.section {
  position: relative;
  overflow: visible;
}
.section::before {
  content: '';
  display: block;
  position: absolute;
  top: -30px; left: 15px;
  width: 36px; height: 36px;
  background: #FF6B00;
  border-radius: 50%;
  opacity: 0.14;
  z-index: 0;
}
.section::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -30px; right: 25px;
  width: 32px; height: 32px;
  background: #3AB492;
  border-radius: 50%;
  opacity: 0.09;
  z-index: 0;
}

.content-wrapper, .footer-top, .footer-bottom, .footer-nav, .contact-details {
  position: relative;
  z-index: 2;
}

.map-placeholder {
  width: 100%;
  max-width: 400px;
  background: repeating-linear-gradient(135deg, #FFF7E1, #FFF7E1 12px, #F8B34E 12px, #F8B34E 14px);
  color: #999;
  text-align: center;
  padding: 32px;
  border-radius: 18px;
  font-size: 1rem;
  margin-bottom: 12px;
  border: 2px dashed #F8B34E;
  min-height: 40px;
}

/* =========================================================
   Header/Nav Styles
   ========================================================= */
header {
  background: #284F2D;
  box-shadow: 0 2px 32px 0 rgba(40,79,45,0.09);
  position: relative;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
  flex-wrap: wrap;
}
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.main-nav a {
  color: #fff;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  padding: 4px 12px;
  border-radius: 9px;
  transition: background 0.18s, color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F8B34E;
  color: #284F2D;
}
.main-nav .cta-btn {
  margin-left: 12px;
  background: linear-gradient(90deg, #F8B34E 70%, #FF6B00 100%);
  color: #284F2D;
}
.main-nav .cta-btn:hover { color: #fff; }

/* Logo sizing */
header .container > a img {
  height: 42px;
  width: auto;
  margin-right: 10px;
}

/* Hide menu toggle on desktop */
.mobile-menu-toggle { display: none; }

/* =========================================================
   Mobile Menu
   ========================================================= */
.mobile-menu {
  position: fixed;
  top: 0; right: 0; left: 0; bottom: 0;
  background: rgba(40, 79, 45, 0.90);
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.36,.13,.57,1.07);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: -8px 0 32px #0002;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 28px 24px 16px 0;
  align-self: flex-end;
  transition: color 0.17s;
  z-index: 102;
}
.mobile-menu-close:hover { color: #F8B34E; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100vw;
  max-width: 350px;
  background: #FFFFFF;
  padding: 36px 30px;
  border-radius:  36px 0 0 36px;
  box-shadow: -5px 0 24px #F8B34E15;
}
.mobile-nav a {
  color: #284F2D;
  font-size: 1.15rem;
  padding: 12px;
  border-radius: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background 0.14s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus { background: #F8B34E; color: #fff; }
.mobile-nav .cta-btn { background: #3AB492; color: #fff; }

/* Burger menu toggle */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    padding: 7px 12px 7px 12px;
    margin-left: 6px;
    border-radius: 11px;
    transition: background 0.13s, color 0.17s;
    z-index: 98;
  }
  .mobile-menu-toggle:hover { background: #FEDE70; color: #284F2D; }
}

/* =========================================================
   Hero Section
   ========================================================= */
.hero {
  background: linear-gradient(90deg, #FEDE70 40%, #F8B34E 100%);
  border-radius: 32px;
  box-shadow: 0 6px 34px rgba(248, 179, 78, 0.08);
  margin-bottom: 60px;
  padding: 48px 0 54px 0;
  min-height: 340px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.hero .content-wrapper {
  gap: 28px;
  max-width: 620px;
  align-items: flex-start;
}
.hero .cta-btn {
  margin-top: 5px;
}

/* =========================================================
   Footer
   ========================================================= */
footer {
  width: 100%;
  background: #284F2D;
  color: #fff;
  padding: 0 0 36px 0;
  border-radius: 32px 32px 0 0;
  margin-top: 58px;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px 0 10px 0;
}
.footer-nav {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding-bottom: 8px;
}
.footer-nav a {
  color: #FEDE70;
  font-size: 0.99rem;
  text-decoration: underline dotted;
}
.footer-nav a:hover { color: #F8B34E; text-decoration: underline; }
.contact-details {
  margin: 4px 0 10px 0;
  text-align: center;
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.6;
}
.contact-details a {
  color: #F8B34E;
  text-decoration: underline;
}
.footer-bottom {
  display: flex;
  justify-content: center;
  padding-top: 4px;
  font-size: 0.90rem;
  color: #fff;
  opacity: 0.90;
}
footer img {
  height: 36px;
  width: auto;
  filter: drop-shadow(0 1px 4px #F8B34E88);
  margin: 0 2px;
}

/* =========================================================
   Cookie Consent Banner
   ========================================================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fffbe6;
  box-shadow: 0 -3px 22px #F8B34E45;
  z-index: 150;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 28px 22px 18px 22px;
  gap: 18px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.08rem;
  animation: cookieBannerIn 0.66s cubic-bezier(.18,.71,.43,.99);
}
@keyframes cookieBannerIn {
  from { transform: translateY(140%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.cookie-btn {
  border: none;
  border-radius: 24px;
  padding: 10px 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  background: #F8B34E;
  color: #284F2D;
  cursor: pointer;
  margin-right: 6px;
  box-shadow: 0 1.5px 9px #FF6B0047;
  transition: background 0.17s, color 0.17s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #3AB492;
  color: #fff;
}
.cookie-btn.reject {
  background: #F8647A;
  color: #fff;
}
.cookie-btn.reject:hover { background: #284F2D; color: #fff; }
.cookie-btn.settings {
  background: #FEDE70;
  color: #284F2D;
  border: 1px solid #F8B34E;
}
.cookie-btn.settings:hover { background: #F8B34E; color: #fff; }

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(40, 79, 45, 0.85);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s;
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 26px;
  padding: 38px 32px;
  box-shadow: 0 10px 42px #F8B34E33;
  min-width: 320px; max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: modalIn 0.36s cubic-bezier(0.4,0,0.2,1);
}
@keyframes modalIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 17px;
  background: #F8B34E11;
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 1.02rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-category .category-toggle {
  margin-left: auto;
  min-width: 42px;
}
.category-toggle input[type="checkbox"] {
  width: 24px;
  height: 24px;
  accent-color: #3AB492;
}
.cookie-modal-close {
  position: absolute;
  right: 17px;
  top: 16px;
  background: none;
  border: none;
  font-size: 1.65rem;
  color: #284F2D;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal-close:hover { color: #F8647A; }

/* =========================================================
   Responsive (Mobile-first and up)
   ========================================================= */
@media (max-width: 1024px) {
  .container {
    max-width: 96vw;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 980px) {
  .header .container { gap: 8px; }
  .hero { border-radius: 18px; padding: 28px 0 34px 0; }
  .section { margin-bottom: 40px; padding: 28px 8px; border-radius: 14px; }
  .footer-top img, footer img { height: 28px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.15rem; }
  .hero { padding: 22px 0 28px 0; border-radius: 8px; min-height: 145px; }
  .footer-top { margin-top: 12px; }
  .section { margin-bottom: 22px; padding: 14px 6px; }
  .footer-nav, .contact-details, .footer-bottom {font-size: 0.93rem;}
  .card-container, .content-grid { flex-direction: column; gap: 14px; }
}
@media (max-width: 600px) {
  .container { padding-left: 3vw; padding-right: 3vw; }
  .hero .content-wrapper { padding: 0 0.5vw; }
  .footer-nav { flex-direction: column; gap: 6px; text-align: center; }
  .cookie-modal { min-width: 90vw; max-width: 98vw; }
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 18px; }
  .card-content, .content-wrapper {align-items: flex-start;}
}

/* =========================================================
   Misc Artistic Touches / Micro-interactions
   ========================================================= */
.section:active, .card:active, .testimonial-card:active {
  box-shadow: 0 2px 7px #F8B34E55;
}
.card, .testimonial-card {
  transition: box-shadow 0.2s, transform 0.17s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 24px #F8B34E33, 0 2px 8px #3AB49221;
  z-index: 5;
  transform: scale(1.012);
}

::-webkit-selection { background: #F8B34E; color: #284F2D; }
::selection { background: #F8B34E; color: #284F2D; }

/* Scrollbar Customization for creative look */
body::-webkit-scrollbar { width: 10px; background: #FEDE70; }
body::-webkit-scrollbar-thumb { background: #F8B34E; border-radius: 6px; }

/* =========================================================
   Other Layout Elements
   ========================================================= */
ul li, ol li {
  margin-bottom: 8px;
  padding-left: 3px;
  line-height: 1.7;
}
.text-section ul, .text-section ol {
  margin-bottom: 12px;
}
ul li strong, 
ol li strong { color: #FF6B00; }

active, .active {
  background: #F8B34E61;
  color: #284F2D !important;
}

/* Accessibility and Contrast for Review/Testimonial */
.testimonial-card, .testimonial-card p, .testimonial-card strong {
  color: #26340F !important;
  background: none !important;
}

/* Accessibility Focus Outlines */
a:focus, button:focus, input:focus, .cta-btn:focus, .secondary-cta-btn:focus {
  outline: 2px dashed #FF6B00;
  outline-offset: 2px;
}

/* --- End --- */
