/* ==============================================
   InstantShipments Logistics — Main Stylesheet
   Berkley-Inspired: Dark Navy + Orange Theme
   ============================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --isl-navy:    #0a2240;
  --isl-navy2:   #071830;
  --isl-navy3:   #0d2e56;
  --isl-orange:  #e07b10;
  --isl-orange2: #f59120;
  --isl-white:   #ffffff;
  --isl-light:   #f4f7fb;
  --isl-card:    #ffffff;
  --isl-border:  #dde3ea;
  --isl-text:    #1a2840;
  --isl-muted:   #6b7c93;
  --isl-success: #28a745;
  --isl-danger:  #dc3545;
  --isl-warn:    #ffc107;
  /* legacy aliases kept for backward compat */
  --isl-bg:      #0a2240;
  --isl-bg2:     #071830;
  --isl-accent:  #e07b10;
  --isl-accent2: #f59120;
  --isl-accent3: #e07b10;
  --isl-glow:    0 4px 20px rgba(0,0,0,0.15);
  --font-head:   'Poppins', sans-serif;
  --font-body:   'Poppins', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  background: var(--isl-white);
  color: var(--isl-text);
  font-family: var(--font-body);
  font-size: 16px;
  scroll-behavior: smooth;
}

/* ---- NAVBAR ---- */
.isl-navbar {
  background: var(--isl-navy);
  border-bottom: none;
  padding: 0;
  z-index: 1050;
  box-shadow: 0 2px 15px rgba(0,0,0,0.3);
}
.isl-navbar .navbar-inner { padding: 14px 0; }
.isl-navbar .brand-icon { font-size: 1.6rem; color: var(--isl-orange); }
.isl-navbar .brand-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--isl-white);
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.isl-navbar .brand-text small { display: block; font-size: 0.65rem; font-weight: 400; color: rgba(255,255,255,0.5); letter-spacing: 1px; text-transform: uppercase; }
.isl-navbar .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 6px 14px !important;
  border-radius: 4px;
  transition: color 0.2s;
}
.isl-navbar .nav-link:hover,
.isl-navbar .nav-link.active { color: var(--isl-orange) !important; }
.navbar-toggler { border-color: rgba(255,255,255,0.3); }
.navbar-toggler-icon { filter: invert(1); }

/* ---- BUTTONS ---- */
.btn-glow {
  background: var(--isl-orange);
  color: #fff !important;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  border: none;
  border-radius: 5px;
  padding: 10px 24px;
  box-shadow: 0 4px 12px rgba(224,123,16,0.35);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.btn-glow:hover { background: var(--isl-orange2); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(224,123,16,0.45); }
.btn-glow-navy {
  background: var(--isl-navy);
  box-shadow: 0 4px 12px rgba(10,34,64,0.35);
}
.btn-glow-navy:hover { background: var(--isl-navy3); }
.btn-outline-glow {
  background: transparent;
  color: var(--isl-orange) !important;
  border: 2px solid var(--isl-orange);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 5px;
  padding: 9px 24px;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-outline-glow:hover { background: var(--isl-orange); color: #fff !important; }
.btn-outline-white {
  background: transparent;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.7);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 5px;
  padding: 9px 24px;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

/* ---- PAGE WRAPPER ---- */
.page-wrapper { padding-top: 80px; min-height: 100vh; }

/* ---- HERO ---- */
.hero-section {
  min-height: 92vh;
  background:
    linear-gradient(135deg, rgba(7,24,48,0.88) 0%, rgba(10,34,64,0.78) 60%, rgba(14,48,96,0.82) 100%),
    url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1600&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}
.hero-section::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(224,123,16,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-title .accent { color: var(--isl-orange); }
.hero-subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.82); max-width: 560px; line-height: 1.8; text-shadow: 0 1px 8px rgba(0,0,0,0.3); }

/* ---- SECTION ---- */
.section { padding: 80px 0; }
.section-dark { background: var(--isl-navy); color: var(--isl-white); }
.section-navy2 { background: var(--isl-navy2); color: var(--isl-white); }
.section-light { background: var(--isl-light); }
.section-white { background: var(--isl-white); }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--isl-navy);
  margin-bottom: 0.5rem;
}
.section-title-white { color: #fff; }
.section-title .accent { color: var(--isl-orange); }
.section-subtitle { color: var(--isl-muted); font-size: 1rem; max-width: 600px; line-height: 1.7; }
.section-divider {
  width: 50px; height: 4px;
  background: var(--isl-orange);
  margin: 14px 0 30px;
  border-radius: 2px;
}
.section-divider-center { margin: 14px auto 30px; }

/* ---- CARD ---- */
.isl-card {
  background: var(--isl-white);
  border: 1px solid var(--isl-border);
  border-radius: 10px;
  padding: 28px;
  transition: box-shadow 0.3s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.isl-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.12); transform: translateY(-3px); }
.isl-card-dark {
  background: var(--isl-navy3);
  border-color: rgba(255,255,255,0.08);
  color: #fff;
}
.isl-card-dark:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.35); }
.card-icon {
  width: 60px; height: 60px;
  background: rgba(224,123,16,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--isl-orange);
  margin-bottom: 18px;
}
.card-icon-navy {
  background: rgba(10,34,64,0.12);
  color: var(--isl-navy);
}

/* ---- SERVICE ICONS BAR ---- */
.services-bar { background: var(--isl-orange); padding: 0; }
.service-bar-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 22px 18px; text-align: center; cursor: pointer;
  border-right: 1px solid rgba(255,255,255,0.2);
  transition: background 0.2s; flex: 1;
  text-decoration: none; color: #fff;
}
.service-bar-item:last-child { border-right: none; }
.service-bar-item:hover { background: rgba(0,0,0,0.12); color: #fff; }
.service-bar-item i { font-size: 1.8rem; margin-bottom: 6px; }
.service-bar-item span { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }

/* ---- PAGE HERO BANNER (inner pages) ---- */
.page-hero-banner {
  position: relative;
  padding: 90px 0 70px;
  background: url('https://images.unsplash.com/photo-1494412651409-8963ce7935a7?w=1600&q=80') center/cover no-repeat;
  overflow: hidden;
}
.page-hero-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,18,40,0.88) 0%, rgba(0,31,63,0.80) 100%);
}
.page-hero-banner.blog-hero {
  background-image: url('https://images.unsplash.com/photo-1504711434969-e33886168f5c?w=1600&q=80');
}
.page-hero-banner.contact-hero {
  background-image: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1600&q=80');
}

/* ---- TRACK HERO ---- */
.track-hero {
  position: relative;
  padding: 100px 0 90px;
  text-align: center;
  background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,18,40,0.80)),
    url('https://images.unsplash.com/photo-1494412651409-8963ce7935a7?w=1600&q=80') center/cover no-repeat;
  overflow: hidden;
}
.track-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(224,123,16,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.track-hero .section-title { color: #fff !important; font-size: clamp(2rem, 4vw, 3rem); text-shadow: 0 2px 18px rgba(0,0,0,0.5); }
.track-hero p { color: rgba(255,255,255,0.78) !important; font-size: 1.05rem; }
.track-input-wrap {
  display: flex; gap: 0;
  max-width: 640px; margin: 0 auto;
  border-radius: 6px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.track-input-wrap input {
  flex: 1;
  background: #fff;
  border: none;
  color: var(--isl-text);
  padding: 16px 22px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  outline: none;
}
.track-input-wrap input::placeholder { color: #aab4c0; }
.track-input-wrap .btn-glow { border-radius: 0; padding: 16px 28px; font-size: 0.95rem; }

/* ---- SHIPMENT RESULT ---- */
.shipment-result { display: none; }
.shipment-result.show { display: block; }
.result-card {
  background: var(--isl-white);
  border: 1px solid var(--isl-border);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 30px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.result-header {
  background: var(--isl-navy);
  border-bottom: none;
  padding: 24px 30px;
}
.result-body { padding: 28px; }

/* ---- STATUS BADGE ---- */
.status-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid;
  transition: box-shadow 0.3s;
}
.status-pending {
  background: rgba(255,193,7,0.18); color: #c97b00;
  border-color: rgba(255,193,7,0.6);
  box-shadow: 0 0 16px rgba(255,193,7,0.25);
}
.status-in-transit {
  background: rgba(13,110,253,0.15); color: #0d6efd;
  border-color: rgba(13,110,253,0.5);
  box-shadow: 0 0 16px rgba(13,110,253,0.25);
}
.status-arrived {
  background: rgba(40,167,69,0.15); color: #198754;
  border-color: rgba(40,167,69,0.5);
  box-shadow: 0 0 16px rgba(40,167,69,0.25);
}
.status-on-hold {
  background: rgba(220,53,69,0.15); color: #dc3545;
  border-color: rgba(220,53,69,0.55);
  box-shadow: 0 0 18px rgba(220,53,69,0.35);
  animation: badge-pulse-danger 2s infinite;
}
.status-out-delivery {
  background: rgba(23,162,184,0.15); color: #0dcaf0;
  border-color: rgba(23,162,184,0.5);
  box-shadow: 0 0 16px rgba(23,162,184,0.25);
}
.status-delivered {
  background: rgba(25,135,84,0.15); color: #198754;
  border-color: rgba(25,135,84,0.5);
  box-shadow: 0 0 18px rgba(25,135,84,0.3);
}
@keyframes badge-pulse-danger {
  0%, 100% { box-shadow: 0 0 14px rgba(220,53,69,0.35); }
  50%       { box-shadow: 0 0 26px rgba(220,53,69,0.65); }
}

/* ---- TIMELINE ---- */
.tracking-timeline { list-style: none; padding: 0; margin: 0; position: relative; }
.tracking-timeline::before {
  content: '';
  position: absolute; top: 0; bottom: 0; left: 20px;
  width: 2px;
  background: linear-gradient(to bottom, var(--isl-orange), #dde3ea);
  opacity: 0.5;
}
.timeline-item { display: flex; gap: 20px; padding: 0 0 28px 0; position: relative; }
.timeline-dot {
  width: 42px; height: 42px; border-radius: 50%;
  background: #f0f3f7; border: 2px solid #d0d8e4;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: #b0bcc8;
  flex-shrink: 0; z-index: 1;
  transition: all 0.3s;
}
.timeline-dot.done {
  background: #28a745; border-color: #28a745; color: #fff;
  box-shadow: 0 0 14px rgba(40,167,69,0.4);
}
.timeline-dot.active {
  background: var(--isl-orange); border-color: var(--isl-orange); color: #fff;
  box-shadow: 0 0 18px rgba(224,123,16,0.55);
}
/* Label styles */
.timeline-label { font-weight: 700; margin: 0 0 3px; font-size: 0.93rem; }
.label-done   { color: #1a2840; }
.label-active { color: var(--isl-orange); }
.label-pending { color: #aab4c0; }
.text-success-sm { color: #28a745; font-size: 0.75rem; font-weight: 600; }
.text-active-sm  { color: var(--isl-orange); font-size: 0.75rem; font-weight: 600; }
.text-muted-sm   { color: #b0bcc8; font-size: 0.75rem; }

/* ---- MAP ---- */
#shipment-map {
  width: 100%; height: 420px;
  border-radius: 10px;
  border: 1px solid var(--isl-border);
  background: #e8edf2;
  overflow: hidden;
}

/* ---- INFO ROW ---- */
.info-label { font-size: 0.73rem; color: var(--isl-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin-bottom: 4px; }
.info-value { font-size: 0.95rem; color: var(--isl-text); font-weight: 600; }
.info-value-white { color: #fff; }

/* ---- FOOTER ---- */
.isl-footer { background: var(--isl-navy2); color: rgba(255,255,255,0.75); }
.footer-brand { font-family: var(--font-head); color: var(--isl-white); font-size: 1.15rem; font-weight: 700; }
.footer-heading { font-size: 0.78rem; letter-spacing: 2px; color: var(--isl-orange); text-transform: uppercase; font-weight: 700; margin-bottom: 18px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.footer-links a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; font-size: 0.9rem; }
.footer-links a:hover { color: var(--isl-orange); }
.footer-divider { border-color: rgba(255,255,255,0.1); }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; text-decoration: none; font-size: 1rem;
}
.social-links a:hover { background: var(--isl-orange); border-color: var(--isl-orange); color: #fff; }
.text-muted-light { color: rgba(255,255,255,0.5); }

/* ---- STATS BOX ---- */
.stat-box { text-align: center; padding: 24px 16px; }
.stat-num {
  font-family: var(--font-head); font-size: 2.8rem;
  font-weight: 800; color: var(--isl-orange); line-height: 1;
}
.stat-num-white { color: #fff; }
.stat-label { font-size: 0.88rem; color: var(--isl-muted); margin-top: 6px; font-weight: 500; }
.stat-label-white { color: rgba(255,255,255,0.65); }
.stat-box-card {
  background: var(--isl-white); border-radius: 10px; padding: 30px 20px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08); text-align: center;
}

/* ---- BLOG CARD ---- */
.blog-card {
  background: var(--isl-white); border: 1px solid var(--isl-border);
  border-radius: 10px; overflow: hidden;
  transition: box-shadow 0.3s, transform 0.2s;
}
.blog-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.12); transform: translateY(-3px); }
.blog-card img { width: 100%; height: 210px; object-fit: cover; }
.blog-card-body { padding: 22px; }
.blog-title { font-size: 1rem; color: var(--isl-navy); font-weight: 700; }
.blog-excerpt { color: var(--isl-muted); font-size: 0.9rem; }

/* ---- FORMS ---- */
.isl-form .form-label { color: var(--isl-text); font-size: 0.85rem; font-weight: 600; }
.isl-form .form-control, .isl-form .form-select {
  background: #fff; border: 1px solid #d0d8e4;
  color: var(--isl-text); border-radius: 6px;
  font-family: var(--font-body); font-size: 0.95rem;
  padding: 10px 14px;
  transition: border-color 0.2s;
}
.isl-form .form-control:focus, .isl-form .form-select:focus {
  border-color: var(--isl-orange); box-shadow: 0 0 0 3px rgba(224,123,16,0.12);
  background: #fff; color: var(--isl-text);
}
.isl-form .form-control::placeholder { color: #aab4c0; }

/* ---- ANIMATIONS ---- */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 8px rgba(224,123,16,0.4); }
  50% { box-shadow: 0 0 20px rgba(224,123,16,0.8); }
}
@keyframes float-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up { animation: float-up 0.6s ease forwards; }

/* ---- SERVICES PAGE ---- */
.service-icon-wrap {
  width: 80px; height: 80px; border-radius: 16px;
  background: rgba(224,123,16,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--isl-orange);
  margin-bottom: 20px; transition: all 0.3s;
}
.isl-card:hover .service-icon-wrap { background: var(--isl-orange); color: #fff; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--isl-navy) 0%, #0e3565 100%);
  padding: 70px 0;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=1600&q=80') center/cover no-repeat;
  opacity: 0.06;
}

/* ---- MISC ---- */
::selection { background: rgba(224,123,16,0.3); }
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #f0f2f5; }
::-webkit-scrollbar-thumb { background: #c8d0da; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--isl-orange); }
a { color: var(--isl-orange); }
a:hover { color: var(--isl-orange2); }

/* ---- ALERT ---- */
.isl-alert { border-radius: 8px; padding: 14px 20px; font-weight: 600; border: 1px solid; }
.isl-alert-error   { background: rgba(220,53,69,0.08);  border-color: rgba(220,53,69,0.3);  color: #b02a37; }
.isl-alert-success { background: rgba(40,167,69,0.08);  border-color: rgba(40,167,69,0.35); color: #1e7e34; }
.isl-alert-warn    { background: rgba(255,193,7,0.1);   border-color: rgba(255,193,7,0.4);  color: #856404; }

/* ---- QUICK TRACK WIDGET ---- */
.quick-track-widget {
  background: var(--isl-white);
  border-radius: 10px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.18);
}
.quick-track-widget .widget-title {
  font-size: 1rem; font-weight: 700; color: var(--isl-navy);
  border-bottom: 2px solid var(--isl-orange); padding-bottom: 12px; margin-bottom: 20px;
}
.quick-track-widget .form-control {
  border: 1px solid #d0d8e4; border-radius: 6px; padding: 12px 16px;
  font-size: 0.95rem; color: var(--isl-text);
}
.quick-track-widget .form-control:focus { border-color: var(--isl-orange); box-shadow: 0 0 0 3px rgba(224,123,16,0.12); }

/* ---- WHY CHOOSE US FEATURE LIST ---- */
.feature-item { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.feature-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: rgba(224,123,16,0.1); color: var(--isl-orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.feature-title { font-weight: 700; color: var(--isl-navy); margin-bottom: 4px; }
.feature-desc { color: var(--isl-muted); font-size: 0.88rem; line-height: 1.6; }

/* Responsive */
@media (max-width: 991px) {
  .service-bar-item { padding: 16px 10px; }
}
@media (max-width: 767px) {
  .track-input-wrap { flex-direction: column; border-radius: 6px; overflow: visible; }
  .track-input-wrap input { border-radius: 6px; }
  .track-input-wrap .btn-glow { border-radius: 6px; width: 100%; justify-content: center; }
  .hero-title { font-size: 2rem; }
  .section { padding: 55px 0; }
  .services-bar .d-flex { flex-wrap: wrap; }
  .service-bar-item { width: 50%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); }
}

/* ---- WHATSAPP FLOAT BUTTON ---- */
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99999;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-float-tooltip {
  background: #1e293b;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.25s, transform 0.25s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}
.wa-float-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: #1e293b;
}
.wa-float:hover .wa-float-tooltip {
  opacity: 1;
  transform: translateX(0);
}
.wa-float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  color: #fff !important;
  font-size: 1.9rem;
  text-decoration: none !important;
  transition: background 0.2s, transform 0.2s;
  animation: wa-pulse 2.2s infinite;
  flex-shrink: 0;
}
.wa-float-btn:hover {
  background: #1ebe5d;
  transform: scale(1.1);
  color: #fff !important;
  animation: none;
  box-shadow: 0 6px 28px rgba(37,211,102,0.65);
}

