/* ======================================================
   CSS RESET & BASE STYLES (normalize + minimal 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,
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 {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  line-height: 1.55;
  font-family: 'Roboto', Arial, sans-serif;
  color: #214B49;
  background-color: #F5FAF7;
  min-height: 100vh;
  overflow-x: hidden;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
h1,h2,h3,h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #214B49;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.4rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; }
p, li, blockquote, table, td, th {
  font-size: 1rem;
}
blockquote {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-style: italic;
  color: #294f4c;
  border-left: 4px solid #6ce7d4;
  padding-left: 18px;
  margin-bottom: 12px;
}

/* ====================
   CONTAINERS & LAYOUT
   ==================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 16px 0 rgba(52, 213, 194, 0.07), 0 1px 3px 0 rgba(33,75,73,0.03);
  padding: 30px 28px;
  margin: 0 0 30px 0;
  position: relative;
}

@media (max-width: 900px) {
  .content-wrapper { padding: 22px 8px; }
}

/* -----------------------------------------------
   SECTION SPACING (MANDATORY)
----------------------------------------------- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* FLEXBOX LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.card {
  background: #fff;
  box-shadow: 0 1px 4px 0 rgba(52, 213, 194, 0.08);
  border-radius: 18px;
  padding: 24px 20px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 4px 18px 0 rgba(33,75,73, 0.18);
  transform: translateY(-3px) 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;
    gap: 24px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F5FAF7;
  box-shadow: 0 1px 6px rgba(52, 213, 194, 0.11);
  border-radius: 18px;
  margin-bottom: 24px;
  padding: 20px;
  min-width: 0;
  color: #214B49;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .feature-grid { flex-direction: column; gap: 18px; }
}

/* ================= HEADER & NAVIGATION ================ */
header {
  background: #D0F3F0;
  box-shadow: 0 3px 10px rgba(33,75,73,0.09);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-logo {
  height: 48px;
  width: auto;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  min-height: 72px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  color: #214B49;
  padding: 6px 0;
  border-radius: 5px;
  transition: background 0.22s,color 0.19s;
}
.main-nav a.button-primary {
  margin-left: 17px;
}
.main-nav a:hover {
  background: #6ce7d4;
  color: #19342a;
}
.button-primary {
  background: #214B49;
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 30px;
  border-radius: 50px;
  font-size: 1.09rem;
  font-weight: 700;
  outline: none;
  border: none;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 10px 0 rgba(52,213,194,0.08);
  transition: background 0.19s, box-shadow 0.19s, transform 0.19s;
  cursor: pointer;
  display: inline-block;
}
.button-primary:focus,
.button-primary:hover {
  background: #19c2ab;
  color: #fff;
  box-shadow: 0 4px 15px 0 rgba(33,75,73,0.18);
  transform: scale(1.04);
}

/* ================= MOBILE NAV MENU ================ */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #214B49;
  font-size: 2rem;
  cursor: pointer;
  display: none;
  z-index: 201;
  margin-left: 16px;
  transition: color 0.17s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #19c2ab;
}
header .mobile-menu-toggle { display: none; }
@media (max-width: 1020px) {
  .main-nav { display: none !important; }
  header .mobile-menu-toggle { display: block; }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #D0F3F0;
  box-shadow: 0 2px 18px rgba(33,75,73,0.21);
  transform: translateX(-100vw);
  display: flex;
  flex-direction: column;
  z-index: 220;
  transition: transform 0.32s cubic-bezier(.9,.01,.32,1.07);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #214B49;
  align-self: flex-end;
  margin: 24px 28px 0 0;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 224;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #19c2ab;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 42px 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #214B49;
  padding: 9px 0;
  transition: color 0.15s,background 0.15s;
  border-radius: 8px;
  width: 100%;
}
.mobile-nav a:hover {
  background: #19c2ab;
  color: #fff;
}
@media (max-width: 768px) {
  .mobile-nav { padding: 38px 18px; gap: 18px; }
  .mobile-menu-close { margin: 18px 20px 0 0; }
}

/* ====== HERO, SECTIONS, LISTS, FEATURES ========= */
.service-list, .service-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  margin-bottom: 20px;
}
.service-list li, .service-categories li {
  background: #D0F3F0;
  color: #214B49;
  border-radius: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 20px;
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 1px 2px 0 rgba(33,75,73,0.04);
  line-height: 1.44;
  display: flex; align-items: center; gap: 11px;
}
@media (max-width: 600px) {
  .service-list, .service-categories { flex-direction: column; gap: 12px; }
}
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 30px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.pricing-table th, .pricing-table td {
  padding: 13px 16px;
  text-align: left;
}
.pricing-table thead th {
  background: #214B49;
  color: #fff;
  font-size: 1.06rem;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.pricing-table tbody td {
  background: #D0F3F0;
  color: #214B49;
  font-size: 1.01rem;
  font-weight: 500;
  border-bottom: 2px solid #F5FAF7;
}
@media (max-width: 700px) {
  .pricing-table, .pricing-table th, .pricing-table td {
    font-size: 0.94rem;
    padding: 10px;
  }
}

/* =========== ACCORDION FOR FAQ =========== */
.faq-accordion h3 {
  cursor: pointer;
  font-size: 1.09rem;
  background: #D0F3F0;
  color: #214B49;
  border-radius: 8px;
  margin-bottom: 0px;
  padding: 12px 20px;
  transition: background 0.18s;
}
.faq-accordion h3:hover {
  background: #19c2ab;
  color: #fff;
}
.faq-accordion div {
  margin: 0 0 18px 0;
  padding: 13px 20px 0 36px;
  display: none;
}
.faq-accordion .active + div {
  display: block;
  animation: fadein 0.45s;
}
@keyframes fadein {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

/* ============== TESTIMONIAL STYLES ============== */
.testimonial-card {
  background: #fff;
  border-left: 6px solid #6ce7d4;
  box-shadow: 0 2px 15px rgba(33,75,73,0.08);
  border-radius: 18px;
  margin-bottom: 24px;
  padding: 20px 28px;
  color: #214B49;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: box-shadow 0.17s, border-color 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 28px rgba(52,213,194,0.13);
  border-left-color: #214B49;
}
.testimonial-card blockquote {
  border: none;
  padding: 0;
  color: #294f4c;
  font-size: 1.08rem;
}
.testimonial-card div:last-child {
  color: #19c2ab;
  font-size: 0.98rem;
  font-weight: 500;
  margin-left: 15px;
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    gap: 12px;
    padding: 16px 10px;
  }
}

/* ========== FOOTER ========== */
footer {
  background: #214B49;
  color: #fff;
  padding: 0;
  margin-top: 60px;
  box-shadow: 0 -2px 20px rgba(33,75,73,0.08);
}
.footer-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 36px 0 12px 0;
  align-items: center;
}
.footer-main nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 1.03rem;
  margin: 0 0 2px 0;
}
.footer-main nav a {
  color: #fff;
  opacity: 0.9;
  font-weight: 400;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.17s, opacity 0.17s;
}
.footer-main nav a:hover {
  color: #6ce7d4;
  opacity: 1;
}
.contact-mini {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 0.94rem;
  margin: 14px 4px 0 4px;
}
@media (max-width: 900px) {
  .footer-main { gap: 20px; }
  .contact-mini { flex-direction: column; gap: 4px; }
}

/* ========== BUTTONS & INTERACTIVE ELEMENTS ========== */
.button-primary, .button-secondary {
  outline: none;
  cursor: pointer;
  transition: background 0.18s, color 0.13s, box-shadow 0.16s, transform 0.1s;
}
.button-secondary {
  background: #6ce7d4;
  color: #214B49;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  box-shadow: 0 1px 8px 0 rgba(33,75,73,0.10);
  margin-left: 10px;
}
.button-secondary:hover,
.button-secondary:focus {
  background: #214B49;
  color: #fff;
}

/* =========================
   COOKIE CONSENT BANNER
   ========================= */
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #214B49;
  box-shadow: 0 -2px 20px rgba(33,75,73,0.11);
  z-index: 300;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 24px 30px 18px 30px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.02rem;
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.28s cubic-bezier(.51,.28,.61,1.23), opacity 0.25s;
}
#cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
#cookie-banner .cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
#cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  border: none;
  border-radius: 50px;
  padding: 7px 22px;
  margin: 0 3px;
  outline: none;
  cursor: pointer;
  transition: background 0.15s, color 0.12s, box-shadow 0.15s;
  font-weight: 600;
}
#cookie-banner .cookie-accept {
  background: #214B49;
  color: #fff;
}
#cookie-banner .cookie-accept:hover {
  background: #19c2ab;
}
#cookie-banner .cookie-reject {
  background: #fff;
  color: #214B49;
  border: 2px solid #214B49;
}
#cookie-banner .cookie-reject:hover {
  background: #D0F3F0;
  color: #19342a;
}
#cookie-banner .cookie-settings {
  background: #6ce7d4;
  color: #214B49;
}
#cookie-banner .cookie-settings:hover {
  background: #214B49;
  color: #fff;
}
@media (max-width: 600px) {
  #cookie-banner { flex-direction: column; align-items: stretch; padding: 20px 6px 10px 8px; gap: 11px; font-size: 0.95rem; }
}

/* COOKIE CONSENT MODAL */
#cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 500;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(33,75,73,0.19);
  align-items: center;
  justify-content: center;
  transition: background 0.22s;
}
#cookie-modal-overlay.active {
  display: flex;
}
#cookie-modal {
  background: #fff;
  color: #214B49;
  border-radius: 18px;
  max-width: 430px;
  width: 94vw;
  box-shadow: 0 1px 38px 0 rgba(33,75,73,0.19);
  padding: 38px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 21px;
  position: relative;
  animation: modalin 0.36s cubic-bezier(.77,-0.01,.16,1.02);
}
@keyframes modalin {
  from { transform: scale(0.8) translateY(110px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
#cookie-modal h2 {
  font-size: 1.24rem;
  color: #214B49;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 4px;
}
.cookie-switch {
  width: 34px;
  height: 18px;
  position: relative;
  display: inline-block;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0; right: 0; bottom: 0;
  background-color: #D0F3F0;
  border-radius: 12px;
  transition: .25s;
}
.cookie-switch input:checked + .cookie-slider {
  background-color: #19c2ab;
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 2px;
  bottom: 2px;
  background-color: #fff;
  border-radius: 50%;
  transition: .22s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(16px);
}

#cookie-modal .cookie-modal-actions {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  gap: 11px;
  justify-content: flex-end;
}
#cookie-modal .cookie-modal-actions button {
  min-width: 90px;
  padding: 7px 12px;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.17s, color 0.15s;
}
#cookie-modal .cookie-accept {
  background: #214B49;
  color: #fff;
}
#cookie-modal .cookie-accept:hover { background: #19c2ab; color: #fff; }
#cookie-modal .cookie-reject {
  background: #fff;
  color: #214B49;
  border: 2px solid #214B49;
}
#cookie-modal .cookie-reject:hover { background: #D0F3F0; color: #19342a; }
#cookie-modal-close {
  position: absolute;
  top: 14px; right: 18px;
  background: none;
  color: #214B49;
  font-size: 1.3em;
  border: none; cursor: pointer;
  transition: color 0.13s;
}
#cookie-modal-close:hover, #cookie-modal-close:focus {
  color: #19c2ab;
}

@media (max-width: 600px) {
  #cookie-modal { padding: 18px 5px 14px 8px; gap: 14px; min-width: 0; }
}

/* ================================
   CUSTOM TYPOGRAPHY SCALE/MICRO-ART
   ================================ */
h1 {
  font-size: 2.7rem;
  font-weight: 800;
  color: #214B49;
  text-shadow: 1px 3px 0 #D0F3F0, 0 2px 12px #6ce7d4;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #214B49;
  margin-top: 14px;
}
h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #19c2ab;
  letter-spacing: 0.03em;
}
strong {
  color: #214B49;
  font-weight: 700;
}

/* ================================
   CREATIVE ARTISTIC SPECIAL TOUCHES
   ================================ */
/* Painterly underline */
h2, h3 {
  position: relative;
}
h2:after, h3:after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 70px; height: 7px;
  background: #6ce7d4;
  opacity: 0.36;
  border-radius: 7px;
  z-index: 1;
}
h3:after { width: 38px; height: 4px; background: #214B49; opacity: 0.22; }
/* Artistic icon backgrounds */
.service-categories img, .feature-grid img, .contact-information img, .testimonial-card img {
  background: #D0F3F0;
  border-radius: 50%;
  padding: 6px;
  width: 38px;
  height: 38px;
  margin-right: 11px;
  box-shadow: 0 1px 8px 0 rgba(33,75,73,0.07);
}

/* Decorative brush stroke */
.section {
  background-image: url('../assets/decor-brush.png');
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 160px 40px;
}
@media (max-width: 700px) {
  .section { background-size: 90px 20px; }
}

/* ====================
   FORMS, INPUTS, ETC.
   ==================== */
input, textarea, select {
  border-radius: 8px;
  border: 1.5px solid #d4d5d0;
  padding: 10px 15px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  outline: none;
  transition: border 0.16s, box-shadow 0.13s;
  background: #F5FAF7;
  color: #214B49;
  margin-bottom: 16px;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border-color: #19c2ab;
  box-shadow: 0 1px 6px rgba(33,75,73,0.12);
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
  color: #214B49;
}

/* Misc content utility */
.mt-2 { margin-top: 10px; }
.mb-2 { margin-bottom: 10px; }
.mb-3 { margin-bottom: 18px; }
.gap-2 { gap: 12px; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.items-center { align-items: center; }

/* ====================
   RESPONSIVE
   ==================== */
@media (max-width: 540px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.06rem; }
  .content-wrapper { border-radius: 12px; padding: 14px 4px; }
  .section { margin-bottom: 36px; padding: 20px 6px; }
}
@media (max-width: 400px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.1rem; }
}

/* ====================
   UTILITIES & OVERRIDES
   ==================== */
.hide { display: none !important; }
.show { display: block !important; }

/* =========== SPACE & NO OVERLAP ============ */
main section:not(:last-child) { margin-bottom: 44px; }
.content-wrapper + .content-wrapper { margin-top: 22px; }

/* ============= ARTISTIC MICRO ANIMATIONS ================ */
.button-primary,.button-secondary {
  will-change: background, box-shadow, transform;
}
.button-primary:active, .button-secondary:active {
  transform: scale(.98);
}
.service-list li, .service-categories li { position: relative; }
.service-list li::before, .service-categories li::before {
  content: '';
  display: block;
  position: absolute;
  left: -7px; top: 50%;
  width: 8px; height: 8px;
  background: #19c2ab;
  border-radius: 50%;
  transform: translateY(-50%);
}
.contact-information a, .footer-main nav a {
  transition: text-decoration 0.13s, color 0.15s;
}
.contact-information a:hover, .footer-main nav a:focus {
  text-decoration: underline wavy #6ce7d4;
  color: #6ce7d4;
}

/* ============= MISC ================== */
::selection {
  background: #6ce7d4;
  color: #214B49;
}

/* ====================================
   REMOVE OVERLAPPING ON MOBILE CARDS
   ==================================== */
@media (max-width: 768px) {
  .card-container,
  .content-grid,
  .feature-grid { flex-direction: column !important; gap: 16px !important; }
}

/* ============= END OF CSS =========== */
