/*
Theme Name: Kind Souls Care AZ v2
Version: 2.0
*/
:root{
  --brand: #178f79;
  --brand-2: #e8f6f6;
  --accent: #f062a8;
  --text: #20403b;
  --bg: #ffffff;
  --maxw: 1100px;
}
*{box-sizing:border-box;}
body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;background:var(--bg);color:var(--text);line-height:1.6;}
a{color:var(--brand);text-decoration:none;}
a:hover{text-decoration:underline;}
.container{max-width:var(--maxw);margin:0 auto;padding:0 18px;}
.site-header{background:#fff;border-bottom:1px solid #dde7e7;}
.site-header-inner{display:flex;align-items:center;justify-content:space-between;padding:14px 0;}
.site-title{font-weight:700;font-size:1.2rem;}
.site-tagline{font-size:.9rem;color:#557c75;}
.site-footer{margin-top:40px;padding:24px 0;background:#0f2b27;color:#d8efeb;font-size:.9rem;}
.site-footer a{color:#d8efeb;}
.hero{position:relative;overflow:hidden;border-bottom:1px solid #d6eceb;background:var(--brand-2);}
.hero-kind .container{padding:60px 18px 50px;}
.hero-inner{position:relative;display:grid;grid-template-columns:minmax(0,1.05fr) minmax(0,1fr);gap:32px;align-items:start;z-index:1;}
.hero-blob{position:absolute;inset:-140px -160px auto auto;width:540px;height:540px;background:
  radial-gradient(circle at 10% 20%, rgba(23,143,121,.30), transparent 60%),
  radial-gradient(circle at 70% 10%, rgba(240,98,168,.25), transparent 55%),
  radial-gradient(circle at 30% 80%, rgba(232,246,246,.9), transparent 60%);opacity:.95;filter:blur(1px);pointer-events:none;z-index:0;}
.hero-text h1{font-size:clamp(2.1rem,3vw,2.8rem);line-height:1.15;margin:0 0 10px;color:var(--text);}
.hero-text p.hero-sub{max-width:36rem;margin:0 0 18px;font-size:1.05rem;color:#335d55;}
.hero-cta-row{display:flex;flex-wrap:wrap;align-items:center;gap:14px 18px;}
.hero-phone{margin:0;font-size:.95rem;color:#476d66;}
.hero-phone a{color:var(--accent);font-weight:600;}
.cta{display:inline-block;background:var(--brand);color:#fff;padding:12px 22px;border-radius:999px;font-weight:600;box-shadow:0 8px 20px rgba(23,143,121,.25);}
.cta:hover{text-decoration:none;transform:translateY(-1px);box-shadow:0 10px 24px rgba(23,143,121,.30);}
.hero-media{display:grid;grid-template-columns:1fr 1fr;gap:18px;align-items:start;}
.hero-photo-card,.hero-illustration-card{background:rgba(255,255,255,.92);border-radius:22px;border:1px solid rgba(0,0,0,.04);padding:10px;box-shadow:0 14px 30px rgba(15,23,42,.08);}
.hero-photo-card{grid-column:1;grid-row:1;max-width:260px;}
.hero-illustration-card{grid-column:2;grid-row:1;max-width:340px;}
.hero-photo-card img,.hero-illustration-card img{display:block;width:100%;height:auto;border-radius:18px;}
.hero-caption{margin:8px 4px 2px;font-size:.82rem;color:#5b726d;}
main.container{padding:30px 18px;}
.card{background:#fff;border-radius:14px;border:1px solid #e2e8f0;padding:18px;margin-bottom:20px;}
@media (max-width:900px){.hero-inner{grid-template-columns:minmax(0,1fr);gap:26px;}.hero-media{justify-content:center;}}
@media (max-width:600px){.hero-kind .container{padding-top:40px;padding-bottom:34px;}.hero-text h1{font-size:1.9rem;}.hero-media{grid-template-columns:1fr;}.hero-photo-card,.hero-illustration-card{max-width:320px;margin:0 auto;}}
/* ================================
   KIND SOULS CARE AZ – BRAND COLORS
   ================================ */
:root {
  --ks-primary: #027769;        /* Teal – logo text / hands */
  --ks-primary-dark: #015F54;   /* Darker teal for hover / accents */
  --ks-bg: #9BD0B7;             /* Mint background (flag color) */
  --ks-text: #043731;           /* Deep teal text */
  --ks-accent-pink: #E47496;    /* Heart pink */
}

/* ================================
   HEADER BAR
   ================================ */

.ks-header {
  background-color: var(--ks-bg);
  color: var(--ks-text);
  border-bottom: 3px solid var(--ks-primary);
}

.ks-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.ks-header-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.ks-header-logo {
  width: 48px;
  height: auto;
  border-radius: 50%;
}

.ks-header-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--ks-primary);
}

.ks-header-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 15px;
}

.ks-header-nav a {
  text-decoration: none;
  color: var(--ks-primary);
  font-weight: 600;
}

.ks-header-nav a:hover {
  color: var(--ks-primary-dark);
  text-decoration: underline;
}

.ks-header-cta {
  display: flex;
  align-items: center;
}

.ks-header-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background-color: var(--ks-accent-pink);
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.ks-header-phone:hover {
  background-color: #c75f80;
}

.ks-header-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  color: var(--ks-primary);
}

@media (max-width: 800px) {
  .ks-header-inner {
    flex-wrap: wrap;
  }
  .ks-header-nav {
    gap: 12px;
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .ks-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .ks-header-nav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .ks-header-cta {
    align-self: flex-start;
  }
}

/* ================================
   FOOTER
   ================================ */

.ks-footer {
  background-color: var(--ks-bg);
  padding: 30px 20px 20px;
  color: var(--ks-text);
  font-family: Arial, sans-serif;
  border-top: 3px solid var(--ks-primary);
}

.ks-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.ks-footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1 1 320px;
}

.ks-footer-logo {
  width: 70px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.ks-footer-brand-text h3 {
  margin: 0 0 5px 0;
  font-size: 22px;
  font-weight: bold;
  color: var(--ks-text);
}

.ks-footer-brand-text p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

.ks-footer-contact {
  flex: 1 1 380px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ks-footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ks-footer-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(2,119,105,0.08);
}

.ks-icon {
  font-size: 16px;
}

.ks-label {
  font-weight: 600;
  font-size: 13px;
}

.ks-value {
  font-size: 13px;
}

.ks-footer-item a.ks-value {
  color: var(--ks-text);
  text-decoration: none;
  font-weight: 600;
}

.ks-footer-item a.ks-value:hover {
  color: var(--ks-primary-dark);
  text-decoration: underline;
}

.ks-footer-bottom {
  max-width: 1100px;
  margin: 15px auto 0;
  text-align: center;
  font-size: 12px;
  color: #666;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 10px;
}

@media (max-width: 800px) {
  .ks-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .ks-footer-inner {
    align-items: center;
    text-align: center;
  }
  .ks-footer-brand {
    flex-direction: column;
  }
  .ks-footer-contact {
    align-items: center;
  }
  .ks-footer-row {
    justify-content: center;
  }
}

/* ================================
   BRAND BUTTONS
   ================================ */

.ks-button {
  display: inline-block;
  padding: 12px 26px;
  background-color: var(--ks-primary);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: all 0.25s ease;
}

.ks-button:hover {
  background-color: var(--ks-primary-dark);
  box-shadow: 0 6px 18px rgba(0,0,0,0.22);
  transform: translateY(-2px);
}

.ks-button-pink {
  display: inline-block;
  padding: 12px 26px;
  background-color: var(--ks-accent-pink);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.ks-button-pink:hover {
  background-color: #c75f80;
  transform: translateY(-2px);
}

/* ================================
   STICKY MESSAGE + TRIPLE BUTTON BAR
   ================================ */

body {
  padding-bottom: 95px;
}

.ks-sticky-message {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 78px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--ks-primary);
  z-index: 9998;
  padding-bottom: 6px;
  opacity: 0.95;
  text-shadow: 0 1px 3px rgba(255,255,255,0.6);
}

@media (max-width: 700px) {
  .ks-sticky-message {
    bottom: 100px;
    font-size: 16px;
  }
}

.ks-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 8px 10px;
  background: rgba(0, 0, 0, 0);
}

.ks-sticky-button {
  flex: 1 1 33%;
  max-width: 360px;
  padding: 12px 10px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  color: #ffffff;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.ks-sticky-button.home {
  background-color: var(--ks-bg);
  color: var(--ks-primary);
}

.ks-sticky-button.home:hover {
  background-color: #86c7aa;
  transform: translateY(-2px);
}

.ks-sticky-button.care {
  background-color: var(--ks-primary);
}

.ks-sticky-button.care:hover {
  background-color: var(--ks-primary-dark);
  transform: translateY(-2px);
}

.ks-sticky-button.phone {
  background-color: var(--ks-accent-pink);
}

.ks-sticky-button.phone:hover {
  background-color: #c75f80;
  transform: translateY(-2px);
}

.pulse {
  animation: ksPulse 2.8s infinite ease-in-out;
}

@keyframes ksPulse {
  0%   { transform: scale(1);   box-shadow: 0 4px 10px rgba(0,0,0,0.25); }
  50%  { transform: scale(1.03); box-shadow: 0 6px 16px rgba(0,0,0,0.32); }
  100% { transform: scale(1);   box-shadow: 0 4px 10px rgba(0,0,0,0.25); }
}

@media (max-width: 700px) {
  .ks-sticky-bar {
    flex-direction: column;
    gap: 6px;
    padding: 6px 6px;
  }
  .ks-sticky-button {
    max-width: 100%;
    width: 100%;
    border-radius: 0;
    font-size: 17px;
  }
}

/* ICON ANIMATIONS */

.icon-heart {
  display: inline-block;
  animation: heartBeat 2s infinite ease-in-out;
}

@keyframes heartBeat {
  0%   { transform: scale(1); }
  15%  { transform: scale(1.20); }
  30%  { transform: scale(1); }
  45%  { transform: scale(1.15); }
  60%  { transform: scale(1); }
  100% { transform: scale(1); }
}

.icon-phone {
  display: inline-block;
  animation: phoneRing 2.6s infinite ease-in-out;
}

@keyframes phoneRing {
  0%   { transform: rotate(0deg); }
  10%  { transform: rotate(10deg); }
  20%  { transform: rotate(-10deg); }
  30%  { transform: rotate(6deg); }
  40%  { transform: rotate(-6deg); }
  50%  { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

.icon-home {
  display: inline-block;
  animation: homeBounce 3.5s infinite ease-in-out;
}

@keyframes homeBounce {
  0%   { transform: translateY(0); }
  10%  { transform: translateY(-3px); }
  20%  { transform: translateY(0); }
  100% { transform: translateY(0); }
}
/* ============================================
   KIND SOULS – STICKY BAR POLISH TWEAKS
   (softer animation, shadow, better mobile)
   ============================================ */

/* Subtle shadow under sticky bar */
.ks-sticky-bar {
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

/* Slightly calmer pulse for the whole button */
.pulse {
  animation: ksPulseSoft 4s infinite ease-in-out;
}

@keyframes ksPulseSoft {
  0%   { transform: scale(1);   box-shadow: 0 4px 10px rgba(0,0,0,0.25); }
  40%  { transform: scale(1.02); box-shadow: 0 6px 14px rgba(0,0,0,0.30); }
  100% { transform: scale(1);   box-shadow: 0 4px 10px rgba(0,0,0,0.25); }
}

/* ICON ANIMATIONS – SOFTER */

/* ❤️ Heart – slower, softer beat */
.icon-heart {
  display: inline-block;
  animation: heartBeatSoft 3.8s infinite ease-in-out;
}

@keyframes heartBeatSoft {
  0%   { transform: scale(1); }
  20%  { transform: scale(1.12); }
  35%  { transform: scale(1); }
  55%  { transform: scale(1.08); }
  75%  { transform: scale(1); }
  100% { transform: scale(1); }
}

/* 📞 Phone – gentle ring (smaller angle, slower) */
.icon-phone {
  display: inline-block;
  animation: phoneRingSoft 4.2s infinite ease-in-out;
}

@keyframes phoneRingSoft {
  0%   { transform: rotate(0deg); }
  10%  { transform: rotate(4deg); }
  20%  { transform: rotate(-4deg); }
  30%  { transform: rotate(2.5deg); }
  40%  { transform: rotate(-2.5deg); }
  50%  { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

/* 🏠 Home – very subtle bounce */
.icon-home {
  display: inline-block;
  animation: homeBounceSoft 4.5s infinite ease-in-out;
}

@keyframes homeBounceSoft {
  0%   { transform: translateY(0); }
  12%  { transform: translateY(-2px); }
  24%  { transform: translateY(0); }
  100% { transform: translateY(0); }
}

/* MOBILE TWEAKS – bigger tap area, better text */
@media (max-width: 700px) {
  .ks-sticky-bar {
    gap: 8px;
    padding: 8px 8px;
  }

  .ks-sticky-button {
    font-size: 18px;        /* bigger text */
    padding: 16px 14px;     /* more thumb space */
  }

  .icon-heart,
  .icon-home,
  .icon-phone {
    font-size: 1.2em;       /* slightly larger icons on mobile */
  }

  .ks-sticky-message {
    font-size: 16px;
  }
}
/* ============================================
   KIND SOULS – STICKY BAR POLISH TWEAKS
   (softer animation, shadow, better mobile)
   ============================================ */

/* Subtle shadow under sticky bar */
.ks-sticky-bar {
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

/* Slightly calmer pulse for the whole button */
.pulse {
  animation: ksPulseSoft 4s infinite ease-in-out;
}

@keyframes ksPulseSoft {
  0%   { transform: scale(1);   box-shadow: 0 4px 10px rgba(0,0,0,0.25); }
  40%  { transform: scale(1.02); box-shadow: 0 6px 14px rgba(0,0,0,0.30); }
  100% { transform: scale(1);   box-shadow: 0 4px 10px rgba(0,0,0,0.25); }
}

/* ICON ANIMATIONS – SOFTER */

/* ❤️ Heart – slower, softer beat */
.icon-heart {
  display: inline-block;
  animation: heartBeatSoft 3.8s infinite ease-in-out;
}

@keyframes heartBeatSoft {
  0%   { transform: scale(1); }
  20%  { transform: scale(1.12); }
  35%  { transform: scale(1); }
  55%  { transform: scale(1.08); }
  75%  { transform: scale(1); }
  100% { transform: scale(1); }
}

/* 📞 Phone – gentle ring (smaller angle, slower) */
.icon-phone {
  display: inline-block;
  animation: phoneRingSoft 4.2s infinite ease-in-out;
}

@keyframes phoneRingSoft {
  0%   { transform: rotate(0deg); }
  10%  { transform: rotate(4deg); }
  20%  { transform: rotate(-4deg); }
  30%  { transform: rotate(2.5deg); }
  40%  { transform: rotate(-2.5deg); }
  50%  { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

/* 🏠 Home – very subtle bounce */
.icon-home {
  display: inline-block;
  animation: homeBounceSoft 4.5s infinite ease-in-out;
}

@keyframes homeBounceSoft {
  0%   { transform: translateY(0); }
  12%  { transform: translateY(-2px); }
  24%  { transform: translateY(0); }
  100% { transform: translateY(0); }
}

/* MOBILE TWEAKS – bigger tap area, better text */
@media (max-width: 700px) {
  .ks-sticky-bar {
    gap: 8px;
    padding: 8px 8px;
  }

  .ks-sticky-button {
    font-size: 18px;        /* bigger text */
    padding: 16px 14px;     /* more thumb space */
  }

  .icon-heart,
  .icon-home,
  .icon-phone {
    font-size: 1.2em;       /* slightly larger icons on mobile */
  }

  .ks-sticky-message {
  opacity: 0;
  animation: fadeHelpText 1.4s ease-out forwards;
  animation-delay: 0.4s;
  text-align: center;
  font-weight: 600;
  color: #027769;          /* teal text */
      margin: -20px 0 6px 0;
  /* pulls it closer to the bar */
}

    
  }
}
.ks-sticky-message {
  position: fixed;          /* anchor to screen */
  left: 0;
  right: 0;
  bottom: 80px;             /* sits above the sticky bar */
  z-index: 9998;

  opacity: 0;
  animation: fadeHelpText 1.4s ease-out forwards;
  animation-delay: 0.4s;

  text-align: center;
  font-weight: 600;
  color: #027769;           /* teal text */
  font-size: 17px;
}
