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

:root {
  /* Brand Palette - TRUE GREEN (No Blue) */
  --primary: #1b4332; /* Forest Green */
  --primary-light: #2d6a4f;
  --secondary: #b7e4c7; /* Light Green / Mint */
  --secondary-light: #d8f3dc;
  --accent: #ffb703; /* Yellowish accent for contrast */
  
  /* Semantic Colors */
  --bg-main: #f8fcf9;
  --bg-alt: #ffffff;
  --text-main: #081c15; /* Very dark green-black */
  --text-muted: #495057;
  --text-light: #ffffff;
  
  /* Spacing & Borders */
  --radius-lg: 24px;
  --transition: all 0.3s ease-in-out;
}

/* BOOTSTRAP OVERRIDES - FORCING GREEN */
.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: white !important;
}

.btn-primary:hover {
    background-color: var(--primary-light) !important;
    border-color: var(--primary-light) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.btn-outline-primary {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary) !important;
    color: white !important;
}

.badge.bg-secondary,
.badge.bg-secondary-custom {
    background-color: var(--secondary) !important;
    color: var(--primary) !important;
}

/* Base Styles */
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-main);
  padding-top: 80px;
}

a {
    color: var(--primary);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

.btn:focus, .form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(27, 67, 50, 0.25) !important;
    border-color: var(--primary) !important;
}

.btn-secondary {
    background-color: var(--secondary) !important;
    border-color: var(--secondary) !important;
    color: var(--primary) !important;
}

.btn-secondary:hover {
    background-color: var(--secondary-light) !important;
    border-color: var(--secondary-light) !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--primary);
  font-weight: 700;
}

/* Navbar Glassmorphism */
.bg-white-glass {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--secondary);
}

.nav-link:hover {
  color: var(--primary-light) !important;
}

.nav-link.active {
    color: var(--primary) !important;
    font-weight: 700;
}

/* Custom Utilities */
.bg-primary-custom { background-color: var(--primary) !important; color: white !important; }
.bg-secondary-custom { background-color: var(--secondary-light) !important; }

.btn-secondary-custom {
    background-color: var(--secondary) !important;
    border-color: var(--secondary) !important;
    color: var(--primary) !important;
}

.btn-secondary-custom:hover {
    background-color: var(--secondary-light) !important;
    border-color: var(--secondary-light) !important;
}

.hover-secondary:hover {
    color: var(--secondary) !important;
}

/* Components */
.card-custom {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: 100%;
  transition: var(--transition);
  border: 1px solid var(--secondary);
}

.card-custom:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(27, 67, 50, 0.1);
}

.icon-box {
  width: 60px;
  height: 60px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Hero Section */
.hero-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8fcf9 0%, #e9f5ee 100%);
  position: relative;
}

.hero-tagline {
  display: inline-block;
  padding: 6px 16px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.image-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(27, 67, 50, 0.15);
  border: 4px solid white;
}

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #2d6a4f;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(45, 106, 79, 0.3);
  z-index: 1000;
  transition: var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  color: white;
}

/* Scroll Reveal */
.reveal-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-section { padding: 60px 0; text-align: center; }
  .hero-btns { justify-content: center; }
}
