:root {
  --bs-primary: #2A6E6E;
  --bs-primary-rgb: 42, 110, 110;
  --bs-secondary: #D49A38;
  --bs-secondary-rgb: 212, 154, 56;
  --bs-body-font-family: 'Open Sans', sans-serif;
  --bs-heading-font-family: 'Poppins', sans-serif;
  --text-primary: #2A6E6E;
  --bg-primary: #2A6E6E;
  --text-secondary: #D49A38;
  --bg-secondary: #D49A38;
  --bg-background: #ffffff;
  --text-foreground: #22353f; /* 200 25% 15% */
  --text-muted: #67757d; /* 200 10% 45% */
  --bg-accent: #eff7f7; /* 180 30% 94% */
  
  --gradient-primary: linear-gradient(135deg, #2A6E6E, #1f5252);
  --gradient-gold: linear-gradient(135deg, #D49A38, #b07e26);
}

body {
  font-family: var(--bs-body-font-family);
  color: var(--text-foreground);
  background-color: var(--bg-background);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .font-heading {
  font-family: var(--bs-heading-font-family);
}

/* Utilities mapping */
.text-primary { color: var(--text-primary) !important; }
.bg-primary { background-color: var(--bg-primary) !important; color: #fff; }
.text-secondary { color: var(--text-secondary) !important; }
.bg-secondary { background-color: var(--bg-secondary) !important; color: #fff; }
.bg-background { background-color: var(--bg-background) !important; }
.text-foreground { color: var(--text-foreground) !important; }
.text-muted-foreground { color: var(--text-muted) !important; }
.bg-accent { background-color: var(--bg-accent) !important; }

.text-gradient-primary {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-gradient-primary { background-image: var(--gradient-primary); }
.bg-gradient-gold { background-image: var(--gradient-gold); }

/* Custom Overrides for precise mapping */
.hero-min-height {
  min-height: 500px;
}
@media (min-width: 768px) {
  .hero-min-height { min-height: 600px; }
}

.hero-overlay {
  background-color: rgba(42, 110, 110, 0.75);
}

/* Nav Hover Fixes */
.hover-text-primary:hover {
  color: var(--text-primary) !important;
}
.hover-bg-accent:hover {
  background-color: var(--bg-accent) !important;
}
.transition-colors {
  transition: color 0.2s ease-in-out, background-color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
.transition-opacity {
  transition: opacity 0.2s ease-in-out;
}
.hover-opacity-90:hover {
  opacity: 0.9;
}

/* Dropdown */
.dropdown-menu-custom {
  min-width: 200px;
  border-radius: 0.5rem;
  border: 1px solid #e0ecec;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);
}
.dropdown-item:active {
  background-color: var(--bg-accent);
  color: var(--text-primary);
}
.dropdown:hover .dropdown-menu {
  display: block;
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25d366;
  color: white;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
  z-index: 1000;
  transition: transform 0.2s;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  color: white;
}

/* Section styling */
.section-padding { padding-top: 5rem; padding-bottom: 5rem; }
.bg-muted { background-color: #f7fbfb !important; }

/* Cards hover */
.hover-card-up {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hover-card-up:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);
}

/* Badge */
.badge-custom {
  background-color: rgba(212, 154, 56, 0.2);
  color: var(--text-secondary);
  font-weight: 600;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  display: inline-block;
  margin-bottom: 1.5rem;
}

/* Stats */
.stat-border {
  border-right: 1px solid rgba(255,255,255, 0.2);
}
.stat-border:last-child {
  border-right: none;
}
@media (max-width: 767px) {
  .stat-border { border-right: none; border-bottom: 1px solid rgba(255,255,255, 0.2); padding-bottom: 1.5rem; margin-bottom: 1.5rem; }
  .stat-border:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
}

/* Carousel Indicators */
.carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  margin: 0 4px;
}
.carousel-indicators .active {
  width: 40px;
  border-radius: 999px;
  background-color: var(--bs-secondary);
}

.carousel-item {
  transition: transform 1.2s ease-in-out, opacity .5s ease-out;
}

.dropdown.group button {
    font-size: 14px;
}
.container{
    max-width: 100%;
}