/*
Theme Name: Sadena Agencies - PPE & Safety Equipment
Theme URI: https://sadena.co.ke
Author: Sadena Agencies Ltd
Author URI: https://sadena.co.ke
Description: Premium Custom WordPress Theme for Sadena Agencies Ltd - Kenya's leading supplier of quality industrial safety products, PPE, and staff uniforms.
Version: 1.0.0
Text Domain: sadena
*/

:root {
  --primary-navy: #0b1c3d;
  --primary-dark: #071228;
  --primary-light: #162c5b;
  --accent-orange: #f97316;
  --accent-orange-hover: #ea580c;
  --accent-yellow: #eab308;
  --accent-teal: #0d9488;
  --text-main: #1f2937;
  --text-muted: #6b7280;
  --text-light: #f3f4f6;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
  transition: all 0.2s ease-in-out;
  font-size: 0.95rem;
}

.btn-orange {
  background-color: var(--accent-orange);
  color: #ffffff;
}

.btn-orange:hover {
  background-color: var(--accent-orange-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.35);
}

.btn-navy {
  background-color: var(--primary-navy);
  color: #ffffff;
}

.btn-navy:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(11, 28, 61, 0.35);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent-orange);
  color: var(--accent-orange);
}

.btn-outline:hover {
  background-color: var(--accent-orange);
  color: #ffffff;
}

/* Top Announcement Bar */
.top-bar {
  background-color: var(--primary-dark);
  color: var(--text-light);
  padding: 0.5rem 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-bar-info-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.top-bar-info-item i {
  color: var(--accent-orange);
}

/* Header Navbar */
.site-header {
  background-color: var(--primary-navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand-logo-container {
  display: flex;
  align-items: center;
}

.brand-logo, .custom-logo-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #ffffff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.07);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease;
}

.brand-logo:hover, .custom-logo-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--accent-orange);
  transform: translateY(-1px);
}

.site-logo-img, .custom-logo, img.custom-logo {
  height: 62px;
  max-height: 62px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(249, 115, 22, 0.45));
  transition: transform 0.25s ease;
}

.site-logo-img:hover, .custom-logo:hover, img.custom-logo:hover {
  transform: scale(1.05);
}

.brand-text-block {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-text-name {
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.6px;
  line-height: 1.1;
  color: #ffffff;
  font-family: 'Montserrat', 'Inter', sans-serif;
}

.brand-text-tagline {
  font-size: 0.68rem;
  color: var(--accent-orange);
  font-weight: 800;
  letter-spacing: 0.8px;
  line-height: 1.2;
  margin-top: 4px;
  padding-top: 3px;
  border-top: 2px solid var(--accent-orange);
  font-family: 'Montserrat', 'Inter', sans-serif;
  text-transform: uppercase;
}

.nav-menu, ul.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li, .nav-menu .menu-item {
  position: relative;
  list-style: none;
}

.nav-menu a, .nav-link {
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-menu a:hover, .nav-menu .current-menu-item > a, .nav-link:hover, .nav-link.active {
  color: var(--accent-orange) !important;
}

.nav-item-dropdown, .menu-item-has-children {
  position: relative;
}

.dropdown-menu, .nav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--primary-navy);
  min-width: 260px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xl);
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  list-style: none;
  border: 1px solid rgba(255,255,255,0.15);
  z-index: 1100;
}

.nav-item-dropdown:hover .dropdown-menu,
.menu-item-has-children:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link, .nav-menu .sub-menu a {
  display: block;
  padding: 0.65rem 1.25rem;
  color: #cbd5e1 !important;
  font-size: 0.9rem;
  font-weight: 500;
  width: 100%;
}

.dropdown-link:hover, .nav-menu .sub-menu a:hover {
  background-color: rgba(249, 115, 22, 0.15);
  color: var(--accent-orange) !important;
  padding-left: 1.5rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rfq-cart-btn {
  position: relative;
  background-color: rgba(255,255,255,0.08);
  color: #ffffff;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.15);
}

.rfq-cart-btn:hover {
  background-color: rgba(255,255,255,0.15);
}

.rfq-badge {
  background-color: var(--accent-orange);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  position: relative;
  background: 
    radial-gradient(circle at 15% 25%, rgba(249, 115, 22, 0.22) 0%, transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(13, 148, 136, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(22, 44, 91, 0.6) 0%, transparent 70%),
    linear-gradient(135deg, #050d1e 0%, #0b1c3d 50%, #071228 100%);
  color: #ffffff;
  padding: 6rem 0 5rem;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.6;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(249, 115, 22, 0.18);
  border: 1px solid rgba(249, 115, 22, 0.5);
  color: var(--accent-orange);
  padding: 0.45rem 1.15rem;
  border-radius: 30px;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 15px rgba(249, 115, 22, 0.2);
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.hero-title span {
  color: var(--accent-orange);
  text-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #cbd5e1;
  margin-bottom: 2rem;
  max-width: 90%;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  position: relative;
  z-index: 2;
}

.hero-image {
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6), 0 0 35px rgba(249, 115, 22, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.2);
  object-fit: cover;
  width: 100%;
  height: 420px;
  backdrop-filter: blur(4px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-image:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.7), 0 0 45px rgba(249, 115, 22, 0.4);
}

.hero-experience-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: linear-gradient(135deg, var(--accent-orange), #ea580c);
  color: #ffffff;
  padding: 1.25rem 1.65rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 25px rgba(249, 115, 22, 0.4);
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 3;
}

/* Inner Page Banners */
.inner-page-banner {
  position: relative;
  background-color: var(--primary-dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 5rem 0 4rem;
  text-align: center;
  overflow: hidden;
  border-bottom: 2px solid var(--accent-orange);
}

.inner-page-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 30%, rgba(249, 115, 22, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(13, 148, 136, 0.2) 0%, transparent 50%),
    linear-gradient(135deg, rgba(5, 13, 30, 0.88) 0%, rgba(11, 28, 61, 0.92) 100%);
  pointer-events: none;
  z-index: 1;
}

.inner-page-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  opacity: 0.4;
  z-index: 1;
}

.inner-page-banner .container {
  position: relative;
  z-index: 2;
}

.exp-years {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.exp-text {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
}

/* Feature Cards Grid */
.features-section {
  margin-top: -3rem;
  position: relative;
  z-index: 10;
  padding-bottom: 4rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border-bottom: 4px solid var(--accent-orange);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: rgba(249, 115, 22, 0.1);
  color: var(--accent-orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Categories Grid */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-subtitle {
  color: var(--accent-orange);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-navy);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  padding-bottom: 5rem;
}

.category-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.category-img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}

.category-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.category-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.category-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  flex: 1;
}

/* Products Filter & Grid */
.product-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-tab {
  padding: 0.6rem 1.25rem;
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-tab:hover, .filter-tab.active {
  background: var(--primary-navy);
  color: #ffffff;
  border-color: var(--primary-navy);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.product-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-orange);
}

.product-img-wrap {
  height: 200px;
  background: #f1f5f9;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  overflow: hidden;
}

.product-img-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.product-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-orange);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.product-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 0.5rem;
}

.product-short {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-color);
}

/* Locations Section */
.locations-section {
  background: var(--primary-dark);
  color: #ffffff;
  padding: 5rem 0;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.location-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.location-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.location-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-orange);
  color: #ffffff;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.location-title {
  font-size: 1.3rem;
  font-weight: 700;
}

.location-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.92rem;
  color: #cbd5e1;
}

.location-item i {
  color: var(--accent-orange);
  margin-top: 0.2rem;
}

/* Footer */
.site-footer {
  background: var(--primary-navy);
  color: #94a3b8;
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  margin: 1rem 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-heading {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-orange);
}

.copyright-bar {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
  color: #64748b;
}

/* RFQ Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: #ffffff;
  border-radius: var(--radius-md);
  max-width: 600px;
  width: 100%;
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: #f1f5f9;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--primary-navy);
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
}

/* Media Queries */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-experience-badge {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 1rem;
    display: inline-flex;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-menu, ul.nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--primary-navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1rem;
    display: none;
    box-shadow: var(--shadow-xl);
    border-bottom: 2px solid var(--accent-orange);
  }
  .nav-menu.open, ul.nav-menu.open {
    display: flex !important;
  }
  .dropdown-menu, .nav-menu .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    background: rgba(255,255,255,0.05);
    width: 100%;
    margin-top: 0.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .top-bar-info {
    font-size: 0.8rem;
    gap: 0.75rem;
  }
  .product-filter-tabs {
    gap: 0.4rem;
  }
  .filter-tab {
    padding: 0.4rem 0.85rem;
    font-size: 0.82rem;
  }
  .catalog-responsive-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.65rem;
  }
  .brand-text-name {
    font-size: 0.95rem;
  }
  .brand-text-tagline {
    font-size: 0.55rem;
  }
  .site-logo-img {
    height: 42px;
  }
}

/* Floating WhatsApp Quick Chat Widget */
.whatsapp-float-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background-color: #25d366;
  color: #ffffff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none !important;
}

.whatsapp-float-btn:hover {
  transform: scale(1.12) rotate(6deg);
  background-color: #20ba5a;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.65);
  color: #ffffff !important;
}
