/* ===================================
   JUNGLE CLEANING - COMMON STYLES
   Shared styles across all pages
   =================================== */

/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Nunito:wght@400;500;600;700&display=swap");

/* ===================================
   PAGE LOADER (paw-print walk)
   =================================== */
.loader-svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  background: var(--color-cream, #faf3e7);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ajax-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 50% 50%;
  transform: rotate(90deg) translate(-50%, 0%);
  font-size: 50px;
  width: 1em;
  height: 3em;
  color: #936639;
}

.ajax-loader .paw {
  position: static;
  font-size: inherit !important;
  width: 1em;
  height: 1em;
  animation: 2050ms pawAnimation ease-in-out infinite;
  opacity: 0;
  transform: none;
}

.ajax-loader .paw svg {
  width: 100%;
  height: 100%;
}

.ajax-loader .paw .icon {
  fill: currentColor;
}

.ajax-loader .paw:nth-child(odd) {
  transform: rotate(-10deg);
}

.ajax-loader .paw:nth-child(even) {
  transform: rotate(10deg) translate(125%, 0);
}

.ajax-loader .paw:nth-child(1) {
  animation-delay: 1.25s;
}
.ajax-loader .paw:nth-child(2) {
  animation-delay: 1s;
}
.ajax-loader .paw:nth-child(3) {
  animation-delay: 0.75s;
}
.ajax-loader .paw:nth-child(4) {
  animation-delay: 0.5s;
}
.ajax-loader .paw:nth-child(5) {
  animation-delay: 0.25s;
}
.ajax-loader .paw:nth-child(6) {
  animation-delay: 0s;
}

@keyframes pawAnimation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .ajax-loader {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .ajax-loader {
    font-size: 32px;
  }
}

/* ===================================
   CSS VARIABLES
   =================================== */
:root {
  --color-sage: #60a561;
  --color-sage-light: #8dc88e;
  --color-sage-dark: #4a8c4b;
  --color-sun: #e9c46a;
  --color-sun-light: #f2d99a;
  --color-sun-dark: #d4a93a;
  --color-toffee: #936639;
  --color-toffee-light: #c49471;
  --color-toffee-dark: #6e4c2b;
  --color-cream: #faf3e7;
  --color-white: #ffffff;
  --color-black: #2c2c2c;
  --color-green-light: #8dc88e;
  --color-green: #60a561;
  --color-green-dark: #60a561;
  --color-yellow-light: #f2d99a;
  --color-yellow: #e9c46a;
  --color-yellow-dark: #d4a93a;
  --color-brown-light: #c49471;
  --color-brown: #936639;
  --color-brown-dark: #936639;
  --neon-gold: #e9c46a;
  --neon-accent: #e9c46a;
  --gradient-green: linear-gradient(135deg, #8dc88e 0%, #60a561 100%);
  --gradient-yellow: linear-gradient(135deg, #f2d99a 0%, #e9c46a 100%);
  --gradient-soft: linear-gradient(135deg, #faf3e7 0%, #e8f5e9 100%);
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  --font-primary: "Nunito", "Segoe UI", "Roboto", sans-serif;
  --font-heading: "Poppins", "Segoe UI", "Roboto", sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 50%;
}

/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-primary);
  color: var(--color-black);
  background-color: var(--color-cream);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

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

/* ===================================
   LAYOUT UTILITIES
   =================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* ===================================
   HEADER / NAVBAR STYLES
   =================================== */
#navbar-placeholder {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.header {
  position: relative;
  padding: 0.5rem 0;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 18px rgba(0, 0, 0, 0.09);
  transition:
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo-badge {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  box-shadow:
    0 4px 20px rgba(96, 165, 97, 0.3),
    0 0 0 3px rgba(141, 200, 142, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 20;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin: -10px 0;
}

.logo-badge:hover {
  transform: scale(1.08) rotate(2deg);
  box-shadow:
    0 6px 25px rgba(96, 165, 97, 0.4),
    0 0 0 4px rgba(141, 200, 142, 0.3);
}

.logo-badge .logo-img {
  width: 104%;
  height: 104%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-badge:hover .logo-img {
  transform: scale(1.05);
}

/* Neon sweep */
.nav-neon-sweep {
  position: absolute;
  left: 110px;
  top: 50%;
  height: 4px;
  width: 420px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--neon-accent),
    transparent
  );
  border-radius: 999px;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
  opacity: 0;
  z-index: 1;
  box-shadow:
    0 0 10px rgba(233, 196, 106, 0.9),
    0 0 25px rgba(233, 196, 106, 0.7),
    0 0 45px rgba(233, 196, 106, 0.5);
  animation: neonSweep 1.4s ease-out forwards;
}

@keyframes neonSweep {
  0% {
    transform: translateY(-50%) scaleX(0);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateY(-50%) scaleX(1);
    opacity: 0;
  }
}

.nav-container.neon-hit .nav {
  box-shadow:
    0 0 0 2px rgba(233, 196, 106, 0.9),
    0 0 22px rgba(233, 196, 106, 0.7),
    0 0 48px rgba(233, 196, 106, 0.6);
}

@media (max-width: 768px) {
  .nav-neon-sweep {
    display: none;
  }
}

.nav-container.neon-hit .nav a.active {
  box-shadow:
    0 0 12px rgba(96, 165, 97, 0.8),
    0 0 28px rgba(141, 200, 142, 0.6);
}

.nav-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  display: flex;
  justify-content: center;
  pointer-events: auto;
}

.nav {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 2rem;
  border-radius: 14px;
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.nav ul {
  display: flex;
  list-style: none;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.nav a {
  text-decoration: none;
  color: var(--color-black);
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  position: relative;
}

.nav a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-sage);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav a:hover::before {
  width: 80%;
}
.nav a:hover {
  color: var(--color-sage);
  transform: translateY(-2px);
}

.nav a.active {
  background: var(--gradient-green);
  color: var(--color-white);
  box-shadow: 0 2px 8px rgba(96, 165, 97, 0.35);
}

.nav a.active::before {
  display: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 100000;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--color-toffee);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.lang-switcher {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-right: 0.5rem;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 30px;
  padding: 3px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--color-toffee);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: var(--font-primary);
  letter-spacing: 0.5px;
}

.lang-btn:hover {
  background: rgba(96, 165, 97, 0.1);
  color: var(--color-sage);
}

.lang-btn.active {
  background: var(--gradient-green);
  color: #fff;
  box-shadow: 0 2px 6px rgba(96, 165, 97, 0.3);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
  display: inline-block;
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--radius-md);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: var(--color-sage);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--color-sun);
  color: var(--color-black);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--gradient-yellow);
  color: var(--color-black);
  box-shadow: var(--shadow-md);
}
.btn-secondary:hover {
  background: var(--color-sun-dark);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-sage);
  color: var(--color-sage);
}
.btn-outline:hover {
  background: var(--color-sage);
  color: var(--color-white);
  transform: translateY(-3px);
}

.btn-large {
  padding: 1.2rem 2.5rem;
  font-size: 1.2rem;
}

/* ===================================
   FOOTER STYLES
   =================================== */
.footer {
  background: var(--color-toffee);
  color: var(--color-white);
  padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.footer-logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: var(--spacing-md);
}

.footer-logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
  box-shadow:
    0 4px 20px rgba(96, 165, 97, 0.3),
    0 0 0 3px rgba(141, 200, 142, 0.2);
  padding: 5px;
  object-fit: contain;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-logo:hover {
  transform: scale(1.08) rotate(2deg);
  box-shadow:
    0 6px 25px rgba(96, 165, 97, 0.4),
    0 0 0 4px rgba(141, 200, 142, 0.3);
}

.footer-brand {
  text-align: center;
}
.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: var(--spacing-sm);
}
.slogan {
  font-style: italic;
  opacity: 0.9;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: var(--spacing-sm);
  font-size: 1.2rem;
  color: var(--color-sun);
}
.footer-links ul {
  list-style: none;
}
.footer-links a {
  color: var(--color-white);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.footer-links a:hover {
  opacity: 1;
  color: var(--color-sun);
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}
.paw-small {
  font-size: 1.5rem;
  opacity: 0.5;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.2);
  }
}

@keyframes neonPulse {
  0%,
  100% {
    opacity: 0.6;
    box-shadow:
      0 0 5px rgba(96, 165, 97, 0.4),
      0 0 10px rgba(141, 200, 142, 0.2);
  }
  50% {
    opacity: 1;
    box-shadow:
      0 0 15px rgba(96, 165, 97, 0.8),
      0 0 25px rgba(141, 200, 142, 0.6);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}
.fade-in-delay {
  animation: fadeIn 0.8s ease 0.3s forwards;
  opacity: 0;
}
.fade-in-delay-2 {
  animation: fadeIn 0.8s ease 0.6s forwards;
  opacity: 0;
}
.float-animation {
  animation: float 4s ease-in-out infinite;
}
.bounce-animation {
  animation: bounce 2s ease-in-out infinite;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ===================================
   DECORATIVE GRAPHICS
   =================================== */
.decorative-graphic {
  position: absolute;
  pointer-events: none;
  opacity: 0.6;
  z-index: 0;
}
.decorative-graphic.paw-print {
  width: 60px;
  height: 60px;
  animation: float 6s ease-in-out infinite;
}
.decorative-graphic.cleaning-tool {
  width: 80px;
  height: 80px;
  animation: bounce 3s ease-in-out infinite;
}
.decorative-graphic.happy-pet {
  width: 120px;
  height: 120px;
  animation: float 8s ease-in-out infinite;
}
.decorative-graphic.top-left {
  top: 10%;
  left: 5%;
}
.decorative-graphic.top-right {
  top: 15%;
  right: 5%;
}
.decorative-graphic.bottom-left {
  bottom: 10%;
  left: 8%;
}
.decorative-graphic.bottom-right {
  bottom: 15%;
  right: 8%;
}
.decorative-graphic.center-left {
  top: 50%;
  left: 3%;
  transform: translateY(-50%);
}
.decorative-graphic.center-right {
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .decorative-graphic {
    display: none;
  }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
  .nav-container {
    position: static;
    transform: none;
    display: none;
  }

  .nav-container.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(250, 243, 231, 0.98);
    z-index: 99999;
    padding: 6rem 2rem 2rem;
    overflow-y: auto;
    animation: slideIn 0.3s ease;
  }

  .nav-container.active .nav {
    background: transparent;
    box-shadow: none;
    padding: 0;
    width: 100%;
    display: block;
  }

  .nav-container.active .nav ul {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    align-items: center;
  }
  .nav-container.active .nav li {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .nav-container.active .nav a {
    font-size: 1.4rem;
    padding: 1rem 2rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-black);
    display: block;
    width: 100%;
    max-width: 400px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
  }

  .nav-container.active .nav a.active {
    background: var(--gradient-green);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active {
    position: fixed;
    top: 1.2rem;
    right: 2rem;
    z-index: 100000;
  }
  .lang-switcher {
    margin-right: 0.5rem;
    padding: 2px;
    gap: 2px;
  }
  .lang-btn {
    font-size: 0.65rem;
    padding: 0.3rem 0.5rem;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(10px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px);
  }

  .logo-badge {
    width: 70px;
    height: 70px;
    margin: -5px 0;
  }
  body {
    padding-top: 70px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-logo {
    width: 80px;
    height: 80px;
  }
  .nav-connector-line {
    display: none;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  .logo-badge {
    width: 60px;
    height: 60px;
  }
}

/* ===================================
   WHATSAPP FLOATING BUTTON
   =================================== */
.wa-fab-wrapper {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.wa-fab-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--color-sage);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(96, 165, 97, 0.45);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.wa-fab-btn:hover {
  transform: scale(1.12);
  background: #4a8c4b;
  box-shadow: 0 8px 28px rgba(96, 165, 97, 0.6);
}
.wa-fab-btn svg {
  width: 32px;
  height: 32px;
  fill: #fff;
  transition: transform 0.3s ease;
}
.wa-fab-btn.active svg {
  transform: rotate(45deg);
}

.wa-popup {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  width: 260px;
  overflow: hidden;
  transform-origin: bottom right;
  transform: scale(0.85) translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.25s ease;
}

.wa-popup.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.wa-popup-header {
  background: var(--gradient-green);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wa-popup-header svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  flex-shrink: 0;
}
.wa-popup-header span {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}

.wa-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  text-decoration: none;
  color: var(--color-black);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background 0.2s ease;
}

.wa-option:last-child {
  border-bottom: none;
}
.wa-option:hover {
  background: rgba(233, 196, 106, 0.15);
}

.wa-option-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(96, 165, 97, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.wa-option:hover .wa-option-icon {
  background: rgba(96, 165, 97, 0.2);
}
.wa-option-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--color-sage);
}
.wa-option-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-toffee);
  line-height: 1.2;
}
.wa-option-text span {
  font-size: 0.8rem;
  color: #777;
}

@media (max-width: 480px) {
  .wa-fab-wrapper {
    bottom: 18px;
    right: 16px;
  }
  .wa-fab-btn {
    width: 52px;
    height: 52px;
  }
  .wa-fab-btn svg {
    width: 28px;
    height: 28px;
  }
  .wa-popup {
    width: 230px;
  }
}

/* Calendly Badge - Mobile Only */
@media (min-width: 769px) {
  .calendly-badge-widget {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .calendly-badge-widget {
    left: 20px !important;
    right: auto !important;
    bottom: 20px !important;
  }
}

/* ===================================
   WHATSAPP FLOATING ACTION BUTTON
   =================================== */
.wa-fab-wrapper {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 100000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

/* The popup card */
.wa-popup {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  padding: 14px 16px;
  width: 240px;
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  pointer-events: none;
  transition:
    opacity 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: bottom right;
}

.wa-popup.open {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
  pointer-events: auto !important;
  visibility: visible !important;
}

/* Popup header */
.wa-popup-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  margin-bottom: 8px;
  border-bottom: 1px solid #f0f0f0;
  font-weight: 700;
  font-size: 0.88rem;
  color: #333;
}

.wa-popup-header svg {
  width: 22px;
  height: 22px;
  fill: #25d366;
  flex-shrink: 0;
}

/* Option rows */
.wa-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 8px;
  border-radius: 10px;
  text-decoration: none;
  color: #222;
  transition: background 0.2s ease;
  cursor: pointer;
}

.wa-option:hover {
  background: #f0fff4;
}

.wa-option-icon {
  width: 36px;
  height: 36px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-option-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.wa-option-text {
  font-size: 0.9rem;
  line-height: 1.3;
}

.wa-option-text strong {
  display: block;
  color: #111;
}

/* The circular FAB button */
.wa-fab-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s ease;
  position: relative;
}

.wa-fab-btn svg {
  width: 30px;
  height: 30px;
  fill: #fff;
  transition: transform 0.3s ease;
}

.wa-fab-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.wa-fab-btn.active {
  background: #1da851;
  transform: scale(1.05) rotate(10deg);
}

/* Pulse ring animation on the FAB */
.wa-fab-btn::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: waPulse 2.2s ease-out infinite;
  pointer-events: none;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .wa-fab-wrapper {
    bottom: 18px;
    right: 16px;
  }
  .wa-popup {
    width: 210px;
  }
}

/* ===================================
   FORM VALIDATION STYLES
   =================================== */
.form-validation-msg {
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeInDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-left: 5px solid transparent;
}

.form-alert {
  background-color: #fdecea;
  color: #c62828;
  border-left-color: #c62828;
  box-shadow: 0 4px 12px rgba(198, 40, 40, 0.08);
}

.form-warning {
  background-color: #fff9e6;
  color: #856404;
  border-left-color: #ffc107;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.08);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .form-validation-msg {
    padding: 10px 12px;
    font-size: 0.85rem;
  }
}
