/* ===========================
   CSS RESET & NORMALIZE RULES
   =========================== */
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, menu, 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, 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;
  scroll-behavior: smooth;
}
body {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #E0F2F1;
  color: #1A1A1A;
  min-height: 100vh;
  line-height: 1.85;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

*, *::before, *::after {
  box-sizing: inherit;
}
a {
  color: #126872;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #FFC25D;
  outline: none;
}
strong, b {
  font-weight: 700;
}
ul, ol {
  list-style: disc inside;
}
blockquote {
  margin-left: 0.5em;
  padding-left: 1.3em;
  border-left: 4px solid #FFC25D;
  font-style: italic;
  color: #126872;
}
cite {
  display: block;
  margin-top: 8px;
  font-size: 0.95em;
  color: #666;
}

:root {
  --color-primary: #126872;
  --color-accent: #FFC25D;
  --color-bg: #E0F2F1;
  --color-dark: #1A1A1A;
  --color-light: #fff;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 8px;
  --shadow-md: 0 3px 18px 0 rgba(18, 104, 114, 0.08);
  --shadow-lg: 0 6px 32px 0 rgba(18, 104, 114, 0.12);
}

/* ============================
   TYPOGRAPHY & ARTISTIC FONTS
   ============================ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Playfair+Display:wght@700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #126872;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
  line-height: 1.16;
}
h1 {
  font-size: 2.625rem;
  font-weight: 700;
  background: linear-gradient(90deg,#126872 70%,#FFC25D 100%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  text-shadow: 1.5px 1.5px 0 #FFF89723;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
}
h3 {
  font-size: 1.375rem;
  font-weight: 600;
}
h4 {
  font-size: 1.125rem;
  font-weight: 600;
}
p, li, dd {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #1A1A1A;
  line-height: 1.8;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ======================
   FLEXBOX LAYOUT SYSTEM
   ======================*/
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  justify-content: center;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  background: #fff;
  padding: 28px 22px;
  min-width: 240px;
}
.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-section {
  padding: 18px 0;
  margin-bottom: 6px;
}
.features ul, .services ul, .about ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  flex-direction: column;
}
.features ul li, .services ul li, .about ul li {
  font-size: 1.08rem;
  line-height: 1.7;
  border-radius: var(--radius-sm);
  background: #E0F2F1;
  color: #126872;
  padding: 15px 20px 15px 54px;
  position: relative;
  min-width: 230px;
  font-weight: 500;
}
.features ul li img, .services ul li img {
  position: absolute;
  left: 16px;
  top: 17px;
  width: 22px;
  height: 22px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* For FAQ and address blocks */
.text-section ul {
  padding-left: 18px;
}

/* ========================
   BUTTONS & CTA
   ========================*/
.cta-btn, button, .cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  background: var(--color-accent);
  color: var(--color-primary);
  padding: 0.95em 2.1em;
  border: none;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px 0 rgba(255,194,93,0.18);
  transition: all 0.18s cubic-bezier(.7,.1,0,1);
  position: relative;
  cursor: pointer;
  margin-top: 12px;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}
.cta-btn:hover, .cta-btn:focus,
button:hover, button:focus,
.cookie-btn:hover, .cookie-btn:focus {
  background: #ffe5a2;
  color: #126872;
  box-shadow: 0 7px 24px 2px rgba(255,194,93,0.25);
  outline: none;
  transform: translateY(-2px) scale(1.04) rotate(-1deg);
}
.cta-btn:active { 
  transform: scale(0.98) rotate(-0.5deg);
}

/* =========================
   HEADER & MAIN NAVIGATION
   =========================*/
header {
  background: linear-gradient(90deg,#E0F2F1 70%,#FFF9E3 100%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  padding: 24px 32px 18px 32px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 105;
}
header img {
  max-height: 52px;
}
header nav {
  display: flex;
  gap: 16px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  color: #126872;
  border-radius: var(--radius-md);
  padding: 8px 16px;
  transition: background 0.15s;
  position: relative;
}
header nav a:hover, header nav a.active {
  background: #FFC25D22;
  color: #1A1A1A;
}
header .cta-btn {
  margin-left: auto;
  margin-right: 0;
  background: #126872;
  color: #fff;
  border: none;
}
header .cta-btn:hover, header .cta-btn:focus {
  background: #1A8FA2;
  color: #fff;
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  position: fixed;
  right: 18px;
  top: 18px;
  z-index: 110;
  background: #ffc25d;
  color: #126872;
  padding: 14px 16px;
  border-radius: 50%;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 14px 0 rgba(18,104,114, .17);
}
.mobile-menu-toggle:focus {
  outline: 3px solid #126872;
}

/* MOBILE SLIDING MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(18,104,114, 0.95);
  color: #fff;
  z-index: 9999;
  transform: translateX(100%);
  opacity: 0;
  transition: transform .41s cubic-bezier(.9,.04,0,.98), opacity .25s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 20px; right: 20px;
  background: transparent;
  color: #FFC25D;
  font-size: 2.3rem;
  border: none;
  cursor: pointer;
  z-index: 10003;
  padding: 4px;
  transition: color 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  margin-top: 84px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.mobile-nav a {
  color: #fff;
  padding: 22px 32px;
  font-size: 1.21rem;
  letter-spacing: 0.02em;
  font-family: 'Montserrat', Arial, sans-serif;
  border-bottom: 1.5px solid #fff6; 
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFC25D;
  color: #126872;
  border-radius: var(--radius-sm);
}


/* =========================
   HERO SECTION
   =========================*/
.hero {
  background: linear-gradient(93deg,#FFC25D 0%,#E0F2F1 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-bottom: 60px;
  padding: 48px 0 44px 0;
  min-height: 285px;
  display: flex;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.7rem;
  margin-bottom: 16px;
  line-height: 1.13;
}
.hero p {
  font-size: 1.19rem;
  margin-bottom: 14px;
  color: #126872;
}
.hero .cta-btn {
  margin-top: 14px;
}

/* ===== SECTION GENERAL ===== */
section {  /* for all main sections */
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  background: #fff;
}
.features, .about, .services, .testimonials, .cta, .contact, .footer {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* =========================
   CARDS & MICROSURFACES
   =========================*/
.card, .testimonial-card {
  background: #FFFCEB;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 18px rgba(18,104,114,.07);
  padding: 26px 24px 22px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 246px;
  position: relative;
  font-size: 1.08rem;
}
.card strong, .testimonial-card strong {
  color: #126872;
  font-weight: 700;
}

.testimonials .testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  min-width: 270px;
  background: #fff;
  color: #126872;
  border-left: 5px solid #FFC25D;
  border-radius: var(--radius-md);
  box-shadow: 0 7px 18px 0 rgba(18,104,114,0.09);
  transition: box-shadow .21s, background .12s;
}
.testimonial-card span {
  color: #FFC25D;
  font-size: 1.1em;
  letter-spacing: 1.4px;
}
.testimonial-card:hover {
  box-shadow: 0 12px 35px 0 rgba(18,104,114,0.16);
  background: #FFF9E3;
}

/* =========================
   FEATURE LIST ARTISTIC MARK
   =========================*/
.features ul li {
  font-style: italic;
  background: #e7fff7;
  border-left: 5px solid #126872;
  transition: background 0.19s;
  position: relative;
  overflow: hidden;
}
.features ul li:hover {
  background: #FFE58E6e;
}
.features ul li span {
  display: block;
  color: #12687299;
  font-style: normal;
  margin-top: 5px;
  font-size: 0.99rem;
}
.services ul li {
  background: #FFF9E3;
  border-left: 4px solid #FFC25D;
  margin-bottom: 8px;
  font-style: normal;
  font-size: 1.01rem;
}

/* =========================
   DL/DT/DD ARTISTIC SUPPORT
   =========================*/
dl {
  margin-bottom: 12px;
}
dt {
  font-weight: bold;
  color: #126872;
  font-family: 'Playfair Display',serif;
  font-size: 1.13em;
  margin-bottom: 2px;
}
dd {
  margin-bottom: 14px;
  margin-left: 20px;
}

/* =========================
   QUOTE/TESTIMONIALS
   =========================*/
blockquote {
  background: #FFE58E27;
  border-left: 5px solid #FFC25D;
  padding: 20px 24px 18px 26px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  color: #126872;
}

/* =========================
   CTA & SPECIAL SECTIONS
   =========================*/
.cta {
  background: linear-gradient(87deg,#E0F2F1 70%,#FFC25D 120%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta .cta-btn {
  background: #126872;
  color: #fff;
  margin: 0 auto 18px auto;
}
.cta .cta-btn:hover {
  background: #1A8FA2;
}

.footer {
  background: #FFFCEB;
  margin-bottom: 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}


/* =========================
   FOOTER
   =========================*/
footer {
  background: #fff;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 -4px 16px 0 rgba(18,104,114,0.07);
  padding: 34px 20px 15px 20px;
  margin-top: 45px;
}
footer nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 7px;
}
footer nav a {
  padding: 6px 11px;
  border-radius: var(--radius-sm);
  color: #126872;
  font-weight: 500;
  background: none;
  transition: background 0.14s;
}
footer nav a:hover, footer nav a:focus {
  background: #FFC25D42;
}
footer .text-section {
  text-align: center;
  font-size: 0.971em;
}


/* =============================
   COOKIE BANNER & MODAL
   =============================*/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fffdf7;
  box-shadow: 0 -4px 22px 0 rgba(18,104,114,0.13);
  border-top: 2.8px solid #FFC25D;
  z-index: 10999;
  padding: 28px 18px 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  animation: cookieBannerIn .62s cubic-bezier(.24,.68,0,1.09);
  font-family: 'Montserrat', Arial, sans-serif;
}
@keyframes cookieBannerIn {
  from {transform: translateY(82px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-banner p {
  flex: 1 1 220px;
  font-size: 1.01rem;
  color: #126872;
  font-weight: 500;
}
.cookie-btn {
  font-size: 1rem;
  padding: 0.6em 1.6em;
  margin-right: 8px;
  background: #126872;
  color: #fff;
  border-radius: var(--radius-sm);
  border: none;
  transition: background 0.17s;
  cursor: pointer;
}
.cookie-btn.settings {
  background: #FFC25D;
  color: #126872;
  margin-left: 6px;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #1A8FA2;
  color: #fff;
  outline: none;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #ffe493;
  color: #126872;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  z-index: 11111;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(18,104,114, 0.37);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  animation: cookieModalIn 0.51s cubic-bezier(.31,1.09,0,1.08);
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
}
@keyframes cookieModalIn {
  from {transform: scale(0.88) translateY(32px); opacity: .25;}
  to   {transform: scale(1) translateY(0); opacity: 1;}
}
.cookie-modal-content {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px 0 rgba(18,104,114,0.16);
  padding: 42px 32px 24px 32px;
  min-width: 335px;
  max-width: 95vw;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #126872;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal-content h2 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}
.cookie-modal-content .category {
  margin-bottom: 7px;
  padding: 9px 0;
  font-size: 0.98rem;
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-toggle {
  width: 37px; height: 22px;
  border-radius: 20px;
  background: #E0F2F1;
  border: 1.3px solid #FFC25D;
  position: relative;
  transition: background 0.15s;
  cursor: pointer;
  flex-shrink: 0;
}
.cookie-toggle[data-enabled="true"] {
  background: #FFC25D;
}
.cookie-toggle .slider {
  position: absolute;
  left: 2px;
  top: 2.5px;
  width: 18px; height: 17px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 5px #ccc5;
  transition: left 0.15s;
}
.cookie-toggle[data-enabled="true"] .slider {
  left: 17px;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal-content .close {
  position: absolute;
  top: 10px;
  right: 16px;
  background: none;
  color: #FFC25D;
  border: none;
  font-size: 1.73rem;
  cursor: pointer;
  padding: 2px;
  transition: color 0.17s;
}
.cookie-modal-content .close:hover {
  color: #126872;
}

/* =============================
   RESPONSIVE DESIGN
   =============================*/
@media (max-width: 1060px) {
  .container {
    max-width: 99vw;
    padding: 0 6vw;
  }
}
@media (max-width: 900px) {
  header {
    flex-wrap: wrap;
    padding: 20px 13px 10px 14px;
  }
  .hero h1 { font-size: 2.1rem; }
  .hero { padding: 38px 0 22px 0; }
}
@media (max-width: 768px) {
  header nav,
  header .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .section, section, .features, .about, .services, .testimonials, .cta, .contact, .footer {
    padding: 26px 8px;
    margin-bottom: 35px;
    border-radius: var(--radius-md);
  }
  .hero,
  .footer {
    border-radius: var(--radius-md);
    min-height: 180px;
    padding: 36px 0 22px 0;
  }
  .container {
    padding: 0 4vw;
  }
  .content-wrapper {
    gap: 18px;
  }
  .features ul, .services ul, .about ul {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 0;
  }
  .contact, .features, .services, .testimonials, .about, .cta, .footer {
    border-radius: var(--radius-md);
  }
  .testimonial-card, .card {
    min-width: 160px;
    padding: 15px 11px 15px 11px;
    border-radius: var(--radius-sm);
  }
}
@media (max-width: 515px) {
  .hero h1, h1 { font-size: 1.51rem; }
  h2 { font-size: 1.18rem; }
  .cookie-modal-content { min-width: 99vw; padding: 19px 6px 12px 9px; }
  .mobile-nav a { padding: 17px 7vw; font-size: 1rem; }
}

/* =============================
   MORE ARTISTIC EFFECTS
   =============================*/
.section, .hero, .footer {
  position: relative;
  background-clip: padding-box;
  overflow: visible;
}
.section::before, .hero::after {
  content: '';
  position: absolute;
  opacity: 0.09;
  z-index: 0;
  border-radius: 50%;
}
.section::before {
  right: 30px; top: 30px;
  width: 180px; height: 160px;
  background: radial-gradient(circle at 55% 23%, #FFC25D, transparent 73%);
}
.hero::after {
  left: -47px; top: -32px;
  width: 154px; height: 190px;
  background: radial-gradient(circle at 63% 57%, #126872 54%, transparent 100%);
}
.footer::before {
  content:'';
  left: -22px; bottom: -9px;
  width: 110px; height: 70px;
  opacity: 0.11;
  background: radial-gradient(circle at 63% 54%, #FFC25D 70%, transparent 100%);
  position: absolute;
  border-radius: 28% 48% 32% 39%;
  z-index: 0;
}

/* =============================
   FORM ELEMENTS
   =============================*/
input, textarea, select {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 15px;
  border-radius: var(--radius-md);
  border: 1.4px solid #E0F2F1;
  margin-bottom: 11px;
  outline: none;
  transition: border-color .16s;
}
input:focus, textarea:focus, select:focus {
  border-color: #126872;
}

/* =============================
   MICROINTERACTIONS
   =============================*/
.card, .section, .cta-btn, .testimonial-card, .cookie-banner, .cookie-btn, .mobile-nav a {
  transition: box-shadow .19s cubic-bezier(.27,.93,.54,1), transform .19s cubic-bezier(.12,1.04,.36,1.12), background .18s cubic-bezier(.52,.97,.41,1.09);
}
.card:hover, .testimonial-card:hover {
  transform: translateY(-5px) scale(1.015) rotate(-0.3deg);
  box-shadow: 0 10px 30px 0 rgba(18,104,114,0.14);
  background: #FFF9E3;
  cursor: pointer;
}

/* ===============================
   ACCESSIBILITY & SELECTION COLORS
   ===============================*/
::selection {
  background: #FFC25D85;
  color: #126872;
}

/* Focus ring for keyboard navigation */
:focus-visible {
  outline: 2.5px solid #FFC25D;
  outline-offset: 1.5px;
}


/* ===============================
   UTILITY CLASSES (FLEX & SPACING)
   ===============================*/
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Ensure min 20px gap between cards/sections */
section + section {
  margin-top: 20px;
}
.content-wrapper > * + * {
  margin-top: 20px;
}

/* ===============================
   PRINT SUPPORT (Optional)
   ===============================*/
@media print {
  header, nav, .cta-btn, footer, .cookie-banner, .mobile-menu {
    display: none !important;
  }
  section, main {
    background: #fff !important;
    box-shadow: none !important;
    color: #000;
  }
}
