/* ========================================================
   CSS RESET & NORMALIZE (Mobile First)
   ======================================================== */
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, main, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  height: 100%;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #253049;
  background: #FFF;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
a {
  color: #253049;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.61,1,.88,1);
}
a:focus {
  outline: 2px solid #F6B746;
  outline-offset: 2px;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}
ul, ol {
  margin-left: 1.25em;
}

/* ========================================================
   BRAND FONTS & HEADINGS
   ======================================================== */
@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&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: normal;
  font-weight: 900;
  letter-spacing: -.5px;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  line-height: 1.15;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 18px;
  font-weight: 700;
  line-height: 1.15;
}
h3 {
  font-size: 1.18rem;
  margin-bottom: 14px;
  font-weight: 700;
  line-height: 1.25;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 600;
}
p, ul, ol, blockquote, li {
  font-size: 1rem;
  line-height: 1.7;
  color: #253049;
  font-family: 'Open Sans', Arial, sans-serif;
}
strong {
  font-weight: 600;
}

.subheadline {
  color: #253049;
  font-size: 1.15rem;
  font-style: italic;
  margin-bottom: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.7px;
}

/* ========================================================
   GLOBAL SPACING, CONTAINERS & SECTION LAYOUTS
   ======================================================== */
.container {
  width: 100%;
  max-width: 1090px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (min-width: 600px) {
  .section, section {
    padding: 60px 0;
  }
}

/* ========================================================
   CREATIVE ARTISTIC BRAND COLORS & ACCENTS
   ======================================================== */
:root {
  --primary: #253049;
  --secondary: #98C5B5;
  --accent: #F6B746;
  --gray-bg: #f7f5ee;
  --card-shadow: 0 2px 24px rgba(37,48,73,0.11), 0 1.5px 0.5px rgba(246,183,70,0.13);
  --soft-border: rgba(37,48,73,0.08);
}

/* ========================================================
   HEADER & MAIN NAVIGATION
   ======================================================== */
header {
  position: relative;
  background: #FFF;
  box-shadow: 0 2px 12px rgba(37,48,73,0.07);
  z-index: 20;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.main-nav > a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  position: relative;
  transition: color 0.2s, background 0.2s;
  color: var(--primary);
  background: transparent;
  margin-right: 2px;
}
.main-nav > a.cta-primary {
  margin-left: auto;
  background: var(--accent);
  color: var(--primary);
  box-shadow: 0 2px 7px rgba(246,183,70,0.13);
  font-weight: bold;
  transition: transform 0.15s, box-shadow 0.2s, background 0.22s;
}
.main-nav > a.cta-primary:hover,
.main-nav > a.cta-primary:focus {
  background: #ffe4a9;
  color: var(--primary);
  outline: none;
  transform: translateY(-2px) scale(1.042);
  box-shadow: 0 4px 17px rgba(246,183,70,0.25);
}
.main-nav > a:not(.cta-primary):hover,
.main-nav > a:not(.cta-primary):focus {
  background: var(--secondary);
  color: var(--primary);
  outline: none;
}
.main-nav > a img {
  vertical-align: middle;
  height: 38px;
}

/* Hide nav on mobile (burger menu will show) */
@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
}

/* ========================================================
   MOBILE MENU (BURGER NAVIGATION)
   ======================================================== */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  font-size: 2rem;
  border-radius: 50%;
  color: var(--primary);
  background: #fff;
  box-shadow: 0 2px 12px rgba(150,150,160,0.06);
  margin: 10px 12px 10px auto;
  position: relative;
  z-index: 31;
  transition: box-shadow 0.15s, background 0.15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--secondary);
  box-shadow: 0 6px 21px rgba(37,48,73,0.16);
  outline: none;
}
@media (min-width: 992px) {
  .mobile-menu-toggle {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #fef6e2;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.75,.2,.17,1);
  z-index: 70;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 30px;
  box-shadow: 0 0 100px 40px #e5d49d44;
}
.mobile-menu.active {
  transform: translateX(0);
  box-shadow: 0 0 100px 40px #e5d49d44;
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: var(--primary);
  background: #fff;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  margin: 0 32px 12px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 9px 0 #98C5B577;
  transition: background 0.25s, color 0.2s;
  z-index: 80;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--accent);
  color: #fff;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  margin: 24px 32px;
  width: 75vw;
  max-width: 400px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.19rem;
  color: var(--primary);
  background: transparent;
  padding: 13px 20px;
  border-radius: 16px 0 16px 0;
  font-weight: 700;
  transition: background 0.19s, color 0.18s;
}
.mobile-nav a.cta-primary {
  background: var(--accent);
  color: var(--primary);
  font-weight: bold;
  margin-top: 18px;
}
.mobile-nav a.cta-primary:focus,
.mobile-nav a.cta-primary:hover {
  background: #ffd068;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: var(--secondary);
  color: var(--primary);
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none;
  }
}

/* ========================================================
   HERO SECTION (Creative Artistic)
   ======================================================== */
.hero {
  background: linear-gradient(120deg, #f6d99d 0%, #98c5b5 100%);
  background-color: #f6d99d;
  border-radius: 0 0 48px 48px;
  box-shadow: 0 7px 32px rgba(153,170,114,0.1);
  min-height: 280px;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
  max-width: 650px;
  margin: 0 auto;
}
.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.25rem;
  color: var(--primary);
  font-weight: 900;
  letter-spacing: -1px;
  text-shadow: 2px 2px 0 #f6b74644;
  line-height: 1.14;
}
.hero .subheadline {
  color: #2b4e3a;
}

@media (max-width: 650px) {
  .hero {
    padding: 32px 0 40px;
    min-height: 230px;
    border-radius: 0 0 20px 20px;
  }
  .hero h1 {
    font-size: 1.38rem;
  }
}

/* ========================================================
   FLEXBOX CONTENT PATTERNS
   ======================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--card-shadow);
  padding: 28px 22px 21px;
  min-width: 260px;
  flex: 1 1 260px;
  transition: box-shadow 0.22s, transform 0.21s;
  border: 1.5px solid var(--soft-border);
}
.card:hover,
.card:focus-within {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 8px 32px rgba(246,183,70,0.19), 0 10px 64px rgba(37,48,73,0.08);
  border-color: #98C5B5;
  z-index: 3;
}
.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: 16px;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* ========================================================
   FEATURES, SERVICES, ICON LISTS
   ======================================================== */
.features .feature-grid, .features .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 30px 0 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fffbe5;
  border-radius: 14px;
  padding: 22px 18px 20px;
  box-shadow: 0 2px 21px #f6b74617;
  border: 1.2px dashed #f6b74688;
  min-width: 190px;
  max-width: 315px;
  flex: 1 1 230px;
  transition: background 0.2s, box-shadow 0.2s;
}
.feature-item img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #ffe8bb;
  box-shadow: 0 2.5px 14px #f6b74629;
  padding: 5px;
}
.feature-item:hover,
.feature-item:focus-within {
  box-shadow: 0 10px 43px #252a4083;
  background: #fffde8;
}
.features .feature-icons {
  display: flex;
  gap: 22px;
  margin-top: 20px;
}
.features .feature-icons img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #f1f8f4;
  box-shadow: 0 2.5px 15px #98c5b578;
  padding: 6px;
  transition: background 0.19s, box-shadow 0.15s;
}

@media (max-width: 599px) {
  .feature-item, .card {
    min-width: 86vw;
    max-width: 100%;
  }
  .feature-grid, .feature-list {
    flex-direction: column;
    gap: 18px;
  }
}

/* ========================================================
   SERVICES SECTION
   ======================================================== */
.services .service-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 22px;
}
.service-item {
  padding: 18px 18px 14px 18px;
  border-radius: 14px;
  background: #eefbfc;
  color: #253049;
  box-shadow: 0 2px 15px #98c5b524;
  border: 1.2px dashed #98c5b566;
  margin-bottom: 20px;
  min-width: 200px;
  transition: background 0.19s, box-shadow 0.19s, transform 0.15s;
}
.service-item strong {
  color: var(--accent);
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 10px;
  display: block;
}
.service-item:hover,
.service-item:focus-within {
  background: #fffed4;
  box-shadow: 0 9px 40px #f6b74620, 0 7px 28px #98c5b519;
  transform: translateY(-3px) scale(1.015);
  z-index: 2;
}

/* ========================================================
   TESTIMONIALS
   ======================================================== */
.testimonials {
  background: #f7f5ee;
  border-radius: 28px;
  box-shadow: 0 2px 18px #98c5b528;
  margin-bottom: 50px;
}
.testimonials h2 {
  color: var(--primary);
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 20px #25304913;
  margin-top: 0;
  color: #25232A;
  min-width: 220px;
  max-width: 650px;
  border: 1.2px dashed #98C5B566;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  position: relative;
}
.testimonial-card blockquote {
  margin: 0;
  font-size: 1.06rem;
  font-style: italic;
  color: #1e253e;
}
.testimonial-card cite {
  font-size: 0.97rem;
  margin-left: 15px;
  color: #5b646e;
  font-style: normal;
  font-family: 'Montserrat', Arial, sans-serif;
  position: relative;
}
.testimonial-card:before {
  content: '“';
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 3rem;
  color: #f6b746aa;
  line-height: 1;
  position: absolute;
  left: 12px;
  top: 10px;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 520px) {
  .testimonial-card {
    flex-direction: column;
    gap: 5px;
    padding: 14px 10px;
    font-size: 0.98rem;
  }
  .testimonial-card:before {
    font-size: 2.1rem;
    left: 6px;
    top: 4px;
  }
}

/* ========================================================
   CONTACT / MAP SECTIONS
   ======================================================== */
.contact .text-section, .map {
  margin-bottom: 14px;
}
.text-section {
  margin-bottom: 18px;
  color: #253049;
}
.map {
  background: #edfbf7;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 18px;
  margin-top: 18px;
  box-shadow: 0 2px 13px #98c5b52a;
}
.map img {
  width: 42px;
  height: 42px;
}
@media (max-width: 520px) {
  .map {
    flex-direction: column;
    gap: 6px;
    padding: 10px 6px;
  }
}

/* ========================================================
   LEGAL/CONFIRMATION/INFO PAGES
   ======================================================== */
.legal {
  background: #fcfaf6;
  border-radius: 22px;
  box-shadow: 0 2px 15px #25304913;
}
.confirmation {
  text-align: center;
  background: #edfbf6;
  border-radius: 22px;
  box-shadow: 0 2px 13px #98c5b540;
}

/* ========================================================
   BUTTONS & CALLS TO ACTION
   ======================================================== */
.cta-primary, .cta-secondary, .cookie-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  background: var(--accent);
  color: var(--primary);
  border-radius: 14px;
  padding: 12px 28px;
  margin-top: 15px;
  box-shadow: 0 2px 13px #f6b7461b;
  letter-spacing: 0.5px;
  transition: box-shadow 0.16s, transform 0.18s, background 0.16s, color 0.14s;
  border: none;
}
.cta-secondary {
  background: var(--secondary);
  color: #253049;
  margin-left: 4px;
}
.cta-primary:hover, .cta-primary:focus,
.cta-secondary:hover, .cta-secondary:focus,
.cookie-btn:hover, .cookie-btn:focus {
  background: #fbeccd;
  color: #253049;
  box-shadow: 0 6px 28px #f6b7462f;
  transform: scale(1.035);
  outline: none;
}
.cta-primary:active, .cta-secondary:active {
  background: #fdde9f;
  color: #253049;
}
/* Cookie banner button colors override */
.cookie-btn.accept {
  background: var(--accent);
  color: var(--primary);
}
.cookie-btn.reject {
  background: #253049;
  color: #fff;
}
.cookie-btn.settings {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #c7eadd;
}

/* ========================================================
   FOOTER
   ======================================================== */
footer {
  background: #F5F5F9;
  padding: 30px 0 12px 0;
  border-top: 1.5px solid #ccc7be11;
  text-align: center;
  font-size: 0.93rem;
  color: #34395c;
  margin-top: 30px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 9px;
}
.footer-nav a {
  color: #253049;
  font-size: 1rem;
  border-radius: 7px;
  background:transparent;
  padding: 5px 9px;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.17s, color 0.13s;
}
.footer-nav a:focus,
.footer-nav a:hover {
  background: #f6b74647;
}

/* ========================================================
   COOKIE CONSENT BANNER
   ======================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fffdf4;
  color: #253049;
  box-shadow: 0 -2px 24px #25304914;
  z-index: 502;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
  padding: 26px 22px 22px 22px;
  font-size: 1rem;
  border-top: 2.5px solid #f6b74675;
  animation: bannerFadeIn 0.7s 0.05s cubic-bezier(.6,.52,.45,1.11);
}
@keyframes bannerFadeIn {
  from { transform: translateY(150px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btn {
  margin: 0 6px;
  padding: 9px 19px;
  font-size: 1rem;
  border-radius: 9px;
  min-width: 110px;
}
.cookie-banner .cookie-btn:focus {
  outline: 2.5px solid var(--accent);
  outline-offset: 2px;
}
.cookie-banner input[type=checkbox] {
  accent-color: var(--accent);
}
@media (max-width: 520px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    font-size: 0.96rem;
    padding: 16px 8px 12px 8px;
  }
  .cookie-banner .cookie-btn {
    width: 95%;
    max-width: 320px;
    margin: 4px 0;
  }
}
/* -------- Cookie Modal --------- */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,70px) scale(0.92);
  min-width: 300px;
  max-width: 96vw;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0px 12px 110px rgba(246,183,70,0.21), 0 2px 25px #98c5b521;
  z-index: 510;
  display: none;
  flex-direction: column;
  gap: 20px;
  padding: 38px 30px 27px;
  animation: modalSlideIn 0.4s cubic-bezier(.7,1.4,.34,.96);
}
.cookie-modal.active {
  display: flex;
  animation: modalSlideIn 0.38s cubic-bezier(.77,1.22,.29,.85);
}
@keyframes modalSlideIn {
  from { transform: translate(-50%,240px) scale(.7); opacity:0; }
  to   { transform: translate(-50%,70px) scale(0.92); opacity:1; }
}
.cookie-modal h2 {
  margin-top: 0;
  font-size: 1.25rem;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
}
.cookie-modal label {
  font-size: 1.05rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-modal .category input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  right: 22px;
  top: 22px;
  background: #fffae5;
  color: var(--primary);
  border-radius: 50%;
  border: 0;
  width: 34px;
  height: 34px;
  font-size: 1.29rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3px 10px #f6b74611;
  transition: background 0.13s;
}
.cookie-modal .close-cookie-modal:focus,
.cookie-modal .close-cookie-modal:hover {
  background: var(--accent);
  color: #fff;
}

/* Overlay for modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(37,48,73,0.15);
  z-index: 509;
}
.cookie-modal.active ~ .cookie-modal-overlay {
  display: block;
}

@media (max-width: 430px) {
  .cookie-modal {
    padding: 18px 6vw 13px 6vw;
    min-width: 0;
    max-width: 98vw;
    font-size: 0.94rem;
  }
  .cookie-modal .close-cookie-modal {
    right: 9px;
    top: 11px;
  }
}

/* ========================================================
   ARTISTIC DETAILS
   ======================================================== */
/* Decorative squiggle under h1/h2 creative style */
h1, h2 {
  position: relative;
  z-index: 2;
}
h1:after, h2:after {
  content: '';
  display: block;
  width: 64px;
  height: 6px;
  margin: 9px 0 0 1.5px;
  border-radius: 8px;
  background: var(--accent);
  opacity: 0.35;
}
@media (max-width: 500px) {
  h1:after, h2:after {
    width: 38px;
    height: 5px;
    margin-top: 6px;
  }
}

/* Bouncy animation for .cta-primary on hover (artistic touch) */
.cta-primary:hover, .cta-primary:focus {
  animation: bounceCta .42s cubic-bezier(.42,1.32,.43,1.03);
}
@keyframes bounceCta {
  0%   { transform: scale(1); }
  36%  { transform: scale(1.13); }
  58%  { transform: scale(0.97); }
  77%  { transform: scale(1.06); }
  100% { transform: scale(1); }
}

/* Decorative artistic line for .section creative-artistic: can be used as needed */
.section {
  position: relative;
}
.section:before {
  content: '';
  display: block;
  width: 70px;
  height: 5px;
  border-radius: 18px;
  background: var(--secondary);
  opacity: 0.18;
  position: absolute;
  left: 21px;
  top: 20px;
  z-index: 0;
}

@media (max-width: 600px) {
  .section:before {
    width: 38px;
    height: 3px;
    left: 11px;
    top: 13px;
  }
}

/* Artistic fonts effect for intro/hero section (display font bolder and more angular) */
.hero h1, .hero .subheadline {
  letter-spacing: 1.2px;
  text-transform: none;
}

/* ========================================================
   GENERAL RESPONSIVE DESIGN
   ======================================================== */
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 7px;
  }
  .content-wrapper {
    gap: 16px;
  }
  .section, section {
    margin-bottom: 40px;
    padding: 32px 7px;
  }
  .hero {
    border-radius: 0 0 18px 18px;
  }
}
@media (max-width: 480px) {
  .section, section {
    padding: 18px 2px;
    margin-bottom: 16px;
  }
}

/* ========================================================
   ACCESSIBILITY & MICRO-INTERACTIONS
   ======================================================== */
button:focus, a:focus {
  outline: 2.5px solid var(--accent);
  outline-offset: 1.5px;
}
input:focus {
  outline: 2.5px solid var(--secondary);
}

/* Microinteraction for feature-item images */
.feature-item img:hover {
  background: #fff8e2;
  box-shadow: 0 4px 30px #f6b74633;
}
/* Transition for feature-item and service-item visual feedback */
.feature-item, .service-item {
  transition: box-shadow 0.18s, background 0.18s, border 0.21s, transform 0.16s;
}

/* ============= CUSTOM SCROLLBAR (artistic/listic) ===================== */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-thumb {
  background: #f6b74688;
  border-radius: 11px;
}
::-webkit-scrollbar-track {
  background: #f7f5ee;
}

/* ============= Z-INDEX LAYERS FOR ENSURING OVERLAP PRIORITY =========== */
header { z-index: 100; position: relative; }
.mobile-menu { z-index: 140; }
.cookie-banner, .cookie-modal-overlay, .cookie-modal { z-index: 150; }

/* ========================================================
   END OF STYLES
   ======================================================== */
