/* ===================================================================
   Cosmic International School — shared stylesheet
   Palette: warm paper, deep navy ink, raspberry brand accent,
            coral, amber, sky, sage — used deliberately, not as a wash
   Type: Fredoka (display, rounded geometric) + Manrope (body/UI)
   =================================================================== */

:root{
  --cream: #FBF6EF;
  --paper: #FFFFFF;
  --ink: #16233F;
  --ink-soft: #57647E;
  --magenta: #D81B60;
  --magenta-dark: #A00E47;
  --magenta-tint: #FCE4EE;
  --coral: #FF7A50;
  --coral-dark: #E85A2E;
  --coral-tint: #FFE8DD;
  --yellow: #FFB627;
  --yellow-tint: #FFF2D9;
  --sky: #1F93D1;
  --sky-tint: #DCEFFA;
  --green: #2F9E6E;
  --green-tint: #DFF4EA;
  --purple: #6C4CD1;
  --purple-tint: #E9E3FB;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow: 0 14px 34px -14px rgba(22,35,63,0.28);
  --shadow-sm: 0 6px 16px -8px rgba(22,35,63,0.22);
  --maxw: 1180px;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}
h1,h2,h3,h4{
  font-family: "Fredoka", "Manrope", sans-serif;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .5em;
}
p{ margin: 0 0 1em; color: var(--ink-soft); }
a{ color: inherit; text-decoration: none; }
img{ max-width:100%; display:block; }
ul{ margin:0; padding:0; list-style:none; }
.container{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family:"Fredoka",sans-serif;
  font-weight:600;
  font-size: .8rem;
  letter-spacing:.06em;
  text-transform:uppercase;
  color: var(--magenta-dark);
  background: var(--magenta-tint);
  padding: 7px 16px;
  border-radius: 100px;
}
.eyebrow.sky{ color:#0C6A9B; background:var(--sky-tint); }
.eyebrow.green{ color:#1D7A50; background:var(--green-tint); }
.eyebrow.purple{ color:#4E2FA0; background:var(--purple-tint); }

.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:"Fredoka",sans-serif;
  font-weight:600;
  font-size:1rem;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{
  background: var(--magenta);
  color:#fff;
  box-shadow: 0 10px 22px -8px rgba(227,30,124,0.55);
}
.btn-primary:hover{ background: var(--magenta-dark); }
.btn-ghost{
  background: #fff;
  color: var(--ink);
  border: 2px solid rgba(42,27,61,0.12);
}
.btn-ghost:hover{ border-color: var(--magenta); color:var(--magenta-dark); }
.btn-yellow{
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 10px 22px -8px rgba(255,197,61,0.7);
}

/* ---------- Header / Nav ---------- */
.site-header{
  position: sticky;
  top:0;
  z-index: 500;
  background: rgba(255,247,238,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(42,27,61,0.08);
}
.nav-wrap{
  max-width: var(--maxw);
  margin:0 auto;
  padding: 12px 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 20px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-family:"Fredoka",sans-serif;
  font-weight:700;
  font-size:1.25rem;
  color:var(--ink);
}
.brand img{
  height:48px;
  width:48px;
  object-fit:cover;
  border-radius: 50%;
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--magenta-tint);
}
.brand small{
  display:block;
  font-family:"Nunito",sans-serif;
  font-weight:700;
  font-size:.62rem;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: var(--magenta-dark);
}
.nav-links{
  display:flex;
  align-items:center;
  gap: 6px;
}
.nav-links a{
  font-family:"Fredoka",sans-serif;
  font-weight:600;
  font-size:1rem;
  padding: 10px 16px;
  border-radius: 100px;
  color: var(--ink-soft);
  position:relative;
}
.nav-links a:hover{ color: var(--magenta-dark); background: var(--magenta-tint); }
.nav-links a.active{ color:#fff; background: var(--magenta); }
.nav-cta{ margin-left:6px;color:#fff !important }

.burger{
  display:none;
  width:46px; height:46px;
  border-radius:50%;
  border:2px solid rgba(42,27,61,0.15);
  background:#fff;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  flex-direction:column;
  gap:5px;
}
.burger span{
  width:20px; height:2.5px; background:var(--ink); border-radius:2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-panel-backdrop{ display:none; }

@media (max-width: 880px){
  .nav-links{
    position: fixed;
    inset: 74px 16px auto 16px;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    gap: 4px;
    transform-origin: top;
    transform: scaleY(0);
    opacity:0;
    pointer-events:none;
    transition: transform .22s ease, opacity .18s ease;
  }
  .nav-links.open{ transform:scaleY(1); opacity:1; pointer-events:auto; }
  .nav-links a{ text-align:center; padding:13px 16px; }
  .nav-cta{ margin-left:0; margin-top:4px; }
  .burger{ display:flex; }
}

/* ---------- Tree signature motif ---------- */
.tree-motif{
  position:absolute;
  z-index:0;
  opacity:.9;
  pointer-events:none;
}
.leaf-sway{
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: sway 4.5s ease-in-out infinite;
}
@keyframes sway{
  0%,100%{ transform: rotate(-2.5deg); }
  50%{ transform: rotate(2.5deg); }
}
@media (prefers-reduced-motion: reduce){
  .leaf-sway{ animation: none; }
}
.hero{
  position:relative;
  overflow:hidden;
  padding: 76px 0 40px;
}
.hero::before{
  content:"";
  position:absolute; top:-140px; right:-120px;
  width:480px; height:480px; border-radius:50%;
  background: radial-gradient(circle at 30% 30%, var(--coral-tint), transparent 70%);
  z-index:0;
}
.hero::after{
  content:"";
  position:absolute; bottom:-180px; left:-140px;
  width:440px; height:440px; border-radius:50%;
  background: radial-gradient(circle at 60% 40%, var(--sky-tint), transparent 70%);
  z-index:0;
}
.hero .container{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items:center;
}
.hero-copy h1{
  font-size: clamp(2.1rem, 4vw, 3.35rem);
}
.hero-copy h1 .accent{ color: var(--magenta); }
.hero-copy p.lead{
  font-size: 1.13rem;
  max-width: 46ch;
}
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; margin-top: 22px; }
.hero-badges{
  display:flex; gap:14px; margin-top:34px; flex-wrap:wrap;
}
.hero-badge{
  background:#fff; border-radius: var(--radius-sm);
  padding: 12px 16px; box-shadow: var(--shadow-sm);
  display:flex; align-items:center; gap:10px;
  font-family:"Fredoka",sans-serif; font-weight:700; font-size:.92rem;
}
.hero-badge .dot{ width:10px; height:10px; border-radius:50%; }

.hero-art{ position:relative; z-index:2; }
.leaf-card{
  position:absolute;
  background:#fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 12px 16px;
  font-family:"Fredoka",sans-serif;
  font-weight:700;
  font-size:.85rem;
  display:flex; align-items:center; gap:10px;
}
.leaf-card .num{ font-size:1.3rem; color:var(--magenta); }

/* ---------- Section framing ---------- */
section{ position:relative; padding: 64px 0; }
.section-head{
  max-width: 640px;
  margin: 0 0 40px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size: clamp(1.7rem, 3vw, 2.4rem); margin-top:10px; }

.grid{ display:grid; gap: 24px; }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }

.card{
  background:#fff;
  border-radius: var(--radius-md);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover{ transform: translateY(-5px); box-shadow: var(--shadow); }
.card .icon{
  width:54px; height:54px;
  border-radius: 16px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 16px;
  font-size: 1.5rem;
}
.icon-magenta{ background:var(--magenta-tint); }
.icon-sky{ background:var(--sky-tint); }
.icon-green{ background:var(--green-tint); }
.icon-yellow{ background:var(--yellow-tint); }
.icon-purple{ background:var(--purple-tint); }
.icon-coral{ background:var(--coral-tint); }
.icon svg{ width:26px; height:26px; }
.icon-magenta svg{ color:var(--magenta); }
.icon-sky svg{ color:var(--sky); }
.icon-green svg{ color:var(--green); }
.icon-yellow svg{ color:var(--yellow); }
.icon-purple svg{ color:var(--purple); }
.icon-coral svg{ color:var(--coral-dark); }

.card h3{ font-size:1.15rem; margin-bottom:8px; }
.card p{ font-size:.96rem; margin-bottom:0; }

/* band sections with tint backgrounds */
.band{ background: var(--paper); }
.band-magenta{ background: linear-gradient(180deg, var(--magenta-tint), var(--cream)); }
.band-sky{ background: linear-gradient(180deg, var(--sky-tint), var(--cream)); }
.band-green{ background: linear-gradient(180deg, var(--green-tint), var(--cream)); }
.band-coral{ background: linear-gradient(135deg, var(--coral), var(--magenta)); }
.band-ink{ background: var(--ink); color:#fff; }
.band-ink h2, .band-ink h3{ color:#fff; }
.band-ink p{ color: rgba(255,255,255,0.75); }

/* stats strip */
.stats{
  display:flex; flex-wrap:wrap; justify-content:space-between;
  gap: 20px; text-align:center;
}
.stat{ flex:1; min-width:130px; }
.stat .n{ font-family:"Fredoka",sans-serif; font-size:2.2rem; font-weight:700; color: var(--yellow); }
.stat .l{ font-size:.85rem; text-transform:uppercase; letter-spacing:.05em; font-weight:700; color: rgba(255,255,255,0.75); }

/* programme timeline */
.timeline{ position:relative; display:flex; gap:12px; padding-top:8px; }
.timeline::before{
  content:"";
  position:absolute; top:29px; left:5%; right:5%; height:2px;
  background-image: linear-gradient(90deg, var(--ink-soft) 60%, transparent 0%);
  background-size: 14px 2px; background-repeat: repeat-x;
  opacity:.3;
}
.timeline-step{ position:relative; flex:1; text-align:center; }
.timeline-dot{
  width:58px; height:58px; border-radius:50%;
  background:#fff; border:3px solid var(--coral);
  display:flex; align-items:center; justify-content:center;
  margin:0 auto 16px; font-family:"Fredoka",sans-serif; font-weight:600; font-size:1.3rem;
  color:var(--coral-dark); position:relative; z-index:1; box-shadow: var(--shadow-sm);
}
.timeline-step:nth-child(2) .timeline-dot{ border-color: var(--sky); color: var(--sky); }
.timeline-step:nth-child(3) .timeline-dot{ border-color: var(--yellow); color:#9A6B0C; }
.timeline-step:nth-child(4) .timeline-dot{ border-color: var(--green); color: var(--green); }
.timeline-step:nth-child(5) .timeline-dot{ border-color: var(--purple); color: var(--purple); }
.timeline-age{ font-size:.76rem; color:var(--ink-soft); font-weight:700; text-transform:uppercase; letter-spacing:.04em; }
.timeline-label{ margin:.25em 0 0; font-size:1.08rem; font-family:"Fredoka",sans-serif; font-weight:600; }
@media (max-width: 720px){
  .timeline{ flex-direction:column; gap:22px; }
  .timeline::before{ display:none; }
  .timeline-step{ display:flex; align-items:center; gap:16px; text-align:left; }
  .timeline-dot{ margin:0; flex-shrink:0; }
}

/* testimonial / quote */
.quote-card{
  background:#fff; border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow);
  position:relative;
}
.quote-card .mark{ font-family:"Fredoka",sans-serif; font-size:3.4rem; color: var(--magenta-tint); line-height:0; position:absolute; top:22px; left:24px; }
.quote-card p{ font-size:1.05rem; color: var(--ink); font-style:italic; position:relative; z-index:1; }
.quote-card .who{ font-family:"Fredoka",sans-serif; font-weight:700; color:var(--magenta-dark); font-style:normal; margin-top:14px; }

/* gallery */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item{
  border-radius: var(--radius-md);
  overflow:hidden;
  box-shadow: var(--shadow-sm);
  position:relative;
  aspect-ratio: 4/3;
  background: #eee;
}
.gallery-item img{ width:100%; height:100%; object-fit:cover; transition: transform .35s ease; }
.gallery-item:hover img{ transform: scale(1.07); }
.gallery-cap{
  position:absolute; left:0; right:0; bottom:0;
  padding: 14px 16px 12px;
  background: linear-gradient(0deg, rgba(42,27,61,0.82), rgba(42,27,61,0));
  color:#fff; font-family:"Fredoka",sans-serif; font-weight:700; font-size:.92rem;
}
.gallery-filter{
  display:flex; gap:10px; flex-wrap:wrap; margin-bottom: 30px;
}
.gf-btn{
  font-family:"Fredoka",sans-serif; font-weight:700; font-size:.88rem;
  padding: 9px 18px; border-radius:100px; border:2px solid rgba(42,27,61,0.12);
  background:#fff; cursor:pointer; color: var(--ink-soft);
}
.gf-btn.active, .gf-btn:hover{ background: var(--magenta); color:#fff; border-color:var(--magenta); }

/* forms */
.form-card{
  background:#fff; border-radius: var(--radius-lg);
  padding: 34px; box-shadow: var(--shadow);
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label{ font-family:"Fredoka",sans-serif; font-weight:700; font-size:.86rem; display:block; margin: 14px 0 6px; }
input, select, textarea{
  width:100%; padding: 12px 14px; border-radius: var(--radius-sm);
  border: 2px solid rgba(42,27,61,0.12); font-family:"Nunito",sans-serif; font-size:.98rem;
  background: var(--cream);
}
input:focus, select:focus, textarea:focus{ outline: none; border-color: var(--magenta); }
textarea{ resize: vertical; min-height: 110px; }

.contact-info-card{
  background: var(--ink); color:#fff; border-radius: var(--radius-lg);
  padding: 34px; display:flex; flex-direction:column; gap:20px;
}
.contact-info-card h3{ color:#fff; }
.info-row{ display:flex; gap:14px; align-items:flex-start; }
.info-row .ic{
  width:42px; height:42px; border-radius:50%; background: rgba(255,255,255,0.12);
  display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:1.1rem;
}
.info-row a, .info-row span{ color: rgba(255,255,255,0.85); font-size:.95rem; }
.social-row{ display:flex; gap:10px; margin-top:6px; }
.social-row a{
  width:40px; height:40px; border-radius:50%; background: rgba(255,255,255,0.12);
  display:flex; align-items:center; justify-content:center; font-size:1rem;
}
.social-row a:hover{ background: var(--magenta); }

.map-wrap{ border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-sm); }
.map-wrap iframe{ width:100%; height:340px; border:0; display:block; }

/* CTA band */
.cta-band{
  background: linear-gradient(135deg, var(--magenta), var(--coral-dark));
  border-radius: var(--radius-lg);
  padding: 46px;
  display:flex; align-items:center; justify-content:space-between; gap:24px; flex-wrap:wrap;
  color:#fff;
  position:relative; overflow:hidden;
}
.cta-band h2{ color:#fff; margin-bottom:6px; }
.cta-band p{ color: rgba(255,255,255,0.85); margin-bottom:0; }

/* footer */
footer{
  background: var(--ink); color: rgba(255,255,255,0.7);
  padding: 56px 0 24px;
  margin-top: 40px;
  position:relative;
}
.footer-grid{
  display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 32px;
}
.footer-brand{ display:flex; align-items:center; gap:10px; margin-bottom:14px; }
.footer-brand img{ height:44px; width:44px; border-radius:50%; }
.footer-brand span{ font-family:"Fredoka",sans-serif; font-weight:700; color:#fff; font-size:1.1rem; }
footer h4{ color:#fff; font-size:1rem; margin-bottom:16px; }
footer ul li{ margin-bottom:10px; }
footer a:hover{ color:#fff; }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 36px; padding-top: 20px;
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px;
  font-size:.85rem;
}

/* page header (inner pages) */
.page-hero{
  padding: 58px 0 44px;
  position:relative; overflow:hidden;
  text-align:center;
}
.page-hero h1{ font-size: clamp(2rem, 4vw, 2.8rem); }
.breadcrumb{
  font-family:"Fredoka",sans-serif; font-weight:600; font-size:.9rem; color: var(--ink-soft);
  margin-bottom:12px;
}
.breadcrumb .sep{ margin: 0 6px; }
.breadcrumb .now{ color: var(--magenta-dark); }

/* responsive collapse */
@media (max-width: 980px){
  .hero .container{ grid-template-columns: 1fr; }
  .hero-art{ order:-1; max-width: 420px; margin:0 auto; }
  .grid-4{ grid-template-columns: repeat(2,1fr); }
  .grid-3{ grid-template-columns: repeat(2,1fr); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px){
  .grid-4, .grid-3, .grid-2{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .cta-band{ flex-direction:column; text-align:center; }
  .gallery-grid{ grid-template-columns: 1fr 1fr; }
  section{ padding: 46px 0; }
  .contact-info-card, .form-card{ padding: 24px; }
}

.burger.is-open span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
.burger.is-open span:nth-child(2){ opacity:0; }
.burger.is-open span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }

/* lightbox */
#lightbox{
  position:fixed; inset:0; background: rgba(42,27,61,0.92);
  display:flex; align-items:center; justify-content:center;
  flex-direction:column; gap:14px;
  opacity:0; pointer-events:none; transition: opacity .2s ease;
  z-index: 1000; padding: 30px;
}
#lightbox.open{ opacity:1; pointer-events:auto; }
#lightbox img{ max-width:min(90vw,900px); max-height:78vh; border-radius: var(--radius-md); box-shadow: 0 20px 60px rgba(0,0,0,0.5); cursor: zoom-out; }
#lightbox .lb-cap{ color:#fff; font-family:"Fredoka",sans-serif; font-weight:700; }

/* testimonial slider */
.testimonial-slider{ position:relative; }
.testimonial-viewport{ overflow:hidden; }
.testimonial-track{ display:flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.testimonial-slide{ flex:0 0 100%; padding: 0 6px; }
.slider-dots{ display:flex; justify-content:center; gap:9px; margin-top:26px; }
.slider-dot{ width:10px; height:10px; border-radius:50%; background:rgba(42,27,61,0.18); border:none; cursor:pointer; padding:0; transition: all .2s ease; }
.slider-dot.active{ background:var(--magenta); width:28px; border-radius:6px; }
.slider-arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  width:46px; height:46px; border-radius:50%;
  background:#fff; box-shadow:var(--shadow-sm);
  border:none; cursor:pointer; z-index:5;
  display:flex; align-items:center; justify-content:center;
  font-size:1.2rem; color:var(--ink); font-family:"Fredoka",sans-serif; font-weight:700;
  transition: transform .15s ease;
}
.slider-arrow:hover{ transform: translateY(-50%) scale(1.08); color: var(--magenta-dark); }
.slider-arrow.prev{ left:-8px; }
.slider-arrow.next{ right:-8px; }
@media (max-width: 720px){
  .slider-arrow{ display:none; }
}

/* day care highlight banner */
.daycare-banner{
  background: linear-gradient(120deg, var(--yellow) 0%, #FFAA3C 100%);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  display:flex; align-items:center; justify-content:space-between;
  gap: 28px; flex-wrap:wrap;
  position:relative; overflow:hidden;
  box-shadow: 0 18px 36px -16px rgba(255, 170, 60, 0.55);
}
.daycare-banner::after{
  content:"";
  position:absolute; right:-40px; bottom:-60px;
  width:220px; height:220px; border-radius:50%;
  background: rgba(255,255,255,0.22);
}
.daycare-copy{ position:relative; z-index:1; max-width:60ch; }
.daycare-ribbon{
  display:inline-flex; align-items:center; gap:6px;
  font-family:"Fredoka",sans-serif; font-weight:700; font-size:.78rem;
  letter-spacing:.05em; text-transform:uppercase;
  background: var(--ink); color:#fff;
  padding: 6px 14px; border-radius:100px; margin-bottom:12px;
}
.daycare-copy h2{ font-size: clamp(1.5rem, 2.6vw, 2.05rem); color: var(--ink); margin-bottom:8px; }
.daycare-copy p{ color: rgba(42,27,61,0.78); margin-bottom:0; }
.daycare-icon{
  width:86px; height:86px; border-radius: 26px;
  background: rgba(255,255,255,0.55);
  display:flex; align-items:center; justify-content:center;
  font-size: 2.4rem; flex-shrink:0; position:relative; z-index:1;
}
.daycare-actions{ position:relative; z-index:1; }

/* utility */
.mt-0{ margin-top:0; }
.tag-row{ display:flex; flex-wrap:wrap; gap:10px; margin-top:18px; }
.tag{
  font-family:"Fredoka",sans-serif; font-weight:700; font-size:.8rem;
  background:#fff; padding:8px 14px; border-radius:100px; box-shadow: var(--shadow-sm);
}

/* ---------- floating WhatsApp chat button (site-wide) ---------- */
.whatsapp-float{
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.28);
  z-index: 900;
  transition: transform .2s ease;
}
.whatsapp-float:hover{ transform: scale(1.08); }
.whatsapp-float svg{ width: 30px; height: 30px; position: relative; z-index: 2; }
.wa-ring{
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: .55;
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse{
  0%   { transform: scale(1);   opacity: .55; }
  100% { transform: scale(1.7); opacity: 0; }
}
.wa-tooltip{
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: #22303F;
  color: #fff;
  font-family: "Baloo 2", "Fredoka", sans-serif;
  font-weight: 600;
  font-size: .85rem;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}
.wa-tooltip::after{
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #22303F;
}
.whatsapp-float:hover .wa-tooltip{ opacity: 1; }
@media (max-width: 640px){
  .whatsapp-float{ width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .whatsapp-float svg{ width: 26px; height: 26px; }
  .wa-tooltip{ display: none; }
}
@media (prefers-reduced-motion: reduce){
  .wa-ring{ animation: none; display: none; }
}
