/* =====================
   CSS RESET & NORMALIZE
   ===================== */
html {
  box-sizing: border-box;
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  background: #FAF9F6;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #264653;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #2A9D8F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #264653;
}
ul, ol {
  padding-left: 1.4em;
  margin-bottom: 1.5em;
}
li {
  margin-bottom: 0.5em;
}

/* =====================
   TYPOGRAPHY
   ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #264653;
  margin-bottom: 0.6em;
  font-weight: 700;
  letter-spacing: 0.06em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
}
h3 {
  font-size: 1.4rem;
  line-height: 1.25;
}
h4 {
  font-size: 1.15rem;
  line-height: 1.3;
}
p {
  margin-bottom: 1.2em;
}
strong {
  font-weight: 700;
}
small {
  font-size: 0.95rem;
  color: #557280;
}

/* =====================
   STRUCTURAL CLASSES
   ===================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  position: relative;
}

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

@media (min-width: 1000px) {
  section {
    padding: 60px 0;
    margin-bottom: 72px;
  }
  .container {
    padding: 0 32px;
  }
}

/* =====================
   HEADER AND NAVIGATION
   ===================== */
header {
  background: #fff;
  border-bottom: 3px solid #E9C46A;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px 12px 20px;
}
.logo img {
  height: 38px;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 6px 0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  position: relative;
  transition: color 0.18s;
}
.main-nav a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: transparent;
  transition: background 0.18s;
  margin-top: 2px;
}
.main-nav a:hover::after,
.main-nav a:focus::after {
  background: #2A9D8F;
}
.main-nav .cta-primary {
  background: #2A9D8F;
  color: #fff;
  padding: 10px 22px;
  border-radius: 18px 2px 18px 2px;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(41,157,143,0.07);
  margin-left: 12px;
  transition: background 0.18s, scale 0.12s;
  letter-spacing: 0.08em;
}
.main-nav .cta-primary:hover,
.main-nav .cta-primary:focus {
  background: #264653;
  scale: 1.04;
}
/* Burger menu button */
.mobile-menu-toggle {
  background: #E9C46A;
  border: none;
  color: #264653;
  font-size: 2.1rem;
  padding: 4px 16px;
  border-radius: 8px 18px 8px 18px;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-left: 20px;
  transition: background .18s, color .18s;
  box-shadow: 0 3px 18px rgba(233,196,106,0.10);
  z-index: 300;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #F6DFA7;
  color: #2A9D8F;
}

/* Hide mobile button on desktop */
@media (min-width: 900px) {
  .mobile-menu-toggle {
    display: none;
  }
}
/* Hide nav on mobile */
@media (max-width: 899px) {
  .main-nav {
    display: none;
  }
}

/* =======================
   MOBILE MENU STYLES
   ======================= */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 95vw;
  max-width: 340px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 24px rgba(38,70,83,0.15);
  z-index: 9999;
  transform: translateX(110%);
  transition: transform 0.32s cubic-bezier(.68, -.6, .32, 1.6);
  display: flex;
  flex-direction: column;
  padding: 0 0 32px 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 18px 0 0;
  padding: 4px 10px;
  background: #2A9D8F;
  color: #fff;
  border: none;
  border-radius: 8px 18px 8px 18px;
  font-size: 1.7rem;
  cursor: pointer;
  transition: background 0.18s;
  z-index: 2;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #264653;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 36px 28px 0 36px;
  margin-top: 0;
}
.mobile-nav a {
  color: #264653;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.14rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 0;
  letter-spacing: 0.08em;
  border-radius: 6px 16px;
  transition: color 0.18s, background 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff;
  background: #2A9D8F;
}

@media (max-width:600px) {
  .mobile-menu {
    width: 100vw;
    max-width: none;
  }
  .mobile-nav {
    padding: 32px 22px 0 24px;
  }
}

/* =====================
   HERO SECTION
   ===================== */
.hero {
  background: #E9C46A10;
  border-radius: 0 0 44px 44px;
  margin-bottom: 60px;
  padding-top: 40px;
  padding-bottom: 40px;
  box-shadow: 0 10px 48px rgba(233,196,106,0.08);
  position: relative;
}
.hero h1 {
  font-size: 2.2rem;
  letter-spacing: 0.02em;
  color: #264653;
  margin-bottom: 10px;
}
.hero p {
  color: #2A9D8F;
  max-width: 500px;
  font-size: 1.13rem;
  margin-bottom: 18px;
}
.hero .cta-primary {
  margin-top: 10px;
}
@media (min-width:700px) {
  .hero {
    padding-top: 64px;
    padding-bottom: 64px;
  }
  .hero h1 {
    font-size: 2.7rem;
  }
}

/* =====================
   CTA BUTTONS
   ===================== */
.cta-primary {
  display: inline-block;
  background: #2A9D8F;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 14px 34px;
  border-radius: 0 24px 24px 0;
  box-shadow: 0 4px 24px rgba(41,157,143,0.14);
  text-transform: uppercase;
  border: 2px solid #2A9D8F;
  transition: background 0.19s, color 0.19s, box-shadow 0.19s, border 0.19s, scale 0.13s;
  cursor: pointer;
}
.cta-primary:hover, .cta-primary:focus {
  background: #E9C46A;
  color: #264653;
  border-color: #E9C46A;
  box-shadow: 0 7px 28px rgba(233,196,106,0.16);
  scale: 1.035;
}

/* =====================
   CARDS + GEOMETRIC
   ===================== */
.service-list, .tips-grid, .feature-grid, .blog-list, .value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.service-list > div,
.tips-grid > div,
.blog-list > li,
.value-list > li {
  background: #fff;
  border: 2px solid #26465322;
  border-radius: 0 36px 8px 36px;
  box-shadow: 0 6px 32px rgba(38,70,83,0.065);
  padding: 24px 20px 18px 28px;
  flex: 1 1 290px;
  min-width: 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  gap: 12px;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
  overflow: hidden;
}
.service-list > div:hover, .tips-grid > div:hover, .blog-list > li:hover, .value-list > li:hover {
  box-shadow: 0 13px 44px rgba(41,157,143,0.10);
  border-color: #2A9D8F55;
  transform: translateY(-4px) scale(1.015) rotate(-.5deg);
}
.service-list h2, .service-list h3 {
  margin-bottom: 0.4em;
  color: #264653;
}
.price {
  color: #E9C46A;
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 1.11rem;
  font-weight: 700;
  margin-top: 10px;
}
.feature-grid {
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
}
.feature-grid li,
.value-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.07rem;
  color: #264653;
  background: #fffefa;
  border-left: 4px solid #2A9D8F;
  border-radius: 0 18px 18px 0;
  padding: 16px 22px;
  margin-bottom: 18px;
  min-width: 210px;
}
.feature-grid li img,
.value-list li img {
  height: 32px;
  width: 32px;
  flex-shrink: 0;
}
@media (max-width: 850px) {
  .service-list, .tips-grid, .feature-grid, .blog-list {
    flex-direction: column;
    gap: 20px;
  }
  .service-list > div,
  .tips-grid > div,
  .blog-list > li {
    min-width: 0;
    flex: 1 1 auto;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border: 2px solid #2A9D8F22;
  border-radius: 0 28px 8px 32px;
  box-shadow: 0 8px 40px rgba(38,70,83,0.07);
  margin-bottom: 20px;
  position: relative;
  min-width: 200px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: box-shadow 0.2s, transform 0.19s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 13px 44px rgba(41,157,143,0.13);
  transform: translateY(-4px) scale(1.017);
}
/* Visual geometric accents */
.card::before {
  content: "";
  position: absolute;
  top: -18px;
  right: -14px;
  width: 54px;
  height: 54px;
  background: #E9C46A44;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 1;
  pointer-events: none;
}

/* ============================
   LAYOUT Flex Utility Patterns
   ============================ */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fffde9;
  border: 2px solid #E9C46A88;
  border-radius: 0 30px 14px 22px;
  margin-bottom: 20px;
  box-shadow: 0 6px 24px rgba(41,157,143,0.07);
  flex-wrap: wrap;
  min-width: 230px;
  position: relative;
  transition: box-shadow 0.18s, border 0.18s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 16px 36px rgba(233,196,106,0.15);
  border-color: #2A9D8F55;
}
.testimonial-card blockquote {
  font-size: 1.07rem;
  color: #14505a;
  font-style: italic;
  margin: 0;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}
.testimonial-details {
  margin-left: 24px;
  font-size: 1rem;
  font-family: 'Montserrat',Arial,sans-serif;
  color: #2A9D8F;
  font-style: normal;
  letter-spacing: 0.02em;
}

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

/* Blog List */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.blog-list li {
  background: #fff;
  border-left: 5px solid #2A9D8F;
  border-radius: 0 20px 8px 20px;
  box-shadow: 0 4px 22px rgba(41,157,143,0.08);
  padding: 18px 26px;
  min-width: 220px;
  flex: 1 1 260px;
  margin-bottom: 20px;
}
.blog-list a {
  color: #2A9D8F;
  font-weight: 700;
}
.blog-list a:hover, .blog-list a:focus {
  color: #E9C46A;
}
.blog-categories ul {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.blog-categories li {
  list-style: none;
}
.blog-categories a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #264653;
  background: #E9C46A44;
  padding: 6px 18px;
  border-radius: 10px 16px;
  text-transform: uppercase;
  font-size: 0.98rem;
  letter-spacing: 0.045em;
  transition: background 0.16s, color 0.16s;
  border: 1.5px solid transparent;
}
.blog-categories a:hover, .blog-categories a:focus {
  background: #2A9D8F;
  color: #fff;
  border-color: #2A9D8F;
}

/* =====================
   CONTACT SECTIONS
   ===================== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}
.contact-details img {
  height: 22px;
  width: 22px;
  vertical-align: middle;
  margin-right: 13px;
}
.hours-open, .map {
  margin-bottom: 22px;
}
.hours-open img {
  height: 20px;
  margin-right: 10px;
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: #264653;
  color: #fff;
  padding: 36px 0 0 0;
  border-top: 5px solid #2A9D8F;
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 20px 12px 20px;
  flex-wrap: wrap;
}
footer .container > * {
  margin-bottom: 0;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
footer nav a {
  color: #E9C46A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 6px 0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.17s, border-bottom 0.17s;
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
  border-bottom: 1.5px solid #fff;
}
footer img {
  height: 42px;
}
footer small {
  color: #E9C46A;
  font-size: 0.96rem;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  footer nav {
    gap: 12px;
  }
}

/* =====================
   OTHER UTILITY CLASSES
   ===================== */
.mt-0 { margin-top: 0!important; }
.mt-2 { margin-top: 2px!important; }
.mt-4 { margin-top: 4px!important; }
.mt-8 { margin-top: 8px!important; }
.mb-20 { margin-bottom: 20px!important; }
.mb-40 { margin-bottom: 40px!important; }
.mb-60 { margin-bottom: 60px!important; }
.text-center { text-align: center!important; }

/* =====================
   RESPONSIVE DESIGN
   ===================== */
@media (max-width: 768px) {
  .container {
    padding: 0 12px;
  }
  .content-wrapper {
    gap: 16px;
  }
  section {
    padding: 30px 0 26px 0;
    margin-bottom: 40px;
  }
  .hero {
    border-radius: 0 0 18px 18px;
    padding: 24px 0 30px 0;
  }
  .text-image-section, .card-container, .service-list, .feature-grid, .tips-grid, .blog-list {
    flex-direction: column;
    gap: 17px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .feature-grid li, .value-list li {
    padding: 14px 10px;
    font-size: 1rem;
    min-width: 0;
  }
}

@media (max-width: 500px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.22rem; }
  h3 { font-size: 1.06rem; }
  .service-list > div, .tips-grid > div, .blog-list > li, .card {
    padding: 12px 10px 10px 12px;
    min-width: 0;
    font-size: 0.98rem;
  }
}

/* =====================
   COOKIE CONSENT BANNER
   ===================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #264653;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  z-index: 99999;
  box-shadow: 0 -8px 24px rgba(38,70,83,0.15);
  gap: 18px;
  font-size: 1rem;
  border-top: 3px solid #E9C46A;
  animation: cookieBannerIn 0.60s cubic-bezier(.68, -.6, .32, 1.6);
}
@keyframes cookieBannerIn {
  0% { transform: translateY(72px); opacity:0; }
  100% { transform: translateY(0); opacity:1; }
}
.cookie-banner__buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner button {
  background: #E9C46A;
  color: #264653;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 0 14px 14px 0;
  padding: 9px 22px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, scale 0.12s;
  outline: none;
  margin-right: 0;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #2A9D8F;
  color: #fff;
  scale: 1.04;
}
.cookie-banner .cookie-banner__settings {
  background: #264653;
  color: #E9C46A;
  border: 2px solid #E9C46A;
  padding: 8px 20px;
  border-radius: 14px 0 14px 0;
}
.cookie-banner .cookie-banner__settings:hover, .cookie-banner .cookie-banner__settings:focus {
  background: #fff;
  color: #264653;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 10px;
    font-size: 0.97rem;
  }
  .cookie-banner__buttons {
    gap: 9px;
  }
}

/* =====================
   COOKIE SETTINGS MODAL
   ===================== */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right:0;
  bottom:0;
  width: 100vw;
  height: 100vh;
  background: rgba(38,70,83,0.76);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  animation: cookieModalIn 0.42s cubic-bezier(.68, -.6, .32, 1.6);
}
@keyframes cookieModalIn {
  0% { opacity: 0; transform: scale(0.97); }
  100% { opacity:1; transform: scale(1); }
}
.cookie-modal__content {
  background: #fff;
  color: #264653;
  border-radius: 0 22px 22px 0;
  padding: 38px 30px 26px 36px;
  max-width: 395px;
  width: 90%;
  box-shadow: 0 13px 44px 12px rgba(38,70,83,0.13);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #264653;
  color: #fff;
  border: none;
  border-radius: 9px 14px 9px 14px;
  font-size: 1.33rem;
  padding: 2px 10px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, scale 0.13s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #2A9D8F;
  color: #fff;
}
.cookie-modal__toggle-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-modal__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #F6F6F6;
  border-radius: 0 12px 12px 0;
  padding: 9px 18px;
  margin-bottom: 3px;
}
.cookie-modal__toggle label {
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #264653;
  font-size: 1.025rem;
}
/* Simple toggle switch */
.switch {
  position: relative;
  width: 44px;
  height: 24px;
  display: inline-block;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #cccccc;
  border-radius: 24px;
  transition: .22s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: .18s;
  box-shadow: 0 2px 8px rgba(41,157,143,0.13);
}
.switch input:checked + .slider {
  background: #2A9D8F;
}
.switch input:checked + .slider:before {
  transform: translateX(18px);
  background: #E9C46A;
}
.switch input:disabled + .slider, .switch input[readonly] + .slider {
  background: #bbbbbb;
  opacity: 0.55;
}

.cookie-modal__actions {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}
.cookie-modal__actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 9px 24px;
  border-radius: 0 12px 12px 0;
  border: none;
  background: #2A9D8F;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, scale 0.12s;
}
.cookie-modal__actions button:hover, .cookie-modal__actions button:focus {
  background: #E9C46A;
  color: #264653;
  scale: 1.03;
}
@media (max-width: 540px) {
  .cookie-modal__content {
    padding: 24px 10px 18px 10px;
    max-width: 99vw;
    border-radius: 0 14px 14px 0;
  }
}

/* =====================
   MICRO-INTERACTIONS
   ===================== */
select, button, input[type="button"], input[type="submit"] {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}
button:active, .cta-primary:active {
  scale: 0.97;
}

/* =====================
   GEOMETRIC DECORATIVE SHAPES (EXAMPLES)
   ===================== */
/* For advanced accenting, design systems can add more class-based geometric figures. */

/* =====================
   ACCORDION, TABS, etc. (If present)
   ===================== */
/* Style can be added here as needed. */
