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

:root {
  --primary: #00d2b9;
  --primary-dark: #00b8a0;
  --bg-dark: #020b16;
  --bg-mid: #031c2d;
}

body{
font-family: Arial, Helvetica, sans-serif;
line-height:1.6;
}

.section-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--primary);
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

html {
  scroll-behavior: smooth;
scroll-padding-top: 80px;
}

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  animation: wa-entrance 0.5s ease 1s both;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  animation: wa-wiggle 3s ease-in-out 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.7);
}

.whatsapp-float:hover svg {
  animation: none;
  transform: scale(1.1);
}

.whatsapp-float:hover::after {
  animation: none;
  opacity: 0;
}

/* Tooltip */
.whatsapp-float::before {
  content: 'Chat with us!';
  position: absolute;
  right: 64px;
  background: #025c4c;
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  font-family: inherit;
}

.whatsapp-float:hover::before {
  opacity: 1;
}

/* Entrance animation */
@keyframes wa-entrance {
  from {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

/* Wiggle animation */
@keyframes wa-wiggle {
  0%, 100% { transform: rotate(0deg); }
  10%       { transform: rotate(-15deg); }
  20%       { transform: rotate(15deg); }
  30%       { transform: rotate(-10deg); }
  40%       { transform: rotate(10deg); }
  50%       { transform: rotate(0deg); }
}

/* Contact info links */
a.contact-info-value {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
}

a.contact-info-value:hover {
  color: #00d2b9;
}/* WhatsApp button — smaller on mobile so it doesn't block content */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 44px;
    height: 44px;
    bottom: 16px;
    right: 16px;
  }

  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }

  .whatsapp-float::before {
    display: none;
  }
}