/* ============================================================
   RecoNovaX Solutions — Main Stylesheet
   Theme: Solar Energy (Yellow + Green + Deep Blue)
   ============================================================ */

/* ====== CSS CUSTOM PROPERTIES ====== */
:root {
  --primary:        #FDB813;
  --primary-dark:   #DC9E00;
  --primary-light:  #FFE07A;
  --secondary:      #2E7D32;
  --secondary-lt:   #43A047;
  --accent:         #4FC3F7;
  --bg:             #F9FAF7;
  --text:           #0B3D2E;
  --text-muted:     #527a68;
  --white:          #FFFFFF;
  --dark:           #071c14;

  --grad-hero:    linear-gradient(135deg, rgba(7,28,20,0.88) 0%, rgba(46,125,50,0.55) 100%);
  --grad-primary: linear-gradient(135deg, #FDB813 0%, #F57F17 100%);
  --grad-green:   linear-gradient(135deg, #1B5E20 0%, #2E7D32 60%, #388E3C 100%);
  --grad-dark:    linear-gradient(135deg, #071c14 0%, #0d3322 100%);

  --shadow-xs: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-sm: 0 2px 16px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 28px rgba(0,0,0,0.13);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.18);
  --shadow-xl: 0 16px 64px rgba(0,0,0,0.22);

  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-2xl:  48px;
  --r-full: 9999px;

  --section-py: 100px;
  --t-fast: 0.15s ease;
  --t-base: 0.3s ease;
  --t-slow: 0.6s cubic-bezier(0.4,0,0.2,1);
}

/* ====== RESET ====== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ====== TYPOGRAPHY ====== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }
p  { font-size: 1rem; color: var(--text-muted); }
.lead { font-size: 1.1rem; line-height: 1.8; }

/* ====== LAYOUT ====== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.section    { padding: var(--section-py) 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 130px 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-6 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

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

.text-center    { text-align: center; }
.text-white     { color: var(--white) !important; }
.text-primary   { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }

/* ====== SECTION LABELS ====== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--primary);
  flex-shrink: 0;
}
.section-label.light         { color: var(--primary-light); }
.section-label.light::before { background: var(--primary); }

.section-title  { margin-bottom: 18px; }
.section-desc   { max-width: 620px; font-size: 1.05rem; line-height: 1.85; }
.section-header { margin-bottom: 64px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-label { justify-content: center; }
.section-header.centered .section-desc  { margin: 0 auto; }

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 34px;
  border-radius: var(--r-full);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: var(--t-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: var(--t-fast);
}
.btn:hover::before { opacity: 1; }

.btn-primary {
  background: var(--grad-primary);
  color: var(--dark);
  box-shadow: 0 4px 24px rgba(253,184,19,0.45);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(253,184,19,0.55);
}
.btn-secondary {
  background: var(--grad-green);
  color: var(--white);
  box-shadow: 0 4px 24px rgba(46,125,50,0.35);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(46,125,50,0.45);
}
.btn-outline {
  border: 2px solid rgba(255,255,255,0.7);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn-outline-dark {
  border: 2px solid var(--text);
  color: var(--text);
  background: transparent;
}
.btn-outline-dark:hover {
  background: var(--text);
  color: var(--white);
}
.btn-lg  { padding: 18px 48px; font-size: 0.95rem; }
.btn-sm  { padding: 10px 22px; font-size: 0.8rem; }
.btn-icon { padding: 14px 28px; }
.btn i   { font-size: 0.95em; }

/* ====== BADGE ====== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--r-full);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.badge-primary   { background: rgba(253,184,19,0.15); color: #8a5d00; }
.badge-secondary { background: rgba(46,125,50,0.15);  color: var(--secondary); }
.badge-accent    { background: rgba(79,195,247,0.15);  color: #0078a8; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.header.scrolled {
  background: rgba(7, 28, 20, 0.97);
  backdrop-filter: blur(16px);
  padding: 13px 0;
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon {
  width: 46px;
  height: 46px;
  background: var(--grad-primary);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text .brand {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.logo-text .brand span { color: var(--primary); }
.logo-text .tagline {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 2px;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  font-family: 'Poppins', sans-serif;
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: var(--t-fast);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: rgba(253,184,19,0.1);
}

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link i {
  font-size: 0.6rem;
  margin-left: 2px;
  transition: transform 0.2s ease;
}
.nav-dropdown:hover > .nav-link i { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #0d2a1e;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  padding: 10px;
  min-width: 270px;
  box-shadow: var(--shadow-xl);
  z-index: 200;
}
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: #0d2a1e;
  border-left: 1px solid rgba(255,255,255,0.07);
  border-top: 1px solid rgba(255,255,255,0.07);
  rotate: 45deg;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--r-sm);
  font-size: 0.83rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  transition: var(--t-fast);
}
.nav-dropdown-item:hover { background: rgba(253,184,19,0.09); color: var(--primary); }
.nav-dropdown-item .di {
  width: 32px;
  height: 32px;
  border-radius: var(--r-xs);
  background: rgba(253,184,19,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.nav-cta { margin-left: 10px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.08);
  padding: 0 10px;
  cursor: pointer;
  transition: var(--t-fast);
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--t-base);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
}

.hero-slides { position: absolute; inset: 0; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  pointer-events: all;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 8s ease;
}
.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7, 28, 20, 0.85) 0%,
    rgba(11, 61, 46, 0.65) 45%,
    rgba(46, 125, 50, 0.40) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 800px;
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.9s ease 0.5s, transform 0.9s ease 0.5s;
}
.hero-slide.active .hero-text {
  opacity: 1;
  transform: translateY(0);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--primary);
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 5.5vw, 4.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -1px;
}
.hero-title span { color: var(--primary); }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  max-width: 580px;
  margin-bottom: 38px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* Arrows */
.hero-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 28px;
  z-index: 10;
  pointer-events: none;
}
.hero-arrow {
  width: 54px;
  height: 54px;
  background: rgba(255,255,255,0.11);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--t-base);
  pointer-events: all;
}
.hero-arrow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--dark);
  transform: scale(1.08);
}

/* Dots */
.hero-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.38);
  cursor: pointer;
  transition: var(--t-base);
  border: none;
}
.hero-dot.active {
  width: 36px;
  background: var(--primary);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 44px;
  right: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
}
.hero-scroll span {
  font-size: 0.66rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, var(--primary), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.3; transform: scaleY(0.7); }
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--dark); }
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.stat-item {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.05);
  transition: var(--t-base);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover      { background: rgba(253,184,19,0.05); }
.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ============================================================
   SERVICE CARDS (Homepage)
   ============================================================ */
.services-section { background: var(--bg); }
.service-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(46,125,50,0.07);
  display: flex;
  flex-direction: column;
  transition: var(--t-base);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(253,184,19,0.28);
}
.service-card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}
.service-card:hover .service-card-image img { transform: scale(1.09); }
.service-card-icon {
  position: absolute;
  bottom: -22px;
  left: 22px;
  width: 50px;
  height: 50px;
  background: var(--grad-primary);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--dark);
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.service-card-body {
  padding: 40px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.service-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 22px;
}
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--secondary);
  letter-spacing: 0.2px;
  transition: var(--t-fast);
  font-family: 'Poppins', sans-serif;
}
.service-card-link:hover { gap: 12px; color: var(--secondary-lt); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background: var(--white); }
.feature-list { display: flex; flex-direction: column; gap: 18px; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px;
  border-radius: var(--r-md);
  background: var(--bg);
  border: 1px solid transparent;
  transition: var(--t-base);
}
.feature-item:hover {
  border-color: rgba(253,184,19,0.3);
  background: rgba(253,184,19,0.03);
}
.feature-icon {
  width: 50px;
  height: 50px;
  background: var(--grad-primary);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--dark);
  flex-shrink: 0;
}
.feature-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.feature-content p { font-size: 0.87rem; line-height: 1.65; }

.why-visual { position: relative; }
.why-img-main {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: var(--r-2xl);
}
.why-img-badge {
  position: absolute;
  bottom: 36px;
  left: -28px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 230px;
}
.why-img-badge .badge-icon {
  width: 52px;
  height: 52px;
  background: rgba(253,184,19,0.12);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary-dark);
  flex-shrink: 0;
}
.why-img-badge .badge-info h5 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  margin-bottom: 2px;
}
.why-img-badge .badge-info p { font-size: 0.78rem; }

/* ============================================================
   IMPACT SECTION
   ============================================================ */
.impact-section {
  background: var(--grad-green);
  position: relative;
  overflow: hidden;
}
.impact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(253,184,19,0.08) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(79,195,247,0.06) 0%, transparent 50%);
}
.impact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.impact-text .section-label         { color: var(--primary); }
.impact-text .section-label::before { background: var(--primary); }
.impact-text .section-title         { color: var(--white); }
.impact-text p   { color: rgba(255,255,255,0.78); font-size: 1.05rem; margin-bottom: 24px; }
.impact-img {
  border-radius: var(--r-2xl);
  overflow: hidden;
  height: 500px;
  box-shadow: var(--shadow-xl);
}
.impact-img img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  background: var(--grad-primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 280px;
  height: 280px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.cta-text h2 { color: var(--dark); font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 10px; }
.cta-text p  { color: rgba(7,28,20,0.7); font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; flex-shrink: 0; }

/* ============================================================
   VALUE CARDS
   ============================================================ */
.value-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  border: 1px solid rgba(46,125,50,0.09);
  box-shadow: var(--shadow-xs);
  transition: var(--t-base);
}
.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.value-icon {
  width: 60px;
  height: 60px;
  background: var(--grad-primary);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 22px;
}
.value-card h4 { font-size: 1.05rem; margin-bottom: 12px; color: var(--text); }
.value-card p  { font-size: 0.875rem; line-height: 1.75; }

/* ============================================================
   PAGE HERO (Internal pages)
   ============================================================ */
.page-hero {
  padding: 150px 0 88px;
  position: relative;
  overflow: hidden;
  background: var(--grad-dark);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(7, 28, 20, 0.92) 0%,
    rgba(11, 61, 46, 0.78) 60%,
    rgba(46, 125, 50, 0.55) 100%
  );
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1         { color: var(--white); margin-bottom: 18px; }
.page-hero .lead      { color: rgba(255,255,255,0.78); max-width: 600px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  font-size: 0.84rem;
}
.breadcrumb a         { color: rgba(255,255,255,0.55); transition: var(--t-fast); }
.breadcrumb a:hover   { color: var(--primary); }
.breadcrumb .sep      { color: rgba(255,255,255,0.25); }
.breadcrumb .current  { color: var(--primary); font-weight: 600; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-img-stack  { position: relative; min-height: 540px; }
.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 82%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--r-2xl);
}
.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 54%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--r-lg);
  border: 6px solid var(--bg);
  box-shadow: var(--shadow-xl);
}
.about-img-blob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 70%;
  aspect-ratio: 1;
  background: rgba(253,184,19,0.06);
  border-radius: 60% 40% 50% 50% / 50% 40% 60% 50%;
  z-index: -1;
}
.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.vm-card {
  padding: 28px;
  border-radius: var(--r-lg);
  border: 2px solid;
}
.vm-card.vision  { border-color: var(--primary);   background: rgba(253,184,19,0.04); }
.vm-card.mission { border-color: var(--secondary); background: rgba(46,125,50,0.04); }
.vm-card small {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.vm-card.vision  small { color: var(--primary-dark); }
.vm-card.mission small { color: var(--secondary); }
.vm-card p { font-size: 0.88rem; line-height: 1.7; }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-detail {
  padding: 80px 0;
  border-bottom: 1px solid rgba(46,125,50,0.07);
}
.service-detail:last-child { border-bottom: none; }
.service-detail:nth-child(even) { background: var(--white); }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.service-detail-img {
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 440px;
  box-shadow: var(--shadow-md);
}
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-icon {
  width: 64px;
  height: 64px;
  background: var(--grad-primary);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 24px;
}
.service-feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.service-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.service-feature-list li i {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 0.85rem;
}

/* ============================================================
   LEADERSHIP PAGE
   ============================================================ */
.leader-feature-card {
  background: var(--white);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  max-width: 860px;
  margin: 0 auto;
}
.leader-card-visual {
  background: var(--grad-green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 32px;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.leader-card-visual::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.leader-card-visual::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(253,184,19,0.1);
}
.leader-avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 4px solid var(--primary);
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: var(--white);
  z-index: 1;
}
.leader-card-visual .leader-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  text-align: center;
  z-index: 1;
}
.leader-card-visual .leader-role {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  z-index: 1;
}
.leader-card-body { padding: 40px; }
.leader-bio { font-size: 0.93rem; line-height: 1.8; margin-bottom: 28px; }
.leader-tags { display: flex; flex-wrap: wrap; gap: 10px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.placeholder-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 24px;
  text-align: center;
  border: 2px dashed rgba(46,125,50,0.18);
  transition: var(--t-base);
}
.placeholder-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.placeholder-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(253,184,19,0.1);
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  color: var(--primary-dark);
}
.placeholder-card h4  { font-size: 0.95rem; margin-bottom: 6px; }
.placeholder-card p   { font-size: 0.82rem; }
.coming-soon {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 10px;
  border: 1px dashed rgba(46,125,50,0.3);
  padding: 3px 10px;
  border-radius: var(--r-full);
}

/* ============================================================
   INVESTORS PAGE
   ============================================================ */
.invest-highlight {
  background: var(--grad-green);
  border-radius: var(--r-xl);
  padding: 56px;
  position: relative;
  overflow: hidden;
}
.invest-highlight::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
}
.invest-highlight h2 { color: var(--white); margin-bottom: 18px; }
.invest-highlight p  { color: rgba(255,255,255,0.8); font-size: 1.05rem; line-height: 1.8; }
.invest-highlight p + p { margin-top: 14px; }

.invest-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(46,125,50,0.08);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: var(--t-base);
}
.invest-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(253,184,19,0.3);
}
.invest-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.invest-card-icon.green  { background: rgba(46,125,50,0.1);  color: var(--secondary); }
.invest-card-icon.yellow { background: rgba(253,184,19,0.1); color: #b87600; }
.invest-card-icon.blue   { background: rgba(79,195,247,0.12); color: #0087ba; }
.invest-card h4 { font-size: 0.95rem; margin-bottom: 6px; }
.invest-card p  { font-size: 0.875rem; line-height: 1.65; }

.commitment-box {
  background: rgba(253,184,19,0.06);
  border: 2px solid rgba(253,184,19,0.25);
  border-radius: var(--r-xl);
  padding: 48px;
  margin-top: 64px;
  text-align: center;
}
.commitment-box h3 { margin-bottom: 16px; }
.commitment-box p  { max-width: 680px; margin: 0 auto; font-size: 1.02rem; line-height: 1.85; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}
.contact-info-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 44px;
  box-shadow: var(--shadow-sm);
}
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(46,125,50,0.07);
}
.contact-method:last-child { border-bottom: none; padding-bottom: 0; }
.contact-method:first-child { padding-top: 0; }
.contact-method-icon {
  width: 50px;
  height: 50px;
  background: var(--grad-primary);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--dark);
  flex-shrink: 0;
}
.contact-method h5 {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.contact-method a, .contact-method p { font-size: 0.95rem; color: var(--text); font-weight: 500; }
.contact-method a { transition: var(--t-fast); }
.contact-method a:hover { color: var(--secondary); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}
.contact-form-card h3 { margin-bottom: 8px; }
.contact-form-card > p { margin-bottom: 32px; font-size: 0.92rem; }

.form-group   { margin-bottom: 22px; }
.form-label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}
.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(46,125,50,0.13);
  border-radius: var(--r-sm);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  transition: var(--t-fast);
  outline: none;
  appearance: none;
}
.form-control:focus { border-color: var(--secondary); background: var(--white); }
.form-control::placeholder { color: #9ab0a5; }
textarea.form-control { resize: vertical; min-height: 150px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
}
.footer-top {
  padding: 80px 0 64px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 300px;
}
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: var(--t-fast);
}
.social-link:hover { background: var(--primary); color: var(--dark); }

.footer-heading {
  font-family: 'Poppins', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 22px;
}
.footer-links       { display: flex; flex-direction: column; gap: 11px; }
.footer-link {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
  transition: var(--t-fast);
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-link:hover  { color: var(--primary); padding-left: 4px; }
.footer-link i      { font-size: 0.62rem; color: var(--secondary); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.footer-contact-item i  { color: var(--primary); margin-top: 3px; flex-shrink: 0; font-size: 0.82rem; }
.footer-contact-item a  { color: inherit; transition: var(--t-fast); }
.footer-contact-item a:hover { color: var(--primary); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom p               { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links           { display: flex; gap: 24px; }
.footer-bottom-links a         { font-size: 0.8rem; color: rgba(255,255,255,0.3); transition: var(--t-fast); }
.footer-bottom-links a:hover   { color: var(--primary); }
.footer-bottom p span          { color: var(--primary); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* ============================================================
   MISC COMPONENTS
   ============================================================ */
.divider-wave {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.divider-wave svg { display: block; width: 100%; }

.green-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--secondary-lt);
  border-radius: 50%;
  animation: pulse-green 2s ease infinite;
}
@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(67,160,71,0.5); }
  50%       { box-shadow: 0 0 0 8px rgba(67,160,71,0); }
}

.solar-icon-bg {
  background: rgba(253,184,19,0.1);
  border-radius: var(--r-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
}

.highlight-box {
  background: rgba(253,184,19,0.07);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 18px 22px;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .leader-feature-card { grid-template-columns: 1fr; }
  .leader-card-visual { padding: 44px 32px 32px; }
  .about-intro { grid-template-columns: 1fr; }
  .about-img-stack { display: none; }
}

@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stats-bar-inner .stat-item:nth-child(2) { border-right: none; }
  .stats-bar-inner .stat-item:nth-child(4) { border-right: none; }
  .impact-grid  { grid-template-columns: 1fr; gap: 48px; }
  .invest-highlight { padding: 40px; }
  .contact-layout { grid-template-columns: 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }

  .nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(7,28,20,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 4px;
    z-index: 999;
    overflow-y: auto;
  }
  .nav.open         { display: flex; }
  .nav.open .nav-link { font-size: 1.05rem; padding: 14px 16px; width: 100%; }
  .nav.open .nav-cta  { margin-top: 16px; width: 100%; }
  .nav.open .nav-cta .btn { width: 100%; justify-content: center; }
  .nav.open .nav-dropdown-menu { position: static; transform: none; background: rgba(255,255,255,0.04); margin-top: 4px; }
  .nav.open .nav-dropdown-menu::before { display: none; }
  .nav.open .nav-dropdown:hover .nav-dropdown-menu { display: none; }
  .nav.open .nav-dropdown.open-m .nav-dropdown-menu { display: block; }

  .nav-toggle { display: flex; z-index: 1001; }

  .hero-arrows  { display: none; }
  .hero-scroll  { display: none; }

  .grid-2       { grid-template-columns: 1fr; gap: 32px; }
  .grid-3       { grid-template-columns: 1fr; }
  .grid-6       { grid-template-columns: 1fr; }
  .team-grid    { grid-template-columns: 1fr; }
  .vision-mission { grid-template-columns: 1fr; }
  .service-detail-img { height: 280px; }
  .why-img-badge { display: none; }

  .cta-inner    { flex-direction: column; text-align: center; }
  .cta-actions  { justify-content: center; flex-wrap: wrap; }

  .footer-grid  { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-row     { grid-template-columns: 1fr; }

  .contact-form-card,
  .contact-info-card { padding: 32px 24px; }

  .invest-highlight { padding: 32px; }
  .commitment-box   { padding: 32px; }

  .leader-feature-card { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title   { font-size: 2.1rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-number      { font-size: 1.8rem; }

  .grid-4 { grid-template-columns: 1fr; }
  .cta-actions .btn { width: 100%; justify-content: center; }

  h2 { font-size: 1.6rem; }
}
