/* ===============================================================
   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,
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, hgroup, 
menu, 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F4F7FA;
  color: #243947;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
}
:focus {
  outline: 2px solid #A0C330;
  outline-offset: 2px;
}

/* ===============================================================
   CSS Variables (with fallbacks)
================================================================== */
:root {
  --primary: #243947;
  --secondary: #A0C330;
  --accent: #F4F7FA;
  --danger: #FF6B6B;
  --fun1: #FFD956;
  --fun2: #35C6F6;
  --fun3: #FF72D9;
  --shadow: 0 4px 16px rgba(36, 57, 71, 0.10), 0 1.5px 8px rgba(160, 195, 48, 0.12);
  --radius: 18px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

@supports not (--primary: #243947) {
  html {
    font-family: 'Montserrat', Arial, sans-serif;
  }
}

body {
  font-family: var(--font-body, 'Roboto', Arial, sans-serif);
  background-color: var(--accent, #F4F7FA);
  font-size: 16px;
  color: var(--primary, #243947);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display, 'Montserrat', Arial, sans-serif);
  font-weight: bold;
  line-height: 1.15;
  color: var(--primary, #243947);
  letter-spacing: 0.01em;
}
h1 { font-size: 2.6rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1.1rem; }

p, ul, ol, blockquote {
  font-size: 1rem;
  color: var(--primary, #243947);
  margin-bottom: 14px;
}
strong {
  font-weight: 700;
}

/* ===============================================================
   Layout Containers & Spacing
================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.21s cubic-bezier(0.42, 0, 0.58, 1);
}
.card:hover {
  box-shadow: 0 6px 24px rgba(36,57,71,0.15), 0 4px 16px rgba(160,195,48,0.15);
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 440px;
  flex: 1 1 300px;
  transition: box-shadow .2s, transform .2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px rgba(53,198,246,0.09), 0 6px 18px rgba(255, 217, 86, 0.13);
  transform: translateY(-6px) scale(1.025) rotate(-1deg);
}
.testimonial-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #434343;
  font-size: 0.98rem;
  opacity: 0.97;
  margin-top: 2px;
}
blockquote {
  color: #243947;
  font-size: 1.1rem;
  background: #F4F7FA;
  border-left: 4px solid var(--secondary, #A0C330);
  padding: 10px 20px;
  border-radius: 8px 20px 20px 8px;
  margin-bottom: 10px;
  font-style: italic;
  transition: background .25s;
}

.feature-grid, .service-grid, .testimonial-slider, .service-overview-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  min-width: 220px;
  max-width: 320px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature:hover {
  box-shadow: 0 8px 32px rgba(160,195,48,0.17), 0 1.5px 8px rgba(36,57,71,0.16);
  transform: translateY(-4px) scale(1.01) rotate(-1deg);
}
.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 220px;
  background: #fff;
  padding: 28px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  flex: 1 1 240px;
  transition: box-shadow 0.17s, transform 0.13s;
}
.service-item:hover {
  box-shadow: 0 8px 32px rgba(255,127,225,0.12), 0 1.5px 8px rgba(36,57,71,0.18);
  transform: scale(1.03) rotate(1.5deg);
}
.service-price {
  font-family: var(--font-display, 'Montserrat', Arial, sans-serif);
  color: var(--secondary, #A0C330);
  font-size: 1.15rem;
  margin-top: 10px;
  font-weight: bold;
}
.tile {
  background: #fff;
  padding: 22px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  min-width: 200px;
  max-width: 312px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .16s;
}
.tile:hover {
  box-shadow: 0 8px 32px rgba(255,217,86,.18), 0 1.5px 8px rgba(36,57,71,0.14);
  transform: scale(1.04) rotate(-1.2deg);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

/***** HERO SECTION *****/
.hero {
  margin-bottom: 60px;
  padding: 60px 0 36px 0;
  background: linear-gradient(105deg, #FFD956 0%, #A0C330 55%, #35C6F6 100%);
  background-size: 200% 200%;
  animation: heroBG 7s ease-in-out infinite alternate;
  border-bottom-left-radius: 44px;
  border-bottom-right-radius: 44px;
  position: relative;
}
@keyframes heroBG {
  0% {background-position: 0% 60%;}
  100% {background-position: 100% 40%;}
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  max-width: 680px;
  margin: 0 auto;
}
.hero h1, .hero h2 {
  color: var(--primary, #243947);
  font-size: 2.4rem;
  text-shadow: 0 5px 24px rgba(255, 255, 255, 0.22);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.hero p {
  font-size: 1.18rem;
  color: var(--primary, #243947);
  margin-bottom: 28px;
  font-family: var(--font-body);
}

/***** SPECIAL SECTIONS *****/
.text-section {
  background: #fff5f9;
  border-radius: var(--radius);
  box-shadow: 0 0px 22px rgba(255, 114, 217, 0.06) inset;
  padding: 30px 22px!important;
}

/***** BUTTONS & CTA *****/
.cta {
  font-family: var(--font-display, 'Montserrat', Arial, sans-serif);
  font-size: 1rem;
  display: inline-block;
  border-radius: 999px;
  font-weight: bold;
  letter-spacing: 0.03em;
  padding: 14px 32px;
  margin: 2px 0;
  box-shadow: 0 3px 14px rgba(211, 236, 93, .08);
  transition: background 0.17s, color 0.16s, box-shadow 0.16s, transform 0.17s;
  cursor: pointer;
  border: none;
  outline: none;
}
.cta.primary {
  background: var(--secondary, #A0C330);
  color: #243947;
  box-shadow: 0 4px 16px rgba(160, 195, 48, 0.14);
}
.cta.primary:hover, .cta.primary:focus {
  background: #FFD956;
  color: #243947;
  transform: translateY(-2px) scale(1.02) rotate(-1deg);
  box-shadow: 0 8px 32px #FFD95630;
}
.cta.secondary {
  background: #35C6F6;
  color: #fff;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #FF72D9;
  color: #fff;
  transform: translateY(-3px) scale(1.04) rotate(1deg);
  box-shadow: 0 8px 32px #ff72d940;
}

/***** NAVIGATION *****/
header {
  background: #fff;
  box-shadow: 0 2.5px 14px rgba(36, 57, 71, 0.04);
  padding: 0 0 0 0;
  margin-bottom: 0;
  position: relative;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.main-nav a {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 7px 17px;
  border-radius: 8px;
  transition: background 0.12s, color 0.15s;
  background: none;
}
.main-nav a:hover, .main-nav a:focus {
  background: #A0C33022;
  color: #A0C330;
}
.mobile-menu-toggle {
  width: 48px;
  height: 48px;
  background: var(--secondary, #A0C330);
  border-radius: 50%;
  color: #243947;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 102;
  border: none;
  margin-left: 10px;
  transition: background 0.12s, transform 0.13s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FFD956;
  transform: rotate(8deg) scale(1.1);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 110;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 32px 0 32px;
  box-shadow: 0 8px 32px #A0C33033;
  transform: translateX(-100vw);
  transition: transform 380ms cubic-bezier(0.68, -0.48, 0.265, 1.55);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--danger);
  font-size: 2.3rem;
  border: none;
  position: absolute;
  top: 18px;
  right: 28px;
  z-index: 111;
  cursor: pointer;
  transition: color 0.16s, transform 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #243947;
  transform: scale(1.13) rotate(-2deg);
}
.mobile-nav {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: #243947;
  background: #F4F7FA;
  padding: 13px 12px;
  border-radius: 12px;
  transition: background 0.12s, color 0.14s, transform 0.11s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFD956;
  color: #A0C330;
}

@media (min-width: 900px) {
  .mobile-menu-toggle {
    display: none;
  }
  .mobile-menu {
    display: none !important;
  }
}
@media (max-width: 899px) {
  .main-nav, header .cta.primary {
    display: none;
  }
}

/***** FOOTER *****/
footer {
  background: #fff;
  border-top: 4px solid var(--secondary);
  padding: 0;
  box-shadow: 0 -2px 12px rgba(36,57,71,0.05);
  color: var(--primary);
  font-size: 1rem;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  padding: 36px 0 28px 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-nav a {
  color: var(--primary);
  font-size: 1rem;
  font-family: var(--font-display);
  padding: 6px 14px;
  border-radius: 8px;
  background: none;
  transition: background 0.14s, color 0.15s;
}
.footer-nav a:hover {
  background: #35C6F6;
  color: #fff;
}
.footer-info {
  color: #888;
  font-size: 0.97rem;
  margin-bottom: 0;
}
.footer-logo img {
  max-width: 68px;
  border-radius: 13px;
  box-shadow: 0 1.5px 10px rgba(53,198,246,.12);
}

/* ===============================================================
   FLEX WRAP Responsive Handling
================================================================== */
@media (max-width: 1024px) {
  .feature-grid, .service-grid, .service-overview-tiles, .testimonial-slider, .card-container {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .container { padding: 0 7.9vw; }
  .section, .text-section {
    padding: 28px 8px;
  }
  .hero { padding: 37px 0 21px 0; border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; }
  .feature-grid, .service-grid, .testimonial-slider, .card-container, .content-grid, .service-overview-tiles {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .testimonial-card, .feature, .service-item, .tile {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
  .main-nav, header .cta.primary {
    display: none;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .footer-nav, .footer-info {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
  }
  .content-wrapper {
    gap: 10px;
  }
}
@media (max-width: 500px) {
  .container { padding: 0 2vw; }
  .section, .text-section { padding: 18px 2px; }
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.15rem; }
}

/* ===============================================================
   PLAYFUL DYNAMIC EFFECTS
================================================================== */
/***** Fun Display Fonts *****/
h1, h2 {
  font-family: var(--font-display, 'Montserrat'), cursive;
  font-weight: 900;
  text-transform: none;
}
h3 {
  font-family: var(--font-display);
  font-weight: 700;
}
/***** Playful Headline Highlights *****/
h1, h2, h3 { position: relative; }
h1::after, h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 6px;
  background: linear-gradient(90deg, #FFD956 60%, #FF72D9 100%);
  border-radius: 8px;
  margin-top: 6px;
}
.hero h1::after { display: none; }
/***** Animated Fun Button Bubble Effect *****/
.cta.primary::after {
  content: '';
  display: inline-block;
  background: #35C6F6;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  margin-left: 12px;
  vertical-align: middle;
  animation: bubbleJump 1.6s infinite cubic-bezier(.51,.23,.38,.81) alternate;
}
@keyframes bubbleJump {
  0%   { transform: translateY(0); opacity: .8; }
  60%  { transform: translateY(-4px) scale(1.1); opacity: 1; }
  100% { transform: translateY(6px) scale(0.89); opacity: .6; }
}
/***** Playful Card Shadow Bounce *****/
.card, .testimonial-card, .feature, .tile, .service-item {
  transition: box-shadow 0.19s, transform 0.17s;
}
.card:hover, .feature:hover, .tile:hover, .service-item:hover, .testimonial-card:hover {
  transform: rotate(-1.6deg) scale(1.016);
}

/* ===============================================================
   TESTIMONIALS SPECIAL
================================================================== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
@media (max-width: 768px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 16px;
  }
}
.testimonial-card {
  background: #fff;
  color: #243947;
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  border-top: 4px solid #35C6F6;
  position: relative;
}
.testimonial-card blockquote {
  color: #243947;
  background: #F4F7FA;
  border-left: 4px solid #A0C330;
}
.testimonial-details span {
  color: #535353;
  font-size: 0.96rem;
  margin: 0 6px;
  letter-spacing: 0.01em;
}

/* ===============================================================
   COOKIE CONSENT BANNER
================================================================== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #243947;
  color: #fff;
  z-index: 120;
  box-shadow: 0 -2.5px 16px rgba(160,195,48,0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 7vw 18px 7vw;
  font-size: 1rem;
  animation: cookieSlideUp 0.5s cubic-bezier(0.58,0.01,0.45,0.95);
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-consent-banner button {
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 0.98rem;
  padding: 11px 24px;
  border-radius: 24px;
  border: none;
  transition: background 0.13s, color 0.14s, transform 0.15s;
  margin: 3px 0;
  cursor: pointer;
}
.cookie-consent-banner .accept {
  background: var(--secondary, #A0C330);
  color: var(--primary);
}
.cookie-consent-banner .accept:hover { background: #FFD956; color: #243947; }
.cookie-consent-banner .reject {
  background: #FFD956;
  color: #243947;
}
.cookie-consent-banner .reject:hover { background: #FF6B6B; color: #fff; }
.cookie-consent-banner .cookie-settings {
  background: #35C6F6;
  color: #fff;
}
.cookie-consent-banner .cookie-settings:hover { background: #FF72D9; }

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 130;
  inset: 0;
  background: rgba(36,57,71,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInCookieModal .3s cubic-bezier(.43,.3,.34,.89);
}
@keyframes fadeInCookieModal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: var(--primary);
  border-radius: var(--radius);
  box-shadow: 0 5px 34px rgba(53,198,246,.13);
  width: 95vw;
  max-width: 420px;
  padding: 38px 28px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookieModalPop .25s cubic-bezier(0.600,0,0.160,1);
}
@keyframes cookieModalPop {
  0%   { opacity: 0; transform: scale(0.89) translateY(26px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal-close {
  background: none;
  font-size: 2.1rem;
  color: #FF6B6B;
  position: absolute;
  right: 18px;
  top: 14px;
  border: none;
  cursor: pointer;
  padding: 0 5px;
  line-height: 1;
  transition: color .13s, transform .12s;
}
.cookie-modal-close:hover { color: #243947; transform: scale(1.14); }
.cookie-modal h2 { font-size: 1.12rem; color: var(--secondary, #A0C330); margin-bottom: 0; }
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 10px;
}
.cookie-modal .category label {
  font-weight: 500;
  user-select: none;
  font-size: 1rem;
  color: var(--primary);
}
.cookie-modal .category input[type="checkbox"] {
  accent-color: var(--secondary, #A0C330);
  width: 20px;
  height: 20px;
  margin-right: 4px;
}
.cookie-modal .category input[disabled] {
  accent-color: #bbb;
  opacity: .66;
}
.cookie-modal .actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.cookie-modal .actions button {
  border-radius: 24px;
  font-family: var(--font-display);
  font-weight: bold;
  font-size: 1rem;
  padding: 9px 22px;
  margin: 0;
}
.cookie-modal .actions .accept {
  background: var(--secondary, #A0C330);
  color: var(--primary);
}
.cookie-modal .actions .accept:hover { background: #FFD956; }
.cookie-modal .actions .reject {
  background: #FFD956;
  color: #243947;
}
.cookie-modal .actions .reject:hover { background: #FF6B6B; color: #fff; }

@media (max-width: 650px) {
  .cookie-modal { padding: 19px 5vw 22px 5vw; }
  .cookie-consent-banner { flex-direction: column; gap: 12px; align-items: stretch; padding: 12px 3vw 10px 3vw; }
}

/* ===============================================================
   ADDITIONAL PLAYFUL DYNAMIC ANIMATIONS & EFFECTS
================================================================== */
/***** Sprinkles (fun animated dots for energic look) *****/
h1, h2, .cta.primary {
  position: relative;
  overflow: visible;
}
h1::before, h2::before {
  content: '';
  display: inline-block;
  width: 13px;
  height: 13px;
  background: #FF72D9;
  border-radius: 50%;
  position: absolute;
  left: -26px;
  top: 0.4em;
  opacity: .53;
  animation: bounceSprinkle 2.6s infinite alternate-reverse cubic-bezier(0.7,0,0.2,1);
}
@keyframes bounceSprinkle {
  0%   { transform: translateY(0) scale(1); }
  20%  { transform: translateY(-7px) scale(1.05); }
  50%  { transform: translateY(5px) scale(.92); }
  100% { transform: translateY(0) scale(1.01); }
}

/***** Micro-animations for playful UI *****/
.feature img, .service-item h3, .tile h3 {
  transition: transform 0.14s, filter 0.12s;
}
.feature:hover img, .service-item:hover h3, .tile:hover h3 {
  transform: rotate(-6deg) scale(1.11);
  filter: drop-shadow(0 2px 8px #FFD95644);
}

/***** List styling for fun look *****/
ul, ol {
  padding-left: 22px;
  margin-bottom: 10px;
}
ul > li {
  position: relative;
  padding-left: 10px;
  margin-bottom: 7px;
  font-size: 1rem;
  color: var(--primary);
}
ul > li::before {
  content: '●';
  color: #FFD956;
  font-size: 1.1em;
  font-weight: bold;
  margin-right: 9px;
  position: absolute;
  left: -15px;
  top: 0.2em;
}

/***** MAP EMBED Styling (Contact page) *****/
.map-embed {
  background: #F4F7FA;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 24px;
  box-shadow: 0 2px 14px #A0C33017;
  font-size: 1rem;
  color: #243947;
}

/* ===============================================================
   FORM STYLES (if/when present)
================================================================== */
input[type="text"], input[type="email"], textarea {
  width: 100%;
  border-radius: 10px;
  border: 2px solid #A0C33033;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px;
  margin-bottom: 14px;
  background: #fff;
  transition: border-color 0.13s;
}
input:focus, textarea:focus {
  border-color: #FFD956;
}

/***** Hide elements for accessibility *****/
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
  padding: 0;
}

/* ===============================================================
   MISC SPACING FOR CARD/SECTION LAYOUTS
================================================================== */
.section + .section {
  margin-top: 30px;
}
.card + .card, .feature + .feature, .tile + .tile, .service-item + .service-item, .testimonial-card + .testimonial-card {
  margin-top: 21px;
}

/***** CLIENT PROFILES SECTION (Testimonial page) *****/
.client-profiles {
  background: #35C6F6;
  color: #fff;
  padding: 26px 18px;
  border-radius: 16px;
  box-shadow: 0 1.5px 7px #35C6F622;
  margin-top: 22px;
}
.client-profiles h3 {
  color: #fff;
  margin-bottom: 10px;
}
.client-profiles ul > li:
before {
  color: #FFD956;
}

/* ===============================================================
   UTILITIES
================================================================== */
.text-center { text-align: center; }
.w-100 { width: 100%; }
.mt-0 { margin-top: 0!important; }
.mb-0 { margin-bottom: 0!important; }

/***** Animations for micro-interactions *****/
.fade-in { animation: fadeIn .6s cubic-bezier(.59,.14,.52,1) both; }
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/***** Hide by default (for scripting) *****/
.hide { display: none !important; }

/* ===============================================================
   END CSS
================================================================== */
