/* ----------------------------------------
   CSS RESET & BASE NORMALIZATION
----------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #222;
  background: #f9fcfc;
  min-height: 100vh;
  transition: background 0.5s;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: #1D3557;
  text-decoration: none;
  transition: color 0.24s cubic-bezier(.23,1.09,.62,1);
}
a:hover, a:focus {
  color: #F6AE2D;
  outline: none;
}
ul, ol {
  margin-left: 1.2em;
}
::-webkit-input-placeholder { color: #8a94a8; }
::-moz-placeholder { color: #8a94a8; }
:-ms-input-placeholder { color: #8a94a8; }
::placeholder { color: #8a94a8; }

/* ----------------------------------------
   BRAND COLORS / FONTS
----------------------------------------- */
:root {
  --primary: #1D3557;
  --secondary: #A8DADC;
  --accent: #F6AE2D;
  --white: #fff;
  --gray: #f3f6fa;
  --text-dark: #222;
  --text-light: #fff;
  --border: #dde9ef;
  --shadow: 0 4px 24px 0 rgba(29,53,87,0.07);
  --shadow-playful: 0 8px 24px rgba(246,174,45,0.08),0 2px 8px rgba(168,218,220,0.08);
  --radius: 20px;
  --radius-soft: 14px;
  --transition: 0.23s cubic-bezier(.23,1.09,.62,1);
}

@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, .logo {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 18px;
  line-height: 1.13;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 800;
  line-height: 1.2;
}
h3 {
  font-size: 1.18rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 8px;
}
strong {
  font-weight: 700;
  color: var(--primary);
}

/* ----------------------------------------
   LAYOUT
----------------------------------------- */
.container {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-playful);
  padding: 24px 22px 22px 22px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px rgba(246,174,45,.18), 0 2px 12px rgba(168,218,220,.08);
  transform: translateY(-4px) scale(1.02) rotate(-0.7deg);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.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: #fffcee;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: var(--radius-soft);
  box-shadow: 0 2px 18px 0 rgba(29,53,87,0.08);
  border: 2px solid #fff6dc;
  min-width: 0;
  max-width: 600px;
  transition: transform .17s, box-shadow .19s;
}
.testimonial-card:hover {
  transform: translateY(-2px) scale(1.016) rotate(0.6deg);
  box-shadow: 0 12px 28px rgba(246,174,45,0.19);
}
.testimonial-card p {
  color: #1D3557;
  font-family: 'Montserrat', Arial, sans-serif;
  font-style: italic;
  font-size: 1.06rem;
}
.testimonial-card .name {
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
  align-self: flex-end;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ----------------------------------------
   HEADER & NAVIGATION
----------------------------------------- */
header {
  background: var(--white);
  box-shadow: 0 1px 9px 0 rgba(29,53,87,0.07);
  z-index: 23;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 80px;
}
.logo {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: 800;
}
nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav a {
  color: var(--primary);
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  border-radius: 24px;
  padding: 8px 14px;
  transition: background var(--transition), color var(--transition), box-shadow .2s;
}
nav a:hover, nav a:focus {
  background: var(--secondary);
  color: var(--accent);
}

.cta {
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 26px;
  padding: 13px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.04rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 2px 9px 0 rgba(246,174,45,.20);
  transition: background var(--transition), color var(--transition), box-shadow .19s, transform .17s;
  display: inline-block;
  margin-left: 10px;
  text-align: center;
}
.cta.primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 20px 0 rgba(29,53,87,0.14);
}
.cta:hover, .cta:focus {
  background: var(--secondary);
  color: var(--primary);
  transform: scale(1.05) rotate(-0.5deg);
  box-shadow: 0 8px 28px 0 rgba(246,174,45,0.12),0 4px 16px rgba(168,218,220,0.1);
  outline: none;
  text-decoration: none;
}
.cta.primary:hover, .cta.primary:focus {
  background: var(--accent);
  color: var(--primary);
}

/* Mobile burger menu */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: 16px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 10px;
  box-shadow: 0 1px 10px 0 rgba(168,218,220,.15);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  z-index: 70;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--accent);
  color: var(--primary);
  outline: 2px solid var(--primary);
}
.mobile-menu {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: #fffdf7;
  z-index: 80;
  transform: translateX(-110vw);
  transition: transform .32s cubic-bezier(.23,1.09,.62,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  box-shadow: 0 12px 48px 0 rgba(168,218,220,.11);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--accent);
  color: var(--primary);
  border: none;
  font-size: 2rem;
  align-self: flex-end;
  margin: 20px 24px 14px 0;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  cursor: pointer;
  transition: background .25s;
  box-shadow: 0 4px 18px 0 rgba(246,174,45,0.13);
  z-index: 90;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--primary);
  color: #fff;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  padding: 30px 40px;
}
.mobile-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.21rem;
  font-weight: 700;
  border-radius: 16px;
  padding: 14px 16px;
  width: 100%;
  background: none;
  transition: background var(--transition), color var(--transition);
  margin-bottom: 8px;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--secondary);
  color: var(--accent);
}

/* Hide desktop nav on mobile, show burger */
@media (max-width: 900px) {
  header .container nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 901px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ----------------------------------------
   HERO, FEATURES, SERVICES, CTA
----------------------------------------- */
.hero {
  background: linear-gradient(140deg, var(--secondary) 70%, var(--accent) 100%);
  padding: 56px 0 60px 0;
  min-height: 330px;
  box-shadow: var(--shadow);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1, .hero h2 {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.hero p {
  font-size: 1.14rem;
  color: var(--primary);
  margin-bottom: 8px;
}

.features {
  background: var(--gray);
  padding: 48px 0 50px 0;
}
.features h2 {
  color: var(--accent);
  margin-bottom: 26px;
}
.features ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 36px;
  padding: 0;
}
.features li {
  display: flex;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-soft);
  padding: 20px 24px 16px;
  min-width: 260px;
  box-shadow: 0 1.5px 7px 0 rgba(168,218,220,.13);
  gap: 16px;
  font-size: 1.07rem;
  margin-bottom: 12px;
  flex: 1 1 220px;
  transition: box-shadow,var(--transition),transform .16s;
}
.features li:hover {
  box-shadow: 0 10px 24px 0 rgba(168,218,220,0.16);
  transform: scale(1.045) rotate(-1.2deg);
}
.features img {
  width: 36px;
  height: 36px;
  margin-right: 10px;
}

.services {
  background: var(--white);
  padding: 44px 0 55px 0;
}
.services .content-wrapper ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 28px 24px;
  padding: 0;
  margin-top: 16px;
}
.services .content-wrapper li {
  background: var(--gray);
  border-radius: var(--radius-soft);
  padding: 22px 20px 19px 22px;
  margin-bottom: 20px;
  flex: 1 1 280px;
  box-shadow: 0 2px 12px 0 rgba(168,218,220,.09);
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.19s,transform 0.12s;
  position: relative;
}
.services .content-wrapper li:hover {
  box-shadow: 0 4px 24px rgba(29,53,87,0.08);
  transform: scale(1.025) rotate(1deg);
}
.services .price {
  color: var(--primary);
  font-weight: 700;
  background: var(--accent);
  display: inline-block;
  border-radius: 8px;
  padding: 2px 11px;
  margin-top: 6px;
  font-size: 1.01rem;
}

.cta:not(.primary), .cta-section {
  background: var(--secondary);
  color: var(--primary);
  border-radius: var(--radius);
  box-shadow: var(--shadow-playful);
  padding: 44px 0 44px 0;
  text-align: center;
  margin: 0 auto 38px auto;
}

/* ----------------------------------------
   TESTIMONIALS
----------------------------------------- */
.testimonials {
  background: #fffefb;
  padding: 48px 0 54px 0;
}
.testimonials .content-wrapper {
  gap: 24px;
  align-items: center;
  justify-content: center;
}
.testimonials h2 {
  text-align: center;
  color: var(--accent);
  margin-bottom: 24px;
  margin-top: 0;
}
.testimonials .testimonial-card {
  width: 100%;
  margin: 0 auto 20px auto;
}

@media (min-width: 770px) {
  .testimonials .content-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
    justify-content: center;
  }
  .testimonials .testimonial-card {
    width: 390px;
    max-width: 100%;
  }
}

/* ----------------------------------------
   STATS (About page)
----------------------------------------- */
.stat-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
  justify-content: flex-start;
}
.stat {
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--radius);
  flex: 1 1 180px;
  min-width: 140px;
  padding: 28px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 16px 0 rgba(246,174,45,0.08);
  transition: transform .19s, box-shadow .17s;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-align: center;
}
.stat:hover {
  transform: scale(1.055) rotate(-2.5deg);
  box-shadow: 0 10px 28px 0 rgba(168,218,220,0.13);
}
.stat h3 {
  font-size: 2rem;
  color: var(--primary);
  letter-spacing: 0.01em;
  margin: 0 0 7px 0;
}
.stat p {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 0;
}

/* ----------------------------------------
   FOOTER
----------------------------------------- */
footer {
  background: var(--primary);
  color: #fcfcfa;
  padding: 44px 0 18px 0;
  font-size: 1.02rem;
  box-shadow: 0 -1px 8px 0 rgba(29,53,87,0.06);
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 7px;
}
.footer-nav a {
  color: var(--accent);
  font-weight: 600;
  transition: color var(--transition);
  border-radius: 12px;
  padding: 6px 14px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
  background: rgba(246,174,45,0.13);
}
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: flex-start;
  font-size: 1rem;
}
.contact-details p,
.contact-details a {
  color: #fff;
  font-size: 1rem;
}
.contact-details a:hover {
  color: var(--accent);
}
.copyright {
  text-align: left;
  color: #fff8ea;
  font-size: 0.95rem;
  font-family: 'Roboto',Arial,sans-serif;
  opacity: 0.66;
  margin-top: 8px;
}

/* ----------------------------------------
   CUSTOM ELEMENTS, BANNERS, ETC.
----------------------------------------- */
.text-section {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 23px;
  background: var(--secondary);
  border-radius: var(--radius-soft);
  padding: 18px 17px;
  box-shadow: 0 1px 8px 0 rgba(168,218,220,.11);
}
.map-placeholder img {
  width: 60px;
  height: 60px;
}

/* ----------------------------------------
   COOKIE BANNER + MODAL
----------------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 120;
  background: #fffcec;
  color: var(--primary);
  box-shadow: 0 -2px 16px 0 rgba(246,174,45,0.14);
  padding: 24px 24px 19px 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 22px 14px;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  animation: cookie-banner-in 0.5s cubic-bezier(.23,1.09,.62,1);
}
@keyframes cookie-banner-in {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  flex: 1 1 160px;
  color: var(--primary);
  font-size: 1.02rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 18px;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background .23s, color .23s, box-shadow .16s;
}
.cookie-banner .cookie-accept {
  background: var(--accent);
  color: var(--primary);
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-banner .cookie-decline {
  background: #ecd8e7;
  color: var(--primary);
}
.cookie-banner .cookie-decline:hover, .cookie-banner .cookie-decline:focus {
  background: #c0c4c2;
  color: var(--primary);
}
.cookie-banner .cookie-settings {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #d2fcfc;
  color: var(--primary);
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed; left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(29,53,87,0.25);
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .33s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: var(--primary);
  padding: 34px 30px 28px 30px;
  border-radius: var(--radius);
  min-width: 0;
  max-width: 95vw;
  width: 380px;
  box-shadow: 0 12px 32px 0 rgba(168,218,220,0.18);
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modal-in 0.34s cubic-bezier(.23,1.09,.62,1);
  position: relative;
}
@keyframes modal-in {
  from { transform: scale(.92) translateY(40px); opacity: 0; }
  to   { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--accent);
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
}
.cookie-modal .cookie-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}
.cookie-option label {
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  font-size: 1.01rem;
}
.cookie-option input[type="checkbox"]:disabled + label {
  opacity: .7;
  color: #aaaaaa;
  cursor: default;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 17px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 12px; right: 14px;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 1.81rem;
  cursor: pointer;
}
.cookie-modal .cookie-close:hover, .cookie-modal .cookie-close:focus {
  color: var(--primary);
  outline: none;
}
/* ----------------------------------------
   RESPONSIVE
----------------------------------------- */
@media (max-width: 1100px) {
  .container, footer .container { padding: 0 9px; }
}
@media (max-width: 800px) {
  .header .container,
  .container,
  footer .container {
    padding: 0 5px;
  }
  .footer-nav { gap: 11px; }
  .contact-details { gap: 12px; }
}
@media (max-width: 768px) {
  .container, footer .container {
    max-width: 98vw;
    padding: 0 2px;
  }
  .section {
    margin-bottom: 38px;
    padding: 26px 7px;
  }
  h1 {
    font-size: 1.39rem;
  }
  h2 {
    font-size: 1.12rem;
  }
  h3 {
    font-size: 1.01rem;
  }
  header .container {
    height: auto;
    flex-direction: row;
    gap: 8px;
  }
  .logo img { height: 34px; }
  .content-grid, .card-container, .stat-cards {
    flex-direction: column;
    gap: 17px;
  }
  .testimonial-card {
    width: 100%;
    padding: 14px;
  }
  .features ul {
    flex-direction: column;
    gap: 11px;
  }
  .services .content-wrapper ul {
    flex-direction: column;
    gap: 13px;
  }
  .stat-cards {
    gap: 12px;
  }
  .map-placeholder {
    gap: 7px;
    padding: 12px 7px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 5px;
    align-items: flex-start;
  }
  .contact-details {
    flex-direction: column;
    gap: 13px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

/* ----------------------------------------
   PLAYFUL DYNAMIC MICRO-ANIMATIONS
----------------------------------------- */
.cta, .cta.primary, .cookie-banner button, .cookie-modal .cookie-modal-actions button {
  transition: background .23s, color .23s, box-shadow .13s, transform .14s;
}
.cta:active, .cta.primary:active {
  transform: scale(.97) rotate(-1deg);
}
.services .content-wrapper li:active,
.features li:active,
.testimonial-card:active {
  transform: scale(.98) rotate(.4deg);
}

/* Sparkle decoration for hero (playful accent) */
.hero::after {
  content: '';
  display: block;
  position: absolute;
  right: 9vw; top: 48px;
  width: 64px; height: 64px;
  background: url('../assets/decor/sparkle.svg') no-repeat center/contain;
  opacity: 0.14;
  pointer-events: none;
  z-index: 4;
}
@media (max-width:600px) {
  .hero::after { display: none; }
}

/* ----------------------------------------
   FOCUS VISIBLE
----------------------------------------- */
:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 2px;
}

/* ----------------------------------------
   FORM BASICS (if needed)
----------------------------------------- */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.01rem;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1.3px solid var(--secondary);
  margin-bottom: 15px;
  background: #f7fafc;
  color: var(--primary);
  transition: border-color var(--transition), box-shadow var(--transition);
}
input:focus, textarea:focus {
  border-color: var(--accent);
  background: #fffdfa;
}

/* ----------------------------------------
   PLAYFUL DYNAMIC STYLES
----------------------------------------- */
/* Energetic heading text-shadow and 'jumpy' effect */
h1, h2 {
  text-shadow: 0 2px 6px rgba(246,174,45,0.12), 1px 1px 0px #fdf6e9;
}
h1:hover, h1:focus, h2:hover, h2:focus {
  animation: popTitle 0.48s;
}
@keyframes popTitle {
  0% { transform: scale(1); }
  25% { transform: scale(1.07) rotate(-2deg) skewY(1.5deg); }
  60% { transform: scale(1.04) rotate(.9deg); }
  100% { transform: scale(1); }
}

/* Card hover playful bounce */
.card, .services .content-wrapper li, .features li, .stat {
  will-change: transform, box-shadow;
}
@media (hover: hover) {
  .card:hover, .services .content-wrapper li:hover, .features li:hover, .stat:hover {
    animation: bounceCard 0.5s;
  }
}
@keyframes bounceCard {
  14% { transform: scale(0.985) rotate(-1deg); }
  26% { transform: scale(1.025) rotate(1.5deg); }
  45% { transform: scale(1.02) rotate(-1deg); }
  55% { transform: scale(1); }
}

/* Playful icon wiggle on hover */
.features img, .services li img {
  transition: transform .18s;
  will-change: transform;
}
.features li:hover img {
  animation: wiggle 0.55s;
}
@keyframes wiggle {
  0%,100% { transform: rotate(0); }
  12% { transform: rotate(-14deg); }
  26% { transform: rotate(11deg); }
  45% { transform: rotate(-7deg); }
  61% { transform: rotate(7deg); }
}

/* ----------------------------------------
   END OF CSS
----------------------------------------- */
