/* ------------------------------------------
   RESET & BASE TYPOGRAPHY
---------------------------------------------*/
html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #fff;
  color: #17435E;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #17435E;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #F49C28;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #17435E;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.005em;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1.1rem; }
p, ul, ol, li {
  margin-bottom: 12px;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
}
strong { font-weight: 600; }
hr {
  border: none;
  height: 1px;
  background: #EFEFEF;
  margin: 32px 0;
}

/* ------------------------------------------
   LAYOUT HELPERS
---------------------------------------------*/
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

/* ------------------------------------------
   HEADER, NAVIGATION
---------------------------------------------*/
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 6px rgba(23,67,94,.04);
  position: relative;
  z-index: 40;
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 0 20px;
}
.logo img {
  height: 38px;
  width: auto;
  transition: filter 0.15s;
}
/* Main nav (Desktop) */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 6px 0;
  color: #17435E;
  opacity: .92;
  position: relative;
  transition: color 0.18s, opacity 0.18s;
}
.main-nav a.cta-primary {
  color: #fff;
  background: #17435E;
  border-radius: 24px;
  padding: 10px 28px;
  margin-left: 10px;
  font-weight: 600;
  box-shadow: 0 2px 14px rgba(23,67,94,0.07);
  transition: background 0.14s, color 0.14s, box-shadow 0.14s;
}
.main-nav a.cta-primary:hover,
.main-nav a.cta-primary:focus {
  background: #F49C28;
  color: #17435E;
  box-shadow: 0 4px 18px rgba(244,156,40,0.15);
}
.main-nav a:not(.cta-primary):hover,
.main-nav a:not(.cta-primary):focus {
  color: #F49C28;
  opacity: 1;
}

/* Hamburger / Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  font-size: 1.85rem;
  color: #17435E;
  padding: 4px 18px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
  z-index: 101;
}
.mobile-menu-toggle:focus {
  outline: none;
  border: 2px solid #F49C28;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 10px 32px rgba(23,67,94, 0.13);
  transform: translateX(-100%);
  transition: transform 0.37s cubic-bezier(.68,.02,.49,.99);
  z-index: 2000;
  opacity: 0.98;
  padding: 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 26px 30px;
  background: none;
  color: #17435E;
  font-size: 2.1rem;
  border-radius: 12px;
  padding: 2px 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.12s, color 0.12s, border 0.15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #F49C28;
  border: 2px solid #F49C28;
  background: #EFEFEF;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100vw;
  gap: 0;
  align-items: flex-start;
  padding-left: 42px;
  margin-top: 28px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  padding: 17px 0;
  width: 100%;
  color: #17435E;
  border-bottom: 1px solid #EFEFEF;
  transition: color 0.18s, background 0.18s;
  border-radius: 0;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #F49C28;
  background: #EFEFEF;
}

/* Hide nav & show burger on mobile */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}

/* ------------------------------------------
   HERO SECTION
---------------------------------------------*/
.hero {
  background: #EFEFEF;
  display: flex;
  align-items: center;
  min-height: 340px;
  margin-bottom: 60px;
  padding: 40px 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  align-items: flex-start;
  padding: 0;
  gap: 10px;
}
.hero h1 {
  font-size: 2.5rem;
  color: #17435E;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.13rem;
  color: #17435E;
  margin-bottom: 28px;
}

/* ------------------------------------------
   CTA BUTTONS
---------------------------------------------*/
.cta-primary, .cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border-radius: 1000px;
  min-width: 180px;
  padding: 13px 46px;
  font-size: 1.1rem;
  cursor: pointer;
  border: none;
  transition: background 0.15s, color 0.13s, box-shadow 0.16s, transform 0.11s;
  box-shadow: 0 2px 16px rgba(23,67,94, 0.04);
  margin-top: 18px;
  margin-bottom: 20px;
}
.cta-primary {
  background: #17435E;
  color: #fff;
}
.cta-primary:hover, .cta-primary:focus {
  background: #F49C28;
  color: #17435E !important;
  box-shadow: 0 4px 32px rgba(244,156,40,0.06);
  transform: translateY(-3px) scale(1.03);
}
.cta-secondary {
  background: #fff;
  color: #17435E;
  border: 2px solid #17435E;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #17435E;
  color: #fff;
  border-color: #F49C28;
  box-shadow: 0 4px 28px rgba(23,67,94,0.06);
}

/* ------------------------------------------
   FEATURES & CARD LAYOUTS
---------------------------------------------*/
.features, .services, .about-preview, .services-overview, .tips, .diy-ideas, .team, .process, .callout-box, .seasonal-recommendations, .project-list, .toolkit-list {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(23,67,94,0.07);
  padding: 32px 24px;
  min-width: 245px;
  flex: 1 1 270px;
  transition: box-shadow 0.14s, transform 0.14s;
  margin-bottom: 20px;
  border: 1px solid #EFEFEF;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 8px 40px rgba(244,156,40,0.13);
  transform: translateY(-6px) scale(1.03);
}

/* About team cards */
.team-member-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  width: 100%;
}
.team-member {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px rgba(23,67,94,0.06);
  padding: 24px 20px;
  min-width: 190px;
  flex: 1 1 200px;
  margin-bottom: 20px;
  border: 1px solid #EFEFEF;
  transition: box-shadow 0.15s, transform 0.14s;
}
.team-member:hover, .team-member:focus-within {
  box-shadow: 0 8px 34px rgba(244,156,40,0.10);
  transform: translateY(-2px) scale(1.02);
}

/* Card/Tip Grids */
.tip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 24px;
}
.tip-item {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 12px rgba(23,67,94,0.05);
  padding: 20px 14px;
  flex: 1 1 170px;
  min-width: 145px;
  margin-bottom: 20px;
  border: 1px solid #EFEFEF;
}

.project-list, .toolkit-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  list-style: disc inside none;
}

/* Callout/Tips */
.callout-box, .tip-box {
  background: #F49C28;
  color: #17435E;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.09rem;
  padding: 20px 24px;
  border-radius: 16px;
  margin-top: 16px;
  box-shadow: 0 2px 12px rgba(244,156,40,0.08);
}

.seasonal-recommendations {
  background: #17435E;
  color: #fff;
  padding: 18px 25px;
  border-radius: 10px;
  margin-top: 24px;
  font-size: 1.07rem;
}

/* Content Grids for Card Containers */
.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(23,67,94,.07);
  padding: 26px 20px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  border: 1px solid #EFEFEF;
  position: relative;
  transition: box-shadow 0.12s, transform 0.14s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 7px 34px rgba(244,156,40,0.10);
  transform: translateY(-3px);
}

/* ------------------------------------------
   TESTIMONIALS STYLES
---------------------------------------------*/
.testimonials {
  width: 100%;
  background: #EFEFEF;
  margin-bottom: 60px;
  padding: 40px 0;
}
.testimonials .content-wrapper {
  align-items: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 32px;
  margin-bottom: 20px;
  background: #fff;
  color: #17435E;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(23,67,94,0.10);
  font-size: 1.07rem;
  max-width: 680px;
  border: 1.5px solid #EFEFEF;
  transition: box-shadow 0.14s, transform 0.12s;
}
.testimonial-card span {
  display: block;
  color: #F49C28;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 38px rgba(244,156,40,0.11);
  transform: translateY(-2.5px);
}

/* -------------------------------------------
   GENERAL SECTION STYLING & SPACING
---------------------------------------------*/
section {
  margin-bottom: 60px;
  padding: 40px 0;
  width: 100%;
}

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

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* ------------------------------------------
   CTA & ABOUT, SERVICES, LEGAL, THANK YOU
---------------------------------------------*/
.cta {
  width: 100%;
  background: #17435E;
  color: #fff;
  margin-bottom: 0;
  margin-top: 40px;
  padding: 48px 0 40px 0;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 8px 28px rgba(23,67,94,0.05);
}
.cta h2, .cta p {
  color: #fff;
}
.cta .cta-primary {
  background: #F49C28;
  color: #17435E;
}
.cta .cta-primary:hover, .cta .cta-primary:focus {
  background: #fff;
  color: #F49C28;
}

.legal {
  background: #fff;
  color: #17435E;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(23,67,94,0.07);
  margin-top: 48px;
  margin-bottom: 60px;
  padding: 40px 26px;
}
.legal h1, .legal h2 { color: #17435E; }

.thank-you {
  background: #EFEFEF;
  border-radius: 18px;
  padding: 60px 0;
  margin-top: 64px;
  margin-bottom: 0;
}
.thank-you h1 {
  font-size: 2.2rem;
  margin-bottom: 22px;
}

/* ------------------------------------------
   CONTACT BLOCK
---------------------------------------------*/
.contact {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(23,67,94,0.09);
  margin-bottom: 48px;
  padding: 36px 0;
}
.contact h2 {
  color: #17435E;
}
.contact-info-block {
  background: #EFEFEF;
  border-radius: 13px;
  padding: 23px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #17435E;
  font-size: 1.05rem;
  box-shadow: 0 0px 12px rgba(23,67,94,0.03);
}
.contact-info-block a {
  text-decoration: underline;
  color: #17435E;
  font-weight: 500;
}
.contact-info-block a:hover { color: #F49C28; }

/* ------------------------------------------
   FOOTER
---------------------------------------------*/
footer section {
  background: #EFEFEF;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -2px 14px rgba(23,67,94,0.04);
  margin-bottom: 0;
  padding: 40px 0 20px 0;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.footer-logo {
  flex: 0 1 105px;
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}
.footer-logo img {
  width: 105px;
  height: auto;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 180px;
}
.footer-menu a {
  color: #17435E;
  opacity: 0.85;
  font-size: 1rem;
  margin-bottom: 2px;
}
.footer-menu a:hover {color: #F49C28; opacity: 1;}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 250px;
  font-size: 1rem;
  color: #17435E;
}
.footer-contact img {
  height: 17px;
  vertical-align: middle;
  margin-right: 9px;
  display: inline;
}
.footer-social {
  display: flex;
  gap: 19px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.footer-social a {
  background: #fff;
  border-radius: 100%;
  width: 37px; height: 37px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(23,67,94,.07);
  transition: box-shadow 0.14s, background 0.13s;
}
.footer-social img {height: 22px; filter: grayscale(12%) contrast(0.8);}
.footer-social a:hover,
.footer-social a:focus { box-shadow: 0 4px 24px rgba(244,156,40,0.10); background: #F49C28; }
.footer-social a:hover img, .footer-social a:focus img { filter: none; }

/* ------------------------------------------
   COOKIE BANNER + PREFERENCES MODAL
---------------------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  background: #17435E;
  color: #fff;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  box-shadow: 0 -4px 24px rgba(23,67,94,.14);
  padding: 24px 16px;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  animation: slideInBottom 0.55s cubic-bezier(.57,.21,.69,1.25);
}
@keyframes slideInBottom {
  0% { transform: translateY(100%); opacity: 0; }
  80% { transform: translateY(-12px); opacity: .88; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #fff;
  font-size: 1.03rem;
  margin-bottom: 0;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border-radius: 1000px;
  padding: 9px 25px;
  font-size: 1rem;
  border: none;
  margin-top: 0;
  margin-bottom: 0;
  cursor: pointer;
  transition: background 0.17s, color 0.13s, border 0.12s;
  outline: none;
}
.cookie-btn.accept {
  background: #F49C28;
  color: #17435E;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #fff;
  color: #F49C28;
}
.cookie-btn.reject {
  background: #EFEFEF;
  color: #17435E;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #fff;
  border: 2px solid #F49C28;
}
.cookie-btn.settings {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #17435E;
  border: 2px solid #F49C28;
  color: #F49C28;
}

/* Cookie Preferences Modal */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 5100;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(23,67,94, 0.36);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.35s cubic-bezier(.57,.21,.69,1.25);
}
@keyframes fadeInModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #17435E;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(23,67,94,0.16);
  min-width: 330px;
  max-width: 96vw;
  padding: 36px 30px 28px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: modalPopIn 0.30s cubic-bezier(.72,.05,.77,1.02);
}
@keyframes modalPopIn {
  0% { transform: scale(.87) translateY(24px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: #17435E;
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-modal .category {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px 0 5px 0;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  color: #17435E;
}
.cookie-modal .toggle {
  margin-left: auto;
  background: #EFEFEF;
  border-radius: 15px;
  width: 48px;
  height: 27px;
  position: relative;
  cursor: pointer;
  border: none;
}
.cookie-modal .toggle input {
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0; top: 0;
  cursor: pointer;
}
.cookie-modal .toggle-slider {
  position: absolute;
  left: 1px; top: 1px;
  width: 25px; height: 25px;
  background: #F49C28;
  border-radius: 100%;
  transition: left 0.22s cubic-bezier(.71,.17,.6,1.13);
}
.cookie-modal .toggle.active .toggle-slider {
  left: 22px;
  background: #17435E;
}
.cookie-modal .category .category-description {
  color: #626e7c;
  font-size: 0.98rem;
  margin-left: 13px;
}
.cookie-modal .category.essential .toggle,
.cookie-modal .category.essential .toggle-slider {
  background: #cccccc;
  cursor: not-allowed;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  align-items: center;
}
.cookie-modal .cookie-btn {
  font-size: 1rem;
  min-width: 128px;
}
.cookie-modal .close-modal {
  background: none;
  border: none;
  color: #17435E;
  font-size: 2rem;
  position: absolute;
  top: 16px; right: 24px;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: #F49C28;
}

/* Hide cookie/modal by default */
.cookie-banner.hidden, .cookie-modal-backdrop.hidden {
  display: none !important;
}

/* ------------------------------------------
   RESPONSIVE DESIGN (MOBILE-FIRST)
---------------------------------------------*/
@media (max-width: 900px) {
  .container {
    max-width: 92vw;
    padding: 0 12px;
  }
  .feature-grid, .team-member-list, .content-grid, .footer-content {
    gap: 16px;
  }
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-logo {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .hero {
    min-height: unset;
    padding: 24px 0;
    margin-bottom: 30px;
  }
  .feature-grid, .team-member-list {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item, .team-member {
    min-width: unset;
    width: 100%;
    padding: 18px 12px;
  }
  .about-preview, .services, .tips, .diy-ideas, .team, .process, .callout-box, .seasonal-recommendations, .project-list, .toolkit-list {
    padding: 18px 0;
  }
  .content-wrapper {
    padding: 0;
  }
  .text-image-section {
    flex-direction: column !important;
    align-items: flex-start;
    gap: 25px;
  }
  section, .section {
    margin-bottom: 38px;
    padding: 22px 0;
  }
  .cta {
    padding: 26px 0;
    border-radius: 0;
  }
  .thank-you {
    padding: 40px 0;
  }
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .cookie-modal {
    padding: 16px 7vw 13px 7vw;
    min-width: unset;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.30rem; }
  h2 { font-size: 1.10rem; }
  .container {
    max-width: 99vw;
    padding: 0 4vw;
  }
  .feature-item, .team-member, .tip-item, .card, .testimonial-card, .callout-box, .tip-box, .legal, .seasonal-recommendations {
    padding-left: 7vw;
    padding-right: 7vw;
  }
  .testimonial-card {
    max-width: 99vw;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .team-member, .feature-item, .card {
    min-width: unset;
    width: 100%;
  }
  .footer-menu, .footer-contact, .footer-social {
    min-width: unset;
  }
}

/* ------------------------------------------
   MISCELLANEOUS ENHANCEMENTS
---------------------------------------------*/
::-webkit-scrollbar {width:8px;background: #EFEFEF;}
::-webkit-scrollbar-thumb {background: #d3d7db;border-radius:12px;}
::-webkit-scrollbar-thumb:hover {background: #cacecf;}

::selection {
  background: #F49C28!important;
  color: #17435E!important;
}

/* Micro-interactions for interactive elements */
button, .cta-primary, .cta-secondary, .footer-social a, .main-nav a, .mobile-nav a, .cookie-btn {
  transition: box-shadow 0.15s, color 0.15s, background 0.16s, transform 0.11s;
}
button:focus, a:focus { outline: 2px solid #F49C28; outline-offset: 2px; }

/* Hide visually (for screenreader toggles, etc.) */
.visually-hidden {
  position: absolute!important;
  width: 1px!important;
  height: 1px!important;
  margin: -1px!important;
  clip: rect(0 0 0 0)!important;
  overflow: hidden!important;
  padding: 0!important;
  border: 0!important;
}
