/* ============================================================
   NEWHEIGHTS PROPERTIES LTD — Main Stylesheet
   Forest Green | Warm Ivory | Earth Bronze
   ============================================================ */

/* CSS Custom Properties — overridden dynamically from admin */
:root {
  --nh-primary:    #2D5A27;
  --nh-secondary:  #F5ECD7;
  --nh-accent:     #9B6B1B;
  --nh-text-dark:  #1A2E1A;
  --nh-text-light: #FFFFFF;
  --nh-footer-bg:  #1A3A14;
  --nh-primary-light: #3d7a35;
  --nh-accent-light:  #b8861f;
  --nh-gray-100:   #f8f6f0;
  --nh-gray-200:   #eee9dc;
  --nh-gray-600:   #6c6c5e;
  --nh-shadow:     0 4px 24px rgba(45,90,39,0.10);
  --nh-shadow-lg:  0 8px 48px rgba(45,90,39,0.16);
  --nh-radius:     8px;
  --nh-radius-lg:  16px;
  --nh-transition: all 0.3s ease;
}

/* ============================================================
   BASE STYLES
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background-color: var(--nh-secondary);
  color: var(--nh-text-dark);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  color: var(--nh-primary);
  line-height: 1.3;
  font-weight: 700;
}

a {
  color: var(--nh-accent);
  text-decoration: none;
  transition: var(--nh-transition);
}
a:hover { color: var(--nh-primary); }

p { margin-bottom: 1.2rem; color: #4a5040; }

img { max-width: 100%; height: auto; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nh-navbar {
  background: transparent;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: none;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.nh-navbar.scrolled {
  background-color: var(--nh-primary);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

/* On non-hero pages the navbar is always solid */
body.nh-page-inner .nh-navbar {
  background-color: var(--nh-primary);
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
}

.nh-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.nh-navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  text-decoration: none;
}

.nh-navbar-brand img {
  height: 60px; /* Increased from 44px */
  width: auto;
}

.nh-brand-text {
  display: flex;
  flex-direction: column;
}

.nh-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 13px; /* Slightly smaller for balance */
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.5px;
  line-height: 1.1;
}

.nh-brand-tagline {
  font-size: 8px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-top: 2px;
}

.nh-brand-logo-img {
  height: 84px; /* Increased from 72px */
  width: auto;
  max-width: 240px;
  object-fit: contain;
  flex-shrink: 0;
}

.nh-brand-favicon {
  height: 100px; /* Increased from 80px */
  width: 100px; /* Increased from 80px */
  object-fit: contain;
  border-radius: 8px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.1);
  padding: 4px;
}

.nh-brand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  flex-shrink: 0;
  color: #FFFFFF;
  font-size: 24px;
  border: 1px solid rgba(255,255,255,0.2);
}

.nh-nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2px;
}

.nh-nav-item { position: relative; }

.nh-nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 20px 14px;
  color: rgba(255,255,255,0.88);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-decoration: none;
  transition: var(--nh-transition);
  white-space: nowrap;
}

.nh-nav-link:hover,
.nh-nav-link.active {
  color: var(--nh-accent);
  background-color: rgba(255,255,255,0.06);
}

.nh-nav-link .chevron {
  font-size: 10px;
  opacity: 0.7;
}

/* Dropdown */
.nh-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: #FFFFFF;
  min-width: 220px;
  border-radius: var(--nh-radius);
  box-shadow: var(--nh-shadow-lg);
  list-style: none;
  padding: 8px 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--nh-transition);
  border-top: 3px solid var(--nh-accent);
  z-index: 1001;
}

.nh-nav-item:hover .nh-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nh-dropdown li a {
  display: block;
  padding: 10px 20px;
  color: var(--nh-text-dark);
  font-size: 13.5px;
  font-weight: 500;
  transition: var(--nh-transition);
}

.nh-dropdown li a:hover {
  background-color: var(--nh-secondary);
  color: var(--nh-primary);
  padding-left: 26px;
}

/* Mobile Toggle */
.nh-mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.nh-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #FFFFFF;
  transition: var(--nh-transition);
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.nh-hero-slider {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #0d2a09;
}

.nh-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}

.nh-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  min-height: 100vh;
}

.nh-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 8s ease;
  transform: scale(1.05);
}

.nh-slide.active .nh-slide-bg { transform: scale(1); }

.nh-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,42,9,0.72) 0%,
    rgba(29,58,20,0.55) 50%,
    rgba(13,42,9,0.65) 100%
  );
}

.nh-slide-bg-gradient {
  background: linear-gradient(135deg, var(--nh-primary) 0%, #1a3a14 60%, #0d2a09 100%);
}

.nh-slide-bg-gradient::after {
  background: radial-gradient(ellipse at 20% 80%, rgba(155,107,27,0.18) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 20%, rgba(45,90,39,0.25) 0%, transparent 55%);
}

.nh-slide-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 140px 32px 100px;
  margin: 0 auto;
  animation: slideContentIn 0.9s ease forwards;
}

@keyframes slideContentIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nh-slide-small {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--nh-accent);
  background: rgba(155,107,27,0.18);
  border: 1px solid rgba(155,107,27,0.35);
  padding: 7px 20px;
  border-radius: 100px;
  margin-bottom: 28px;
  font-weight: 700;
}

.nh-slide-main {
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 28px;
  letter-spacing: -0.3px;
}

.nh-slide-desc {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  margin: 0 auto 40px;
  font-weight: 400;
  line-height: 1.8;
}

.nh-slide-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Slider arrows */
.nh-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #FFFFFF;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  transition: var(--nh-transition);
  backdrop-filter: blur(4px);
}

.nh-slider-arrow:hover {
  background: var(--nh-accent);
  border-color: var(--nh-accent);
  transform: translateY(-50%) scale(1.08);
}

.nh-slider-prev { left: 28px; }
.nh-slider-next { right: 28px; }

/* Slider dots */
.nh-slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}

.nh-slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: var(--nh-transition);
  padding: 0;
}

.nh-slider-dot.active {
  background: var(--nh-accent);
  width: 28px;
  border-radius: 5px;
}

/* Scroll indicator */
.nh-hero-scroll-indicator {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.45);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(7px); }
}

/* ============================================================
   BUTTONS — Earth Bronze, elegant, premium lift effect
   ============================================================ */
.btn-nh-primary,
.btn-nh-outline,
.btn-nh-green,
.btn-nh-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.34,1.56,0.64,1);
  text-decoration: none;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

/* Earth Bronze primary */
.btn-nh-primary {
  background: linear-gradient(135deg, var(--nh-accent) 0%, #b8801f 100%);
  color: #FFFFFF;
  padding: 13px 30px;
  border: 2px solid transparent;
  box-shadow: 0 4px 14px rgba(155,107,27,0.28);
}

.btn-nh-primary:hover {
  background: linear-gradient(135deg, #b8801f 0%, var(--nh-accent) 100%);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(155,107,27,0.42);
}

.btn-nh-primary:active { transform: translateY(-1px); }

/* White outline (on dark/hero backgrounds) */
.btn-nh-outline {
  background: rgba(255,255,255,0.06);
  color: #FFFFFF;
  padding: 13px 30px;
  border: 2px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}

.btn-nh-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.9);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Forest Green */
.btn-nh-green {
  background: linear-gradient(135deg, var(--nh-primary) 0%, var(--nh-primary-light) 100%);
  color: #FFFFFF;
  padding: 12px 26px;
  border: 2px solid transparent;
  box-shadow: 0 4px 12px rgba(45,90,39,0.28);
}

.btn-nh-green:hover {
  background: linear-gradient(135deg, var(--nh-primary-light) 0%, var(--nh-primary) 100%);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(45,90,39,0.38);
}

/* Ghost (Forest Green border, transparent fill) */
.btn-nh-ghost {
  background: transparent;
  color: var(--nh-primary);
  padding: 11px 26px;
  border: 2px solid var(--nh-primary);
}

.btn-nh-ghost:hover {
  background: var(--nh-primary);
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(45,90,39,0.25);
}

/* ============================================================
   SECTION STYLES
   ============================================================ */
.nh-section {
  padding: 96px 0;
}

.nh-section-sm { padding: 60px 0; }
.nh-section-lg { padding: 120px 0; }

.nh-section-ivory { background-color: var(--nh-secondary); }
.nh-section-white { background-color: #FFFFFF; }
.nh-section-green { background-color: var(--nh-primary); }
.nh-section-dark  { background-color: var(--nh-text-dark); }

.nh-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.nh-container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Labels */
.nh-section-label {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--nh-accent);
  font-weight: 700;
  margin-bottom: 16px;
}

.nh-section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--nh-primary);
  margin-bottom: 20px;
}

.nh-section-title.white { color: #FFFFFF; }

.nh-section-intro {
  font-size: 1.1rem;
  color: #5a6050;
  max-width: 640px;
  margin-bottom: 56px;
}

.nh-divider {
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--nh-accent), transparent);
  margin: 20px 0 32px;
  border-radius: 2px;
}

/* Grid */
.nh-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.nh-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.nh-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ============================================================
   CARDS
   ============================================================ */
.nh-card {
  background: #FFFFFF;
  border-radius: var(--nh-radius-lg);
  box-shadow: var(--nh-shadow);
  overflow: hidden;
  transition: var(--nh-transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.nh-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--nh-shadow-lg);
}

.nh-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.nh-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.nh-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--nh-primary);
  margin-bottom: 12px;
}

.nh-card-text { color: #5a6050; font-size: 0.95rem; }

/* Icon Cards */
.nh-icon-card {
  background: #FFFFFF;
  border-radius: var(--nh-radius-lg);
  padding: 36px 28px;
  box-shadow: var(--nh-shadow);
  transition: var(--nh-transition);
  border-bottom: 3px solid transparent;
}

.nh-icon-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--nh-shadow-lg);
  border-bottom-color: var(--nh-accent);
}

.nh-icon-circle {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--nh-accent) 0%, #c4891f 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: #FFFFFF;
  font-size: 24px;
}

.nh-icon-circle.green {
  background: linear-gradient(135deg, var(--nh-primary) 0%, var(--nh-primary-light) 100%);
}

/* ============================================================
   INVESTMENT CARDS
   ============================================================ */
.nh-investment-card {
  background: #FFFFFF;
  border-radius: var(--nh-radius-lg);
  box-shadow: var(--nh-shadow);
  overflow: hidden;
  transition: var(--nh-transition);
  display: flex;
  flex-direction: column;
}

.nh-investment-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--nh-shadow-lg);
}

.nh-investment-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: linear-gradient(135deg, var(--nh-primary), #2a5020);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 48px;
}

.nh-investment-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.nh-investment-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--nh-primary);
  margin-bottom: 8px;
}

.nh-investment-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0;
}

.nh-investment-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nh-investment-meta-label {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8a8a78;
  font-weight: 600;
}

.nh-investment-meta-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--nh-primary);
}

.nh-investment-meta-value.accent { color: var(--nh-accent); }

.nh-progress-bar {
  height: 6px;
  background: var(--nh-gray-200);
  border-radius: 100px;
  overflow: hidden;
  margin: 16px 0 8px;
}

.nh-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--nh-accent), var(--nh-primary));
  border-radius: 100px;
  transition: width 1s ease;
}

.nh-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #6c6c5e;
}

/* Status Badges */
.nh-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nh-badge-open     { background: #d4edda; color: #155724; }
.nh-badge-upcoming { background: #d1ecf1; color: #0c5460; }
.nh-badge-funded   { background: #cce5ff; color: #004085; }
.nh-badge-closed   { background: #e2e3e5; color: #383d41; }
.nh-badge-completed{ background: #d1d1c8; color: #1a2e1a; }
.nh-badge-pending  { background: #fff3cd; color: #856404; }
.nh-badge-approved { background: #d4edda; color: #155724; }
.nh-badge-rejected { background: #f8d7da; color: #721c24; }

/* ============================================================
   PAGE HERO (Inner Pages)
   ============================================================ */
.nh-page-hero {
  background: linear-gradient(135deg, var(--nh-primary) 0%, #1a3a14 100%);
  padding: 140px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* When a background image is set via inline style, add a dark overlay via ::before */
.nh-page-hero[style*="background-image"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,58,20,0.78) 0%, rgba(45,90,39,0.65) 100%);
  z-index: 0;
}

.nh-page-hero .nh-container {
  position: relative;
  z-index: 1;
}

.nh-page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--nh-accent), transparent);
  z-index: 2;
}

.nh-page-hero h1 {
  color: #FFFFFF;
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 16px;
}

.nh-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nh-breadcrumb a { color: var(--nh-accent); }
.nh-breadcrumb span { color: rgba(255,255,255,0.35); }

/* ============================================================
   LEADERSHIP
   ============================================================ */
.nh-leader-card {
  background: #FFFFFF;
  border-radius: var(--nh-radius-lg);
  overflow: hidden;
  box-shadow: var(--nh-shadow);
  transition: var(--nh-transition);
  text-align: center;
}

.nh-leader-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--nh-shadow-lg);
}

.nh-leader-photo {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: top;
  background: linear-gradient(135deg, var(--nh-primary) 0%, var(--nh-primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 80px;
}

.nh-leader-info {
  padding: 28px 24px;
  border-top: 3px solid var(--nh-accent);
}

.nh-leader-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--nh-primary);
  margin-bottom: 6px;
}

.nh-leader-position {
  font-size: 0.9rem;
  color: var(--nh-accent);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ============================================================
   GALLERY
   ============================================================ */
.nh-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.nh-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--nh-radius);
  cursor: pointer;
  aspect-ratio: 4/3;
}

.nh-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.nh-gallery-item:hover img { transform: scale(1.08); }

.nh-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,90,39,0.7), transparent);
  opacity: 0;
  transition: var(--nh-transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nh-gallery-item:hover .nh-gallery-overlay { opacity: 1; }

.nh-gallery-icon {
  color: #FFFFFF;
  font-size: 32px;
  transform: scale(0.8);
  transition: var(--nh-transition);
}

.nh-gallery-item:hover .nh-gallery-icon { transform: scale(1); }

/* ============================================================
   FORMS
   ============================================================ */
.nh-form-group { margin-bottom: 24px; }

.nh-form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--nh-text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.nh-form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--nh-gray-200);
  border-radius: var(--nh-radius);
  font-size: 15px;
  color: var(--nh-text-dark);
  background: #FFFFFF;
  transition: var(--nh-transition);
  appearance: none;
}

.nh-form-control:focus {
  outline: none;
  border-color: var(--nh-primary);
  box-shadow: 0 0 0 3px rgba(45,90,39,0.12);
}

.nh-form-control::placeholder { color: #b0b098; }

textarea.nh-form-control { resize: vertical; min-height: 140px; }

.nh-form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232D5A27' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
  cursor: pointer;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.nh-contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.nh-contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(155,107,27,0.12);
  border-radius: var(--nh-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nh-accent);
  font-size: 20px;
  flex-shrink: 0;
}

.nh-contact-info-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8a8a78;
  font-weight: 600;
  margin-bottom: 4px;
}

.nh-contact-info-value {
  font-size: 15px;
  color: var(--nh-text-dark);
  font-weight: 500;
}

/* ============================================================
   INVESTOR PORTAL
   ============================================================ */
.nh-investor-sidebar {
  width: 260px;
  flex-shrink: 0;
  background: var(--nh-primary);
  min-height: calc(100vh - 80px);
  padding: 32px 0;
}

.nh-portal-layout {
  display: flex;
  min-height: calc(100vh - 80px);
  margin-top: 80px;
}

.nh-portal-content {
  flex: 1;
  padding: 40px 48px;
  background: var(--nh-secondary);
}

.nh-sidebar-nav { list-style: none; padding: 0; margin: 0; }

.nh-sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  transition: var(--nh-transition);
}

.nh-sidebar-nav li a:hover,
.nh-sidebar-nav li a.active {
  background: rgba(255,255,255,0.1);
  color: #FFFFFF;
  border-left: 3px solid var(--nh-accent);
}

.nh-sidebar-user {
  padding: 24px 28px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 8px;
}

.nh-sidebar-user-name {
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
}

.nh-sidebar-user-role {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
}

/* Dashboard Stats */
.nh-stat-card {
  background: #FFFFFF;
  border-radius: var(--nh-radius-lg);
  padding: 28px 24px;
  box-shadow: var(--nh-shadow);
  border-left: 4px solid var(--nh-accent);
}

.nh-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--nh-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.nh-stat-label {
  font-size: 12px;
  color: #6c6c5e;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ============================================================
   STATS BAR (Homepage)
   ============================================================ */
.nh-stats-bar {
  background: var(--nh-primary);
  padding: 48px 0;
}

.nh-stat-item {
  text-align: center;
  padding: 20px;
}

.nh-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--nh-accent);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.nh-stat-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
.nh-footer {
  background: var(--nh-footer-bg);
  padding: 80px 0 0;
  color: rgba(255,255,255,0.7);
}

.nh-footer-brand {
  margin-bottom: 24px;
}

.nh-footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #FFFFFF;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.nh-footer-brand-tagline {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--nh-accent);
}

.nh-footer-about {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

.nh-footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: 700;
}

.nh-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nh-footer-links li { margin-bottom: 10px; }

.nh-footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: var(--nh-transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nh-footer-links a:hover {
  color: var(--nh-accent);
  padding-left: 4px;
}

.nh-footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.nh-footer-contact-item svg,
.nh-footer-contact-item i {
  color: var(--nh-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.nh-social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.nh-social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: var(--nh-transition);
  font-size: 16px;
}

.nh-social-link:hover {
  background: var(--nh-accent);
  border-color: var(--nh-accent);
  color: #FFFFFF;
  transform: translateY(-3px);
}

.nh-footer-divider {
  border-color: rgba(255,255,255,0.1);
  margin: 48px 0 0;
}

.nh-footer-bottom {
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.nh-footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* ============================================================
   ALERTS & MESSAGES
   ============================================================ */
.nh-alert {
  padding: 16px 20px;
  border-radius: var(--nh-radius);
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
}

.nh-alert-success {
  background: #d4edda;
  color: #155724;
  border-left: 4px solid #28a745;
}

.nh-alert-error {
  background: #f8d7da;
  color: #721c24;
  border-left: 4px solid #dc3545;
}

.nh-alert-info {
  background: #d1ecf1;
  color: #0c5460;
  border-left: 4px solid #17a2b8;
}

.nh-alert-warning {
  background: #fff3cd;
  color: #856404;
  border-left: 4px solid #ffc107;
}

/* ============================================================
   TABLES
   ============================================================ */
.nh-table {
  width: 100%;
  border-collapse: collapse;
  background: #FFFFFF;
  border-radius: var(--nh-radius-lg);
  overflow: hidden;
  box-shadow: var(--nh-shadow);
}

.nh-table th {
  background: var(--nh-primary);
  color: #FFFFFF;
  padding: 14px 20px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nh-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--nh-gray-200);
  font-size: 14px;
  color: var(--nh-text-dark);
}

.nh-table tr:last-child td { border-bottom: none; }
.nh-table tr:hover td { background: var(--nh-gray-100); }

/* ============================================================
   ACCORDION / FAQ
   ============================================================ */
.nh-accordion { border-radius: var(--nh-radius-lg); overflow: hidden; box-shadow: var(--nh-shadow); }

.nh-accordion-item { border-bottom: 1px solid var(--nh-gray-200); background: #FFFFFF; }
.nh-accordion-item:last-child { border-bottom: none; }

.nh-accordion-btn {
  width: 100%;
  text-align: left;
  padding: 22px 28px;
  background: #FFFFFF;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--nh-primary);
  font-family: 'Playfair Display', serif;
  transition: var(--nh-transition);
}

.nh-accordion-btn:hover { background: var(--nh-gray-100); }
.nh-accordion-btn.open { color: var(--nh-accent); }

.nh-accordion-icon {
  font-size: 20px;
  color: var(--nh-accent);
  transition: transform 0.3s ease;
}

.nh-accordion-btn.open .nh-accordion-icon { transform: rotate(180deg); }

.nh-accordion-body {
  display: none;
  padding: 0 28px 22px;
  color: #5a6050;
  font-size: 15px;
  line-height: 1.8;
}

.nh-accordion-body.open { display: block; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.nh-process-steps {
  position: relative;
  padding: 40px 0;
}

.nh-process-step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 48px;
  position: relative;
}

.nh-process-step:last-child { margin-bottom: 0; }

.nh-step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--nh-accent) 0%, var(--nh-primary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.nh-step-content { flex: 1; }

.nh-step-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--nh-primary);
  margin-bottom: 8px;
}

.nh-step-desc { color: #5a6050; font-size: 15px; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.nh-lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--nh-transition);
}

.nh-lightbox-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nh-lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--nh-radius);
  box-shadow: 0 0 80px rgba(0,0,0,0.5);
}

.nh-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #FFFFFF;
  font-size: 32px;
  cursor: pointer;
  background: transparent;
  border: none;
  line-height: 1;
  opacity: 0.8;
  transition: var(--nh-transition);
}

.nh-lightbox-close:hover { opacity: 1; transform: scale(1.1); }

.nh-mobile-menu-brand {
  display: none;
  text-align: left;
  padding: 10px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 12px;
}

.nh-mobile-menu-brand img {
  height: 80px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 4px;
  border-radius: 8px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nh-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .nh-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nh-nav-menu, .nh-mobile-toggle { display: flex; }
  .nh-mobile-menu-brand { display: block; }
  .nh-nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: var(--nh-primary);
    flex-direction: column;
    padding: 0 0 40px;
    overflow-y: auto;
    transition: left 0.35s ease;
    box-shadow: 4px 0 24px rgba(0,0,0,0.3);
    gap: 0;
    align-items: stretch;
  }
  .nh-nav-menu.open { left: 0; }
  .nh-nav-link { padding: 16px 28px; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nh-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    border-left: 3px solid var(--nh-accent);
    margin-left: 28px;
    border-radius: 0 0 var(--nh-radius) var(--nh-radius);
    display: none;
  }
  .nh-dropdown.mobile-open { display: block; }
  .nh-grid-2 { grid-template-columns: 1fr; }
  .nh-portal-layout { flex-direction: column; }
  .nh-investor-sidebar { width: 100%; min-height: auto; }
  .nh-portal-content { padding: 24px; }
}

@media (max-width: 640px) {
  .nh-section { padding: 60px 0; }
  .nh-grid-3 { grid-template-columns: 1fr; }
  .nh-grid-4 { grid-template-columns: 1fr; }
  .nh-hero-slider { min-height: 100svh; }
  .nh-slide.active { min-height: 100svh; }
  .nh-slide-content { padding: 120px 20px 80px; }
  .nh-slide-actions { flex-direction: column; align-items: center; }
  .nh-slider-arrow { display: none; }
  .nh-page-hero { padding: 120px 0 48px; }
  .nh-stats-bar .nh-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   ANIMATIONS — Subtle, premium, scroll-triggered
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(28px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.nh-animate-up   { animation: fadeInUp 0.65s ease forwards; }
.nh-animate-fade { animation: fadeIn   0.65s ease forwards; }

/* Scroll-reveal: default (slide-up) */
[data-aos] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-aos="fade-left"]  { transform: translateX(-28px); }
[data-aos="fade-right"] { transform: translateX(28px); }
[data-aos="fade-in"]    { transform: none; }
[data-aos="zoom-in"]    { transform: scale(0.92); }

[data-aos].aos-animate {
  opacity: 1;
  transform: none !important;
}

/* Stagger delays for grid children */
[data-aos]:nth-child(1) { transition-delay: 0s; }
[data-aos]:nth-child(2) { transition-delay: 0.1s; }
[data-aos]:nth-child(3) { transition-delay: 0.18s; }
[data-aos]:nth-child(4) { transition-delay: 0.26s; }
[data-aos]:nth-child(5) { transition-delay: 0.34s; }
[data-aos]:nth-child(6) { transition-delay: 0.42s; }

/* Image zoom on hover */
.nh-img-zoom { overflow: hidden; border-radius: var(--nh-radius-lg); }
.nh-img-zoom img { transition: transform 0.55s ease; }
.nh-img-zoom:hover img { transform: scale(1.06); }

/* Card lift on hover (already on .nh-card, adding utility) */
.nh-hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.nh-hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: var(--nh-shadow-lg);
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  [data-aos], .nh-animate-up, .nh-animate-fade,
  .nh-slide-content, .nh-slide-bg {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================================
   MISC
   ============================================================ */
.nh-text-accent { color: var(--nh-accent); }
.nh-text-primary { color: var(--nh-primary); }
.nh-text-white { color: #FFFFFF; }
.nh-text-muted { color: #8a8a78; }

.nh-bg-ivory { background-color: var(--nh-secondary); }
.nh-bg-white { background-color: #FFFFFF; }
.nh-bg-green { background-color: var(--nh-primary); }

.nh-border-accent { border-color: var(--nh-accent); }

.nh-fw-bold { font-weight: 700; }
.nh-fw-600  { font-weight: 600; }

.nh-mb-0  { margin-bottom: 0; }
.nh-mt-0  { margin-top: 0; }
.nh-mb-16 { margin-bottom: 16px; }
.nh-mb-32 { margin-bottom: 32px; }
.nh-mb-48 { margin-bottom: 48px; }
.nh-mb-64 { margin-bottom: 64px; }
.nh-mt-32 { margin-top: 32px; }
.nh-mt-48 { margin-top: 48px; }

.nh-text-center { text-align: center; }
.nh-text-right  { text-align: right; }

.nh-d-flex  { display: flex; }
.nh-gap-16  { gap: 16px; }
.nh-gap-24  { gap: 24px; }
.nh-align-center { align-items: center; }
.nh-justify-between { justify-content: space-between; }
.nh-flex-wrap { flex-wrap: wrap; }

.nh-opacity-0 { opacity: 0; }

.nh-overlay-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}

.nh-overlay-mobile.active { display: block; }

/* ============================================================
   Project Card Carousel
   ============================================================ */
.nh-card-carousel {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  display: block;
}
.nh-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}
.nh-carousel-slide {
  min-width: 100%;
  height: 100%;
  flex-shrink: 0;
}
.nh-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nh-card-indicators {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
}
.nh-card-indicators .nh-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0.5;
  transition: opacity 0.3s, transform 0.3s;
}
.nh-card-indicators .nh-indicator.active {
  opacity: 1;
  transform: scale(1.2);
}
