@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .heading-font {
  font-family: 'Playfair Display', serif;
}

/* Sticky WhatsApp Button Animation */
.whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 50;
  animation: bounce-slight 2.5s infinite ease-in-out;
  transition: transform 0.3s ease;
}

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

@keyframes bounce-slight {
  0%, 100% { transform: translateY(0); box-shadow: 0 10px 15px -3px rgba(37, 211, 102, 0.4); }
  50% { transform: translateY(-12px); box-shadow: 0 20px 25px -5px rgba(37, 211, 102, 0.6); }
}

/* Hero Overlay Gradient */
.hero-overlay {
  background: linear-gradient(135deg, rgba(4, 79, 38, 0.95) 0%, rgba(4, 79, 38, 0.75) 100%);
}

.hero-pattern {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b78f54' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Card Hover Effects */
.service-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-bottom-color: #b78f54;
}

.service-card:hover .icon-wrapper {
  background-color: #044f26;
  color: #b78f54;
  transform: scale(1.1);
}

.icon-wrapper {
  transition: all 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
  background: #b78f54; 
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #044f26; 
}

/* Glassmorphism for floating header */
.glass-header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Button hover effects */
.btn-primary {
  background-color: #044f26;
  color: white;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #b78f54;
  z-index: -1;
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.3s ease;
}

.btn-primary:hover::after {
  transform: scaleY(1);
}

.btn-secondary {
  background-color: #b78f54;
  color: white;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-secondary::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #044f26;
  z-index: -1;
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.3s ease;
}

.btn-secondary:hover::after {
  transform: scaleY(1);
}
