:root {
  /* User Requested Colors */
  --primary: #73a333; /* Vibrant Olive/Lime */
  --secondary: #5e603e; /* Dark Olive/Khaki */
  
  /* Derived Premium Palette */
  --primary-light: rgba(115, 163, 51, 0.1);
  --primary-hover: #628d2a;
  --secondary-light: #6a6c46;
  --accent: #d4a373; /* Warm elegant accent */
  
  /* Neutrals */
  --bg-main: #fcfcfb; /* Very soft warm off-white for premium feel */
  --bg-white: #ffffff;
  --text-main: #333330; /* Soft black, slightly warm */
  --text-muted: #6b6b66;
  --border-light: #e8e8e3;
  
  /* Shadows */
  --shadow-sm: 0 4px 6px rgba(94, 96, 62, 0.05);
  --shadow-md: 0 10px 24px rgba(94, 96, 62, 0.08);
  --shadow-lg: 0 20px 40px rgba(94, 96, 62, 0.12);
  
  /* Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  
  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', system-ui, sans-serif;
  
  /* Transitions */
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text-main);
  line-height: 1.7;
  background-color: var(--bg-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Premium Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--secondary); /* Dark olive for headings ensures premium readability */
  margin-bottom: 1rem;
}
h1 { font-size: 3.5rem; letter-spacing: -0.03em; }
h2 { font-size: 2.75rem; letter-spacing: -0.02em; }
h3 { font-size: 1.75rem; }
p { margin-bottom: 1.5rem; color: var(--text-muted); font-size: 1.125rem; font-weight: 400; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-hover); }

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

/* Layout & Containers */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 6rem 0;
  position: relative;
}
.section-light { background-color: var(--bg-main); }
.section-white { background-color: var(--bg-white); }
.section-primary { 
  background-color: var(--secondary); /* Using secondary (dark olive) for dark sections */
  color: var(--bg-white); 
}
.section-primary h1, .section-primary h2, .section-primary h3, .section-primary p { color: var(--bg-white); }
.section-accent {
  background-color: var(--primary);
  color: white;
}
.section-accent h1, .section-accent h2, .section-accent h3, .section-accent p { color: white; }

.hero {
  padding: 10rem 0 6rem;
}
.hero-buttons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text-main);
}
.trust-badge i {
  color: var(--primary);
  font-size: 1.2rem;
}

/* Buttons - Premium Modern Style */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(115, 163, 51, 0.4);
}
.btn-primary:hover {
  background-color: var(--primary-hover);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(115, 163, 51, 0.5);
}
.btn-outline {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* Badge - Elegant Tags */
.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

/* Emergency Strip */
.emergency-strip {
  background-color: var(--secondary);
  color: white;
  text-align: center;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Glassmorphism Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
  transition: var(--transition);
}
.header.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.95);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--secondary);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
}
.logo-icon {
  font-size: 2rem;
  color: var(--primary);
}

/* Navigation */
.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-link {
  color: var(--text-main);
  font-weight: 600;
  font-size: 1.05rem;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--secondary);
  cursor: pointer;
}

/* Split Layouts (Images & Text) */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.split-image:hover img {
  transform: scale(1.05);
}

/* Custom Cards & Grids */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}
.card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.card-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}
.premium-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

/* Process Steps */
.step-card {
  background: var(--bg-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.step-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
}
.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.5rem;
  font-family: var(--font-heading);
  box-shadow: 0 4px 10px rgba(115, 163, 51, 0.3);
}
.section-primary .step-card h3 { color: var(--secondary) !important; }
.section-primary .step-card p { color: var(--text-muted) !important; }

/* FAQ Accordion */
.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  padding: 1.5rem 2rem;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--secondary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-icon {
  color: var(--primary);
  transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 2rem;
  max-height: 0;
  opacity: 0;
  transition: all 0.3s ease;
}
.faq-item.active .faq-answer {
  padding: 0 2rem 1.5rem;
  max-height: 500px;
  opacity: 1;
}

/* Location Chips */
.location-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}
.location-chip {
  padding: 1rem 1.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-weight: 600;
  color: var(--secondary);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-sm);
}
.location-chip i {
  color: var(--primary);
}
.location-chip:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.location-chip:hover i {
  color: white;
}

/* Footer */
.footer {
  background-color: var(--secondary);
  color: rgba(255,255,255,0.7);
  padding: 6rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer h4 {
  color: white;
  margin-bottom: 1.5rem;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 1rem;
}
.footer-links a {
  color: rgba(255,255,255,0.7);
}
.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}

/* Floating CTA */
.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background-color: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 4px 20px rgba(115, 163, 51, 0.5);
  z-index: 999;
  transition: var(--transition);
}
.floating-cta:hover {
  transform: scale(1.1) rotate(10deg);
  background-color: var(--primary-hover);
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .split-layout > div:nth-child(2) {
    order: -1;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  .nav {
    position: absolute;
    top: 90px;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    clip-path: circle(0% at 100% 0);
    transition: all 0.5s ease-in-out;
  }
  .nav.active {
    clip-path: circle(150% at 100% 0);
  }
  .mobile-toggle { display: block; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
