/* =========================
   RESET & BASE STYLES
   ========================= */
html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #171d1a;
  background: #F9FAFB;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
::-webkit-input-placeholder { color: #A6BDAA; }
::-moz-placeholder { color: #A6BDAA; }
:-ms-input-placeholder { color: #A6BDAA; }
::placeholder { color: #A6BDAA; }
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #275C2A;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #67996E;
  outline: none;
}
ul, ol {
  margin-left: 1.4em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.4em;
}
strong {
  font-weight: 700;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ===============
   BRAND COLORS
   =============== */
:root {
  --primary: #275C2A;
  --secondary: #67996E;
  --accent: #F2EDE4;
  --high-contrast: #FFF;
  --brand-electric-lime: #c6ff3a;
  --brand-hot-orange: #FF6A2E;
  --brand-aqua: #31d9b2;
  --brand-electric-purple: #8000ff;
  --bg-card: #F9FAFB;
  --border-bright: #DBE6D3;
  --gray-very-light: #F6F6F7;
  --shadow: 0 4px 32px 0 rgba(39,92,42,0.08);
}

/* ===========
   TYPOGRAPHY
   =========== */
h1, h2, h3, h4, h5 {
  color: #171d1a;
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 800;
  text-shadow: 0 2px 9px rgba(199,255,58,0.07);
  margin-bottom: 12px;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.15;
  letter-spacing: 0.01em;
  background: linear-gradient(90deg,var(--brand-hot-orange),var(--primary),var(--brand-aqua),var(--brand-electric-lime));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  color: var(--primary);
  margin-top: 14px;
  background: none;
  -webkit-text-fill-color: initial;
}
h3 {
  font-size: 1.3rem;
  color: var(--secondary);
  font-weight: 700;
}
h4 { font-size: 1.1rem; }

p { margin-bottom: 12px; }

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.1rem;
  }
}

/* =======================
   LAYOUT & SECTION SPACING
   ======================= */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.hero {
  background: linear-gradient(111deg, #e9ffd8 0%, #f6f7ff 70%, #fff0ea 100%);
  position: relative;
  box-shadow: 0 2px 44px 0 rgba(255,106,46,0.09), 0 0 0 0 transparent;
}
.hero .cta-primary {
  margin-top: 26px;
}

/* ===============
   NAVIGATION BAR
   =============== */
header {
  background: #fff;
  box-shadow: 0 1px 24px 0 rgba(39,92,42,0.07);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--secondary);
  padding: 6px 4px;
  border-radius: 7px;
  transition: color 0.16s, background 0.16s;
}
.main-nav a.active, .main-nav a:focus, .main-nav a:hover {
  color: var(--brand-hot-orange);
  background: var(--accent);
}

.cta-primary, .cta-secondary, button, .newsletter-form button, .cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  border-radius: 30px;
  cursor: pointer;
  outline: none;
  border: none;
  display: inline-block;
  transition: all 0.22s cubic-bezier(.29,1.06,.66,1.13);
}
.cta-primary {
  color: var(--high-contrast);
  background: linear-gradient(90deg,var(--brand-hot-orange) 10%,var(--primary) 100%);
  padding: 0.95em 2.5em;
  box-shadow: 0 0 16px 0 rgba(39,92,42,0.08);
  border: 3px solid var(--brand-electric-lime);
  margin-left: 30px;
  margin-top: 0;
}
.cta-primary:focus, .cta-primary:hover {
  background: linear-gradient(90deg,var(--primary) 0%,var(--brand-hot-orange) 95%);
  color: #fff;
  border-color: var(--brand-hot-orange);
  box-shadow: 0 4px 32px 0 #ff6a2e2f;
}
.cta-secondary {
  background: var(--primary);
  color: var(--high-contrast);
  padding: 0.8em 2em;
  border: 2px solid var(--brand-electric-lime);
  box-shadow: 0 0 8px rgba(39,92,42,0.07);
  margin-top: 18px;
}
.cta-secondary:focus, .cta-secondary:hover {
  background: var(--brand-hot-orange);
  color: #fff;
  border-color: var(--brand-electric-lime);
}

/* =============
   MOBILE MENU
   ============= */
.mobile-menu-toggle {
  background: linear-gradient(90deg, var(--brand-hot-orange) 40%, var(--primary) 100%);
  color: #fff;
  font-size: 2.6rem;
  border: none;
  margin-left: 20px;
  border-radius: 16px;
  width: 46px;
  height: 46px;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.22s, box-shadow 0.2s;
  box-shadow: 0 1px 16px 0 rgba(39,92,42,0.1);
  z-index: 100;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--brand-electric-purple);
  color: #fff;
  outline: 2px solid var(--brand-hot-orange);
}
@media (max-width: 1020px) {
  .main-nav {
    display: none !important;
  }
  .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(242,237,228,0.97);
  box-shadow: 0 8px 32px 0 rgba(39,92,42,0.30);
  z-index: 2100;
  transform: translateX(-110vw);
  pointer-events: none;
  opacity: 0;
  transition: transform 0.45s cubic-bezier(.63,1.34,.36,1), opacity 0.3s;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 26px;
  right: 38px;
  background: var(--brand-hot-orange);
  color: #fff;
  font-size: 2.5rem;
  border: none;
  border-radius: 100vw;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2205;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--primary);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 92vw;
  margin-top: 125px;
  gap: 32px;
  font-size: 2rem;
  align-items: flex-start;
}
.mobile-nav a {
  color: var(--primary);
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 700;
  padding: 16px 24px;
  background: none;
  border-radius: 12px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--brand-hot-orange);
  color: #fff;
}
@media (min-width:1021px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ===========
   HERO & CTA
   =========== */
.hero .container {
  min-height: 390px;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
}

/* ================
   FEATURES & CARDS
   ================ */
.feature-grid, .service-cards, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 16px;
}
.feature,
.service-card,
.blog-post,
.testimonial-card,
.team-member,
.faq-item,
.project-story {
  background: var(--bg-card);
  border-radius: 22px;
  box-shadow: 0 2px 28px 0 rgba(31,198,144,0.09), 0 0 1px 0 #c6ff3a22;
  border: 2.5px solid var(--brand-electric-lime);
  padding: 32px 26px 26px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, border 0.13s, transform 0.23s cubic-bezier(.41,1.13,.64,.97);
  margin-bottom: 20px;
  min-width: 250px;
  max-width: 410px;
}
.feature img {
  width: 56px;
  height: 56px;
  margin-bottom: 14px;
  filter: drop-shadow(0 6px 36px var(--brand-hot-orange));
}
.feature:hover, .service-card:hover, .blog-post:hover, .project-story:hover, .faq-item:hover {
  border-color: var(--brand-hot-orange);
  box-shadow: 0 8px 44px 0 rgba(255,106,46,0.18), 0 0 2px 0 #31d9b222;
  transform: translateY(-6px) scale(1.03);
}
.service-card span, .service-card div {
  font-size: 1.06rem;
  color: var(--primary);
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: 3px;
}

.team-member-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.team-member {
  border-left: 9px solid var(--brand-aqua);
  background: var(--accent);
  width: 275px;
  min-width: 200px;
  padding: 22px 18px;
  border-radius: 16px;
  font-size: 1rem;
  box-shadow: 0 1px 28px 0 #31d9b221;
  margin-bottom: 20px;
}
.certifications {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--gray-very-light);
  border-radius: 14px;
  padding: 10px 18px 8px 18px;
  margin-top: 14px;
  margin-bottom: 7px;
}
.certifications img {
  height: 38px;
  width: auto;
}

.project-case-studies {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 24px;
}
.project-story {
  background: var(--accent);
  border-radius: 18px;
  border-left: 7px solid var(--brand-hot-orange);
  box-shadow: 0 1px 22px 0 #ffa85d18;
  padding: 18px 18px 14px 20px;
  min-width: 240px;
  flex: 1 1 280px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}

.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-image-section img {
  border-radius: 16px;
}

.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 24px 0 #275C2A16;
  border: 2px solid var(--brand-electric-lime);
  min-width: 240px;
  max-width: 420px;
  color: #111;
}
.testimonial-card p {
  color: #0b3612;
  margin-bottom: 4px;
  font-size: 1.08rem;
  font-style: italic;
}
.testimonial-card span {
  color: var(--brand-hot-orange);
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 0.99rem;
}

.faq-accordion {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.faq-item {
  flex: 1 1 220px;
  padding: 18px;
  background: var(--gray-very-light);
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  font-size: 1rem;
}
.faq-item strong {
  color: var(--primary);
  margin-bottom: 5px;
  display: block;
}
.faq-item p {
  margin: 0;
}

.blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}
.blog-post {
  background: var(--accent);
  border-radius: 15px;
  min-width: 240px;
  max-width: 380px;
  padding: 24px 18px 18px 22px;
  box-shadow: 0 1px 16px #31d9b21a;
  border: 2px solid var(--brand-hot-orange);
}
.blog-post h3 {
  font-size: 1.17rem;
  color: var(--brand-hot-orange);
}
.blog-post a {
  display: inline-block;
  margin-top: 10px;
  color: var(--primary);
  font-weight: 700;
  border-bottom: 2px solid var(--primary);
  transition: color 0.19s, border-color 0.17s;
}
.blog-post a:hover {
  color: var(--brand-hot-orange);
  border-bottom: 2px solid var(--brand-hot-orange);
}

.blog-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}
.blog-controls input[type='text'] {
  font-size: 1rem;
  padding: 8px 15px;
  border-radius: 26px;
  border: 2px solid var(--brand-electric-lime);
  border-right: 6px solid var(--brand-hot-orange);
  background: #fff;
}
.category-filter {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  margin-left: 12px;
}
.category-filter span { font-weight: 700; }
.category-filter a {
  color: var(--primary);
  font-weight: 600;
  padding: 3px 14px;
  border-radius: 13px;
  border: 2px solid transparent;
  background: #fff;
  transition: background 0.12s, border 0.14s, color 0.17s;
}
.category-filter a:hover, .category-filter a.active {
  background: var(--brand-hot-orange);
  color: #fff;
  border: 2px solid var(--brand-electric-lime);
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-end;
}
.newsletter-form label {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  margin-right: 6px;
}
.newsletter-form input[type='email'] {
  border-radius: 22px;
  border: 2px solid var(--secondary);
  padding: 10px 18px;
  font-size: 1.02rem;
  outline: none;
  background: #fff;
  color: #222;
  min-width: 170px;
  transition: border 0.16s;
}
.newsletter-form input[type='email']:hover, .newsletter-form input[type='email']:focus {
  border: 2px solid var(--brand-hot-orange);
}
.newsletter-form button {
  background: linear-gradient(90deg, var(--brand-hot-orange) 30%, var(--brand-aqua) 100%);
  color: #fff;
  padding: 11px 38px;
  border: 2px solid var(--brand-electric-lime);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 1px 10px #275C2A18;
}
.newsletter-form button:focus, .newsletter-form button:hover {
  background: var(--primary);
  border-color: var(--brand-hot-orange);
  color: #fff;
}

/* =============
   FOOTER STYLES
   ============= */
footer {
  padding: 34px 0 20px 0;
  background: var(--primary);
  color: #fff;
  position: relative;
  margin-top: 30px;
}
.footer-nav {
  display: flex;
  gap: 32px;
  margin-bottom: 21px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #fff;
  opacity: 0.87;
  padding: 7px 6px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.14s, color 0.15s;
}
.footer-nav a:focus, .footer-nav a:hover {
  background: var(--brand-hot-orange);
  color: #fff;
  text-decoration: none;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.97rem;
  font-weight: 400;
  opacity: 0.99;
  margin-top: 7px;
}
.footer-brand img {
  height: 32px;
}

/* ===============
   CONTACT DETAILS
   =============== */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.text-section {
  min-width: 250px;
}
.address-map {
  font-style: italic;
  color: var(--primary);
  max-width: 360px;
}

/* ==================
   COOKIE CONSENT BANNER
   ================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 4000;
  background: #fffbe3;
  border-top: 4px solid var(--brand-hot-orange);
  box-shadow: 0 0 20px #275c2a22;
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  align-items: center;
  opacity: 1;
  transition: opacity 0.34s,transform 0.32s;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner p {
  color: #222;
  font-size: 1.05rem;
  margin-bottom: 5px;
  text-align: center;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.cookie-banner button {
  background: var(--brand-hot-orange);
  color: #fff;
  border: none;
  padding: 11px 24px;
  border-radius: 22px;
  font-size: 1.01rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 0;
  transition: background 0.16s, box-shadow 0.16s;
  box-shadow: 0 2px 14px #ff6a2e19;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: var(--primary);
}
.cookie-banner .cookie-settings-btn {
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--brand-electric-lime);
}
.cookie-banner .cookie-settings-btn:hover,
.cookie-banner .cookie-settings-btn:focus {
  background: var(--brand-hot-orange);
  color: #fff;
}
/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 4200;
  background: rgba(31,198,144,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.27s;
  pointer-events: none;
}
.cookie-modal.show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  padding: 40px 28px 32px 28px;
  border-radius: 24px;
  box-shadow: 0 8px 40px #275C2A44;
  min-width: 320px;
  max-width: 460px;
  width: 88vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 20px;
  top: 14px;
  background: var(--brand-hot-orange);
  color: #fff;
  border: none;
  border-radius: 25px;
  width: 34px;
  height: 34px;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  background: var(--primary);
}
.cookie-modal h3 {
  margin-bottom: 8px;
  color: var(--primary);
}
.cookie-modal ul.cookie-category-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal label {
  font-weight: 600;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--brand-hot-orange);
  width: 20px;
  height: 20px;
}
.cookie-modal input[type="checkbox"]:disabled {
  opacity: 0.6;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 20px;
}
.cookie-modal .modal-actions button {
  background: var(--brand-hot-orange);
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 10px 22px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 1px 14px #ff6a2e22;
}
.cookie-modal .modal-actions button.cancel-btn {
  background: var(--primary);
}

/**********************************************
 * FLEXBOX: Mandatory container pattern rules  *
 **********************************************/
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/********************************************************* 
 * RESPONSIVE DESIGN (mobile-first, then min-width >)     *
 **********************************************************/
@media (max-width: 991px) {
  .feature-grid, .service-cards, .service-grid, .testimonial-list, .project-case-studies, .blog-post-list, .team-member-profiles, .faq-accordion, .card-container, .content-grid, .footer-nav, .contact-details {
    flex-direction: column;
    gap: 18px !important;
    align-items: stretch;
  }
  .main-nav, .footer-nav {
    gap: 17px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .content-wrapper {
    gap: 21px;
  }
  .section, section {
    margin-bottom: 36px;
    padding: 28px 4px;
  }
  .hero .container {
    min-height: 220px;
  }
  h1 {
    font-size: 1.25rem;
  }
  h2 {
    font-size: 1.05rem;
  }
  .cta-primary, .cta-secondary {
    padding: 0.7em 1.2em;
    font-size: 1rem;
    margin-left: 0 !important;
    margin-top: 12px;
  }
  .feature, .service-card, .blog-post, .testimonial-card, .project-story, .team-member {
    padding: 18px 10px !important;
    min-width: 99px;
    font-size: 0.96rem;
    box-shadow: 0 1px 8px #31d9b21a;
  }
  .feature img {
    width: 46px;
    height: 46px;
    margin-bottom: 10px;
  }
  .blog-controls input[type='text'] {
    width: 100%;
  }
  .contact-details { gap: 20px; }
  .mobile-nav { font-size: 1.15rem; }
  .newsletter-form { flex-direction: column; gap: 11px; }
}
@media (max-width: 450px) {
  .hero .container {
    min-height: 110px;
  }
  .cookie-modal .cookie-modal-content {
    padding: 18px 4px 16px 4px;
    min-width: 0;
    max-width: 98vw;
  }
}

/**************************************** 
 * ANIMATION & MICRO-INTERACTIONS
 ****************************************/
.cta-primary,
.cta-secondary,
button,
.newsletter-form button,
.cookie-banner button,
.cookie-modal .modal-actions button {
  transition: background 0.15s, color 0.13s, border 0.25s, box-shadow 0.12s, transform 0.16s;
}
.feature,
.service-card,
.blog-post,
.project-story,
.faq-item,
.card,
.testimonial-card,
.team-member {
  transition: box-shadow 0.19s, border 0.13s, transform 0.21s cubic-bezier(.31,1.03,.54,.96);
}

/*********************************************
 * HELPER: Prevent content overlapping
 *********************************************/
.feature, .service-card, .testimonial-card, .project-story, .faq-item, .blog-post, .team-member {
  margin-bottom: 20px !important;
}
.content-wrapper > *:not(:last-child) {
  margin-bottom: 20px !important;
}

/*********************************************
 * FOCUS: Accessibility highlighters
 *********************************************/
a:focus-visible, button:focus-visible, .cta-primary:focus-visible, .cta-secondary:focus-visible {
  outline: 2px solid var(--brand-aqua);
  outline-offset: 2px;
}

/***********************************************
 * FORMS
 ***********************************************/
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 6px;
  border: 1.5px solid var(--secondary);
  padding: 7px 14px;
  margin-bottom: 8px;
  background: #fff;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--brand-hot-orange);
}

/* =============
   UTILITY CLASSES
   ============= */
.hide { display: none !important; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }

/*****************************************
 * OVERRIDES FOR CONSISTENT SPACING      *
 *****************************************/
.feature-grid > *,
.service-cards > *,
.blog-post-list > *,
.team-member-profiles > *,
.testimonial-list > *,
.project-case-studies > *,
.faq-accordion > * {
  margin-bottom: 20px !important;
}

/*****************************************
 * SCROLLBAR styling for modern touch     *
 *****************************************/
html {
  scrollbar-width: thin;
  scrollbar-color: var(--brand-hot-orange) var(--accent);
}
::-webkit-scrollbar {
  height: 9px;
  width: 11px;
  background: var(--accent);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg,#C6FF3A,var(--brand-hot-orange),var(--primary));
  border-radius: 10px;
}

/*****************************************
 * END OF STYLE.CSS                       *
 *****************************************/
