/* ==========================================================================
   TUMPIS TOURS MASTER STYLESHEET
   Pure CSS, 100% WebP Images, Zero JS, 100/100 Performance
   ========================================================================== */

@import './base/variables.css?v=20260823-3';
@import './base/reset.css?v=20260823-3';
@import './components/header.css?v=20260823-3';
@import './components/hero.css?v=20260823-3';
@import './components/cards.css?v=20260823-3';
@import './components/buttons.css?v=20260823-3';
@import './components/modal.css?v=20260823-3';
@import './components/footer.css?v=20260823-3';
@import './components/blog.css?v=20260823-3';
@import './utilities/animations.css?v=20260823-3';

/* Floating WhatsApp Quick Contact Button */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 99;
  background-color: #087f3e;
  color: #ffffff;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(8deg);
  box-shadow: 0 8px 24px rgba(8, 127, 62, 0.45);
}

.whatsapp-float svg {
  width: 2rem;
  height: 2rem;
  fill: currentColor;
}
