/* ================== 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, 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #F8FAFB;
  color: #2C3A47;
}
img, picture, video {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  background: transparent;
}
ul, ol {
  padding-left: 22px;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 16px;
  text-align: left;
}

/* =========== BRAND FONTS & BASE TYPOGRAPHY ============ */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500,400|Roboto:400,500,700&display=swap');
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #F8FAFB;
  min-height: 100vh;
  color: #2C3A47;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.04em;
  font-weight: 700;
  color: #2C3A47;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  font-weight: 700;
  text-transform: uppercase;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 600;
  text-transform: uppercase;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
h4, h5, h6 {
  font-size: 1.15rem;
  font-weight: 500;
}
p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 12px;
  line-height: 1.7;
}
p.subheadline {
  font-size: 1.22rem;
  color: #4ABDAC;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 28px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
strong {
  font-weight: 700;
}

/* ========= CONTAINER & LAYOUT STRUCTURE ========== */
.container {
  width: 100%;
  max-width: 1120px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* =========== FLEX UTILITIES =========== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(44,58,71,0.06), 0 1.5px 5px rgba(74,189,172,0.08);
  padding: 28px;
  transition: box-shadow 0.23s;
}
.card:hover, .service-card:hover, .testimonial-card:hover {
  box-shadow: 0 4px 19px rgba(74,189,172,0.14), 0 3px 12px rgba(44,58,71,0.13);
}
.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: #f3f5f7;
  border-left: 5px solid #4ABDAC;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(44,58,71,0.06);
  margin-bottom: 20px;
  transition: background 0.22s, border-color 0.22s, box-shadow 0.22s;
}
.testimonial-card:hover {
  background: #e8f9f5;
  border-left-color: #F7B733;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(44,58,71,0.04);
  padding: 24px 20px;
  margin-bottom: 20px;
  border: 1.5px solid #E7ECEE;
}
.feature-item h3 {
  color: #4ABDAC;
}
.feature-item p {
  color: #2C3A47;
}

/* ========== HERO SECTION ========== */
.hero {
  background: #2C3A47;
  color: #fff;
  padding: 70px 0 50px 0;
  display: flex;
  align-items: center;
}
.hero h1, .hero .subheadline {
  color: #fff;
}
.hero .cta-btn {
  margin-top: 22px;
  background: #F7B733;
  color: #2C3A47;
}

/* ========== NAVIGATION & HEADER ========== */
header {
  background: #fff;
  box-shadow: 0 1px 6px rgba(44,58,71,0.06);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
}
.main-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 0 16px 0;
}
.main-navigation > a img {
  height: 46px;
  width: auto;
}
.main-navigation > ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
.main-navigation > ul > li {
  list-style: none;
  margin-bottom: 0 !important;
}
.main-navigation > ul > li > a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #2C3A47;
  font-size: 0.98rem;
  border-radius: 8px;
  padding: 7px 12px;
  transition: background 0.18s, color 0.18s;
}
.main-navigation > ul > li > a:hover, .main-navigation > ul > li > a:focus {
  background: #E7ECEE;
  color: #4ABDAC;
}
.cta-btn {
  background: #4ABDAC;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 17px;
  font-size: 1rem;
  padding: 10px 28px;
  transition: background 0.20s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 8px rgba(44,58,71,0.10);
  cursor: pointer;
  letter-spacing: 0.04em;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #F7B733;
  color: #2C3A47;
  box-shadow: 0 4px 15px rgba(247,183,51,0.17);
}
.cta-btn.secondary {
  background: #F7B733;
  color: #2C3A47;
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: #4ABDAC;
  color: #fff;
}

/* Hamburger (mobile) menu button */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: #4ABDAC;
  margin-left: 12px;
  cursor: pointer;
  z-index: 210;
  transition: color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #F7B733;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #2C3A47;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.84,.07,.18,.93);
  z-index: 2000;
  opacity: 0.99;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  background: none;
  color: #F7B733;
  border: none;
  align-self: flex-end;
  margin: 20px 25px 0 0;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #4ABDAC;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-top: 25px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: none;
  border-radius: 8px;
  padding: 13px 22px;
  transition: background 0.15s, color 0.15s;
  width: 85vw;
  text-align: center;
  margin-bottom: 2px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #4ABDAC;
  color: #2C3A47;
}

/* ======== COOKIE CONSENT BANNER ======== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2500;
  background: #fff;
  color: #2C3A47;
  border-top: 3px solid #4ABDAC;
  box-shadow: 0 -4px 20px rgba(44,58,71,0.13);
  padding: 20px 26px;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 1rem;
  animation: fadeInCookie 0.55s cubic-bezier(.84,.07,.18,.93);
}
@keyframes fadeInCookie {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-message {
  flex: 1 1 300px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  padding: 8px 22px;
  border-radius: 12px;
  cursor: pointer;
  letter-spacing: 0.03em;
  font-size: 1rem;
  transition: background 0.19s, color 0.18s, box-shadow 0.19s;
}
.cookie-banner .accept-btn {
  background: #4ABDAC;
  color: #fff;
  box-shadow: 0 1.5px 5px rgba(44,58,71,0.08);
}
.cookie-banner .accept-btn:hover, .cookie-banner .accept-btn:focus {
  background: #2C3A47;
  color: #fff;
}
.cookie-banner .reject-btn {
  background: #E7ECEE;
  color: #2C3A47;
}
.cookie-banner .reject-btn:hover, .cookie-banner .reject-btn:focus {
  background: #F7B733;
  color: #2C3A47;
}
.cookie-banner .settings-btn {
  background: #fff;
  color: #4ABDAC;
  border: 2px solid #4ABDAC;
}
.cookie-banner .settings-btn:hover, .cookie-banner .settings-btn:focus {
  background: #4ABDAC;
  color: #fff;
  border-color: #4ABDAC;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(44,58,71,0.30);
  z-index: 2800;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  min-width: 310px;
  max-width: 96vw;
  width: 420px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 40px rgba(44,58,71,0.22);
  padding: 32px 30px 30px 30px;
  position: fixed;
  left: 50%;
  bottom: 80px;
  transform: translate(-50%, 80px) scale(0.95);
  opacity: 0;
  z-index: 2850;
  transition: opacity 0.22s, transform 0.22s;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal.open {
  opacity: 1;
  transform: translate(-50%, 0px) scale(1);
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #2C3A47;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal label {
  font-weight: 500;
  font-size: 1rem;
}
.cookie-modal .cookie-toggle {
  width: 38px; height: 22px;
  background: #E7ECEE;
  border-radius: 12px;
  position: relative;
  transition: background 0.21s;
  cursor: pointer;
}
.cookie-modal .cookie-toggle[aria-checked="true"] {
  background: #4ABDAC;
}
.cookie-modal .cookie-toggle .circle {
  position: absolute;
  left: 2px; top: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.2s;
}
.cookie-modal .cookie-toggle[aria-checked="true"] .circle {
  left: 18px;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.cookie-modal .cookie-save {
  background: #4ABDAC;
  color: #fff;
}
.cookie-modal .cookie-cancel {
  background: #E7ECEE;
  color: #2C3A47;
}
.cookie-modal .cookie-save:hover, .cookie-modal .cookie-save:focus {
  background: #F7B733;
  color: #2C3A47;
}
.cookie-modal .cookie-cancel:hover, .cookie-modal .cookie-cancel:focus {
  background: #4ABDAC;
  color: #fff;
}

/* ================= CONTENT SECTIONS ================ */
.section, section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: none;
}
.about, .features, .services, .testimonials {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(44,58,71,0.06);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  list-style: none;
  margin: 24px 0 0 0;
}
.feature-grid li {
  flex: 1 1 220px;
  min-width: 180px;
  background: #E7ECEE;
  border-radius: 14px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  font-size: 1rem;
  color: #2C3A47;
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: 0 1.5px 5px rgba(44,58,71,0.05);
  margin-bottom: 0;
  border-left: 5px solid #4ABDAC;
}
.feature-grid li img {
  height: 34px;
  margin-bottom: 8px;
}
.feature-grid li strong {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #4ABDAC;
  margin-bottom: 2px;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.feature-list > li, .feature-list > .feature-item {
  flex: 1 1 250px;
  min-width: 180px;
}

/* ================ SERVICES / CARD LAYOUTS ================ */
.service-highlights, .detailed-service-listings {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-card {
  background: #E7ECEE;
  border-radius: 14px;
  padding: 28px 20px 22px 20px;
  flex: 1 1 230px;
  min-width: 180px;
  box-shadow: 0 1.5px 8px rgba(44,58,71,0.07);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0 !important;
}
.service-card h3 {
  color: #2C3A47;
  font-size: 1.22rem;
}
.service-card .service-price {
  background: #F7B733;
  color: #2C3A47;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 8px;
  font-size: 1.08rem;
  font-weight: 700;
  padding: 3.5px 13px;
  margin-top: 5px;
  letter-spacing: 0.02em;
  align-self: flex-end;
}
.pain-points {
  margin: 36px 0 18px 0;
  padding: 0 6px 0 6px;
}
.pain-points h3 {
  margin-bottom: 8px;
  color: #F7B733;
  font-size: 1.13rem;
}
.pain-points ul {
  list-style: disc outside;
  margin-left: 18px;
  color: #2C3A47;
}

/* =========== BLOG POSTS =========== */
.featured-articles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.blog-post {
  flex: 1 1 270px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(74,189,172,0.07);
  padding: 20px 16px;
  margin-bottom: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1.5px solid #E7ECEE;
}
.blog-post h3 {
  color: #2C3A47;
  font-size: 1.08rem;
  margin-bottom: 10px;
}
.secondary-link {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #4ABDAC;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-decoration: underline;
  transition: color 0.17s;
}
.secondary-link:hover, .secondary-link:focus {
  color: #F7B733;
}

/* =========== TESTIMONIALS =========== */
.testimonials {
  background: #f9fafb;
  border-radius: 18px;
  box-shadow: 0 3px 10px rgba(44,58,71,0.07);
  margin-bottom: 60px;
  padding: 40px 0;
}
.testimonials h2 {
  text-align: left;
  margin-left: 0;
  margin-bottom: 18px;
  color: #4ABDAC;
}
.testimonial-card {
  background: #fff;
  color: #2C3A47;
  border-left: 5px solid #4ABDAC;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 10px rgba(44,58,71,0.10);
}
.testimonial-card p {
  margin-bottom: 8px;
  font-size: 1.06rem;
  color: #2C3A47;
  font-style: italic;
}
.testimonial-meta {
  color: #2C3A47;
  font-weight: 700;
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
  margin-top: 3px;
}
.testimonial-meta span {
  display: inline-block;
  color: #F7B733;
  font-size: 1.1em;
  margin-left: 8px;
}

/* =========== FOOTER =========== */
footer {
  background: #2C3A47;
  color: #fff;
  padding: 50px 0 30px 0;
  position: relative;
  margin-top: 32px;
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-navigation ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-navigation li {
  margin: 0 !important;
}
.footer-navigation a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.03em;
  border-radius: 8px;
  padding: 7px 10px;
  transition: background 0.16s, color 0.14s;
}
.footer-navigation a:hover, .footer-navigation a:focus {
  background: #4ABDAC;
  color: #2C3A47;
}
.footer-contact p, .footer-contact a {
  color: #fff;
  font-size: 0.97rem;
}
.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 7px;
}
.footer-social a {
  background: #4ABDAC;
  border-radius: 12px;
  padding: 6px;
  display: flex;
  align-items: center;
}
.footer-social a img {
  height: 27px;
  width: 27px;
  display: block;
}
.footer-social a:hover, .footer-social a:focus {
  background: #F7B733;
}

/* ========== TABLE STYLES ========== */
table {
  background: #FFF;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 26px;
  font-size: 0.99rem;
  box-shadow: 0 1px 8px rgba(44,58,71,0.06);
}
th {
  background: #4ABDAC;
  color: #fff;
  text-transform: uppercase;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
}
td {
  background: #FAFCFC;
}
tbody tr:not(:last-child) td {
  border-bottom: 1.5px solid #E7ECEE;
}

/* ========== OTHER STRUCTURAL UTILS ========== */
.brand-contact-info {
  background: #E7ECEE;
  padding: 18px 18px 8px 18px;
  border-radius: 12px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #2C3A47;
  margin-bottom: 18px;
}
.gear-inclusions, .core-values {
  margin: 18px 0;
  list-style: disc outside;
  padding-left: 18px;
  font-family: 'Roboto', Arial, sans-serif;
}

/* ==================== RESPONSIVE / MEDIA QUERIES ==================== */
@media (max-width: 1024px) {
  .container {
    max-width: 94vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  .main-navigation > ul {
    gap: 11px;
  }
}
@media (max-width: 900px) {
  .main-navigation > ul {
    gap: 5px;
  }
  .services .service-card, .detailed-service-listings .service-card, .feature-list > .feature-item, .feature-grid li, .blog-post {
    min-width: 160px;
    flex: 1 1 46%;
  }
  .feature-list, .feature-grid {
    gap: 14px;
  }
  .featured-articles-list {
    gap: 12px;
  }
  footer .container {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2.07rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.11rem; }
  .section, section { padding: 28px 0; }
  .hero { padding: 40px 0 24px 0; }

  .main-navigation > ul, .main-navigation .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .card-container, .service-highlights, .detailed-service-listings, .content-grid, .feature-list, .feature-grid, .featured-articles-list {
    flex-direction: column;
    gap: 18px;
  }
  .card, .service-card, .feature-item, .blog-post, .feature-grid li {
    min-width: 0;
    width: 100%;
    flex: 1 1 100%;
  }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-social, .footer-navigation ul, .footer-contact { flex-direction: column; align-items: flex-start; gap: 10px; }
  footer .container { flex-direction: column; gap: 16px; align-items: flex-start; }
  .cookie-modal {
    left: 50%;
    bottom: 30px;
    width: 97vw;
    min-width: unset;
    padding: 24px 11px 18px 15px;
  }
}
@media (max-width: 480px) {
  .hero { padding: 27px 0 13px 0; }
  .section, section { padding: 13px 0; }
  h1 { font-size: 1.5rem; }
  .footer-social a img {
    height: 23px; width: 23px;
  }
  .mobile-nav a {
    font-size: 0.97rem;
    padding: 11px 10px;
  }
  .cookie-banner {
    padding: 13px 4vw 13px 4vw;
    gap: 8px;
    font-size: 0.97rem;
  }
  .cookie-banner .cookie-actions {
    gap: 8px;
  }
}

/* ================ ANIMATIONS & INTERACTIONS ================ */
.card, .service-card, .feature-item, .testimonial-card, .blog-post {
  transition: box-shadow 0.20s, transform 0.20s;
}
.card:hover, .service-card:hover, .feature-item:hover, .testimonial-card:hover {
  box-shadow: 0 7px 19px rgba(44,58,71,0.15);
  transform: translateY(-2px) scale(1.012);
}

.cta-btn, .cookie-banner button, .cookie-modal button {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.15s;
}
.cta-btn:active, .cookie-banner button:active, .cookie-modal button:active {
  transform: scale(0.97);
}

/* =============== GEOMETRIC/STRUCTURED STYLE =============== */
/* Visual geometric accents */
.hero, header, section {
  position: relative;
}
.hero:before {
  content: '';
  display: block;
  position: absolute;
  left: -50px;
  top: 28px;
  width: 85px;
  height: 85px;
  background: #4ABDAC;
  opacity: 0.07;
  clip-path: polygon(0% 0%, 100% 0%, 60% 100%, 0% 100%);
  z-index: 0;
  pointer-events: none;
}
.hero:after {
  content: '';
  display: block;
  position: absolute;
  bottom: -35px; right: -30px;
  width: 90px; height: 42px;
  background: #F7B733;
  opacity: 0.11;
  clip-path: polygon(30% 0%, 100% 50%, 70% 100%, 0% 100%, 0% 0%);
  z-index: 0;
  pointer-events: none;
}
/* Card geometric shape overlay accents */
.card:before, .service-card:before, .feature-item:before, .testimonial-card:before {
  content: '';
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  width: 40px; height: 40px;
  background: #4ABDAC;
  opacity: 0.07;
  clip-path: polygon(100% 0, 100% 100%, 45% 100%);
  pointer-events: none;
  border-top-right-radius: 16px;
}

/* Only show these props for visual accent, no layout impact */
/* =============== SCROLLBAR =============== */
::-webkit-scrollbar {
  width: 8px;
  background: #E7ECEE;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb {
  background: #4ABDAC;
  border-radius: 4px;
}

/* ============== A11Y/ACCESSIBILITY & FOCUS ============= */
a:focus,
button:focus,
input:focus,
.cta-btn:focus {
  outline: 2.5px solid #F7B733 !important;
  outline-offset: 2px !important;
}

/* Make sure links/buttons have visible focus on mobile too */

/* ============= SPACING OVERRIDES ============= */
.card, .service-card, .feature-item {
  margin-bottom: 20px;
}
.card-container, .service-highlights, .detailed-service-listings, .content-grid, .feature-list, .feature-grid, .featured-articles-list {
  gap: 20px;
}
.text-image-section, .testimonial-card, .feature-item {
  gap: 15px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ============= PREVENT LAYOUT OVERLAP ============= */
.card, .service-card, .feature-item, .testimonial-card, .blog-post {
  z-index: 1;
}

/* ============= PRINT SUPPORT ============= */
@media print {
  header, nav, .mobile-menu, .cookie-banner, .cookie-modal, footer { display: none !important; }
  section, .container { box-shadow: none !important; border-radius: 0 !important; background: #fff !important; }
  body { color: #111 !important; }
}
