:root {
  --primary: #254d32; /* Deep Forest Green from screenshot */
  --primary-hover: #1b3a25;
  --secondary: #eab657; /* Golden from screenshot */
  --secondary-hover: #c49643;
  --light-gray: #f9f9f9;
  --text-dark: #2d3436;
}

html { position: relative; min-height: 100%; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--light-gray);
  overflow-x: hidden;
  padding-top: 0; /* No offset needed, navbar isn't fixed white anymore */
}

.font-serif {
  font-family: 'Playfair Display', serif;
}
.text-gold {
  color: var(--secondary) !important;
}

/* Typography Overrides */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  font-weight: 700;
}

/* Navbar */
.glass-nav {
  background: var(--primary);
  border-bottom: none;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.navbar-brand {
  font-family: 'Playfair Display', serif;
  color: var(--secondary) !important;
  font-weight: 700;
  font-size: 1.4rem;
}
.nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  font-weight: 600;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.nav-link:hover { color: #fff !important; }

/* Buttons */
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  border-radius: 5px;
  padding: 0.75rem 2rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 77, 50, 0.3);
}

.btn-gold {
  background-color: var(--secondary);
  color: var(--primary);
  border-radius: 5px;
  padding: 0.5rem 1.5rem;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
}
.btn-gold:hover {
  background-color: var(--secondary-hover);
  color: var(--primary);
  transform: translateY(-2px);
}

/* Cards */
.card {
  border-radius: 12px;
  border: none;
  box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

/* Hero Section specific (Used in Index.cshtml) */
.hero-wrapper {
  position: relative;
  background-color: var(--primary);
  /* Subtitle plus pattern */
  background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 80px 0;
}
.hero-content h1 {
  color: white;
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1.1;
}
.hero-content p {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
}
.hero-pill {
  display: inline-block;
  border: 1px solid rgba(234, 182, 87, 0.5);
  color: var(--secondary);
  border-radius: 50px;
  padding: 5px 15px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

/* Footer */
.premium-footer {
  background-color: var(--primary);
  color: #fff;
}
.premium-footer h4 { color: var(--secondary); }

form .form-control {
  border-radius: 8px;
  padding: 0.75rem;
  border: 1px solid #dee2e6;
}
form .form-control:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 0.25rem rgba(234, 182, 87, 0.25);
}
/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  color: #fff;
}
.whatsapp-float i {
  margin-top: 2px;
}