/* Custom variables for a softer teal/green aesthetic (matching user request) */
:root {
  --primary: #004d40; /* Teal Dark */
  --secondary: #26a69a; /* Teal Soft / Green */
  --accent: #b2dfdb; /* Teal Light */
  --light-bg: #f5fbfa; /* Very soft mint/white background */
  --dark-text: #1b3a36; /* Dark teal for text */
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--light-bg);
  color: var(--dark-text);
  overflow-x: hidden;
}

/* Glassmorphism Classes */
.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-dark {
  background: rgba(10, 37, 64, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Floating WhatsApp Animation */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

@keyframes pulse-ring {
  0% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { transform: scale(0.8); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  animation: pulse-ring 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128C7E;
}

/* Custom Gradients */
.text-gradient-gold {
  background: linear-gradient(135deg, #1de9b6 0%, #00bfa5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #00695c 100%);
}

/* Accordion Transitions */
.accordion-content {
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

/* Testimonial Video Container */
.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 9/16; /* Portrait standard for mobile videos */
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border: 4px solid white;
  background-color: #000;
}
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Swiper Overrides */
.hero-swiper {
  width: 100%;
  height: 100%;
  position: absolute !important;
  top: 0;
  left: 0;
  z-index: 0;
}
.swiper-slide {
  background-size: cover;
  background-position: center;
}
.swiper-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 77, 64, 0.95) 0%, rgba(0, 77, 64, 0.4) 100%);
}
.swiper-pagination-bullet {
  background: white !important;
  opacity: 0.5 !important;
}
.swiper-pagination-bullet-active {
  background: var(--secondary) !important;
  opacity: 1 !important;
}

/* Hero Overlay */
.hero-overlay {
  background: linear-gradient(to right, rgba(10, 37, 64, 0.9) 0%, rgba(10, 37, 64, 0.4) 100%);
}

/* Custom Buttons */
.btn-primary {
  background-color: var(--secondary);
  color: white; /* Changed to white for better contrast on teal */
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  background-color: #00bfa5;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(38, 166, 154, 0.3);
}
.btn-whatsapp {
  background-color: #25d366;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-whatsapp:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* Decorative Blobs */
.blob {
  position: absolute;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.5;
}
.blob-1 { top: -10%; left: -10%; width: 400px; height: 400px; background: var(--accent); border-radius: 50%; }
.blob-2 { bottom: -10%; right: -10%; width: 400px; height: 400px; background: var(--secondary); border-radius: 50%; }
