/* ==========================================================================
   STREE POWER HOUSE — Official Stylesheet
   "Stories That Speak. Impact That Stays."
   Color Palette derived from Brand Logo:
   - Primary Green:    #4B8F00
   - Dark Green:       #164A16
   - Bright Green:     #7CBF00
   - Accent Red:       #C6281A
   - White:            #FFFFFF
   - Soft Cream:       #F7F8F2
   - Dark Background:  #07150A
   - Card Surface:     rgba(16, 42, 20, 0.65)
   ========================================================================== */

:root {
  --primary-green: #4b8f00;
  --dark-green: #164a16;
  --bright-green: #7cbf00;
  --accent-red: #c6281a;
  --white: #ffffff;
  --soft-cream: #f7f8f2;
  --dark-bg: #07150a;
  --dark-bg-elevated: #0d2212;
  
  /* Frosted Glass Design Theme Variables */
  --surface-glass: rgba(22, 74, 22, 0.2);
  --surface-glass-hover: rgba(22, 74, 22, 0.35);
  --surface-glass-active: rgba(22, 74, 22, 0.5);
  --border-glass: rgba(124, 191, 0, 0.2);
  --border-glass-bright: rgba(124, 191, 0, 0.38);
  --text-primary: #ffffff;
  --text-secondary: rgba(247, 248, 242, 0.75);
  --text-muted: rgba(247, 248, 242, 0.5);
  
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-cinematic: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  
  --accent-glow: 0 0 20px rgba(75, 143, 0, 0.2);
  --glow-primary: 0 0 25px rgba(124, 191, 0, 0.3);
  --glow-strong: 0 0 40px rgba(124, 191, 0, 0.5);
  --radius-card: 12px;
  --radius-btn: 9999px;
  --radius-sm: 8px;
}

/* ==========================================================================
   FROSTED GLASS UTILITIES & CORE PATTERNS
   ========================================================================== */
.glass-card {
  background: rgba(22, 74, 22, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(124, 191, 0, 0.2);
  border-radius: 12px;
}

.accent-glow {
  box-shadow: 0 0 20px rgba(75, 143, 0, 0.2);
}

.text-gradient {
  background: linear-gradient(135deg, #7cbf00 0%, #4b8f00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.red-dot {
  color: #c6281a;
}

.media-placeholder {
  background: linear-gradient(45deg, #0d2613, #164a16);
  position: relative;
  overflow: hidden;
}

.media-placeholder::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,0.1) 0px, rgba(0,0,0,0.1) 1px, transparent 1px, transparent 2px);
  pointer-events: none;
}

/* Ambient Floating Background Orbs */
.ambient-orb {
  position: absolute;
  border-radius: 9999px;
  pointer-events: none;
  z-index: 1;
}

.ambient-orb-top-left {
  top: -80px;
  left: -80px;
  width: 384px;
  height: 384px;
  background: #4b8f00;
  opacity: 0.1;
  filter: blur(100px);
}

.ambient-orb-mid-right {
  top: 50%;
  right: -80px;
  width: 320px;
  height: 320px;
  background: #c6281a;
  opacity: 0.05;
  filter: blur(80px);
}

/* Base Reset & Typography */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--dark-bg);
  color: var(--text-primary);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--dark-bg);
}
::-webkit-scrollbar-thumb {
  background: var(--dark-green);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary-green);
}

/* Selection Highlight */
::selection {
  background: var(--primary-green);
  color: var(--white);
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 960px;
}

/* Section Common Styles */
.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--bright-green);
  margin-bottom: 12px;
}

.section-tag::before,
.section-tag::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--bright-green));
}
.section-tag::after {
  background: linear-gradient(90deg, var(--bright-green), transparent);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  font-style: italic;
  max-width: 640px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: 1px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--primary-green);
  color: var(--white);
  border: 1px solid var(--bright-green);
  box-shadow: 0 0 20px rgba(75, 143, 0, 0.25);
}

.btn-primary:hover {
  background: var(--bright-green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(124, 191, 0, 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(124, 191, 0, 0.4);
  transform: translateY(-2px);
  box-shadow: var(--accent-glow);
}

.btn-white {
  background: #ffffff;
  color: #07150a;
  border-radius: var(--radius-sm);
  font-weight: 800;
  border: 1px solid #ffffff;
}

.btn-white:hover {
  background: var(--bright-green);
  color: #ffffff;
  border-color: var(--bright-green);
  transform: translateY(-2px);
  box-shadow: var(--glow-primary);
}

.btn-outline-red {
  background: rgba(198, 40, 26, 0.15);
  color: #ff6b5e;
  border-color: rgba(198, 40, 26, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-outline-red:hover {
  background: var(--accent-red);
  color: var(--white);
  border-color: var(--accent-red);
  box-shadow: 0 0 20px rgba(198, 40, 26, 0.4);
}

.btn-sm {
  padding: 8px 18px;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 0.95rem;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-smooth);
  background: transparent;
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(7, 21, 10, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(124, 191, 0, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1002;
}

.nav-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(124, 191, 0, 0.45));
  transition: transform var(--transition-smooth), filter var(--transition-smooth);
}

.nav-brand:hover .nav-logo-img {
  transform: scale(1.12) rotate(4deg);
  filter: drop-shadow(0 0 16px rgba(124, 191, 0, 0.8));
}

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

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--white);
  line-height: 1.1;
}

.brand-tagline-mini {
  font-size: 0.6875rem;
  color: var(--bright-green);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-green), var(--bright-green));
  transition: width var(--transition-fast);
  border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta-btn {
  display: inline-flex;
}

/* Mobile Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
  padding: 0;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background: var(--bright-green);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background: var(--bright-green);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 140px 0 80px;
  background: radial-gradient(circle at 50% 30%, #164a16 0%, #07150a 65%, #030a04 100%);
  overflow: hidden;
}

/* Canvas background for animated light particles */
#heroCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Atmospheric Glow & Cinematic Vignette */
.hero-glow-layer {
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 191, 0, 0.18) 0%, rgba(75, 143, 0, 0.08) 45%, transparent 70%);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
  animation: pulseGlow 8s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.95; }
}

.hero-vignette {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.85);
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-logo-wrapper {
  margin-bottom: 24px;
  display: inline-block;
  position: relative;
}

.hero-logo-halo {
  position: absolute;
  inset: -25px;
  background: radial-gradient(circle, rgba(124, 191, 0, 0.45) 0%, rgba(22, 74, 22, 0.2) 50%, transparent 75%);
  border-radius: 50%;
  filter: blur(22px);
  animation: haloBreath 4s ease-in-out infinite alternate;
}

@keyframes haloBreath {
  0% { opacity: 0.5; transform: scale(0.92); }
  100% { opacity: 1; transform: scale(1.15); }
}

.hero-logo {
  width: 160px;
  height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 0 35px rgba(124, 191, 0, 0.6)) drop-shadow(0 15px 30px rgba(0, 0, 0, 0.8));
  position: relative;
  z-index: 2;
  transition: transform var(--transition-smooth), filter var(--transition-smooth);
}

.hero-logo:hover {
  transform: scale(1.08) translateY(-4px);
  filter: drop-shadow(0 0 55px rgba(124, 191, 0, 0.85)) drop-shadow(0 20px 35px rgba(0, 0, 0, 0.9));
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(22, 74, 22, 0.65);
  border: 1px solid rgba(124, 191, 0, 0.3);
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 0.8125rem;
  color: var(--soft-cream);
  font-weight: 500;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--bright-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--bright-green);
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.5; }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1.08;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.hero-tagline {
  font-size: clamp(1.25rem, 2.8vw, 2rem);
  font-weight: 600;
  color: var(--soft-cream);
  line-height: 1.4;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.hero-tagline .highlight-green {
  color: var(--bright-green);
  text-shadow: 0 0 20px rgba(124, 191, 0, 0.4);
  font-weight: 700;
}

.hero-supporting {
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  color: var(--text-secondary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 36px;
}

.hero-supporting span.bullet {
  color: var(--bright-green);
  margin: 0 8px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.scroll-indicator {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  transition: color var(--transition-fast);
}

.scroll-indicator:hover {
  color: var(--bright-green);
}

.scroll-arrow {
  animation: bounceDown 2s infinite;
  display: inline-block;
  color: var(--bright-green);
}

@keyframes bounceDown {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(8px); }
  60% { transform: translateY(4px); }
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
  background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg-elevated) 100%);
  border-top: 1px solid rgba(124, 191, 0, 0.15);
  border-bottom: 1px solid rgba(124, 191, 0, 0.15);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 56px;
  align-items: center;
}

.about-left {
  position: relative;
}

.editorial-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1px rgba(124, 191, 0, 0.35);
  transition: all var(--transition-smooth);
}

.editorial-headline .filled-word {
  color: var(--white);
  -webkit-text-stroke: 0;
  display: block;
}

.editorial-headline .green-word {
  background: linear-gradient(135deg, #7cbf00 0%, #4b8f00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0;
  display: block;
  text-shadow: 0 0 25px rgba(124, 191, 0, 0.4);
}

.about-media-frame {
  margin-top: 32px;
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border-glass-bright);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  background: linear-gradient(45deg, #0d2613, #164a16);
}

.about-media-frame::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,0.12) 0px, rgba(0,0,0,0.12) 1px, transparent 1px, transparent 2px);
  pointer-events: none;
}

.about-media-frame img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform var(--transition-cinematic);
}

.about-media-frame:hover img {
  transform: scale(1.05);
}

.about-media-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(22, 74, 22, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(124, 191, 0, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-btn);
  font-size: 0.75rem;
  color: var(--bright-green);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-lead {
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.5;
}

.about-body {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(124, 191, 0, 0.15);
}

.stat-item {
  background: rgba(22, 74, 22, 0.2);
  border: 1px solid rgba(124, 191, 0, 0.2);
  border-radius: 12px;
  padding: 22px 16px;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-smooth);
}

.stat-item:hover {
  border-color: var(--bright-green);
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(75, 143, 0, 0.25);
  background: rgba(22, 74, 22, 0.35);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, #7cbf00 0%, #4b8f00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.3;
}

/* ==========================================================================
   WHAT WE DO (SERVICES CARDS)
   ========================================================================== */
.what-we-do-section {
  background: var(--dark-bg);
  position: relative;
}

.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.service-glass-card {
  background: rgba(22, 74, 22, 0.2);
  border: 1px solid rgba(124, 191, 0, 0.2);
  border-radius: 12px;
  padding: 36px 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.service-glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--bright-green), transparent);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.service-glass-card:hover {
  transform: translateY(-6px);
  border-color: var(--bright-green);
  background: rgba(22, 74, 22, 0.35);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 20px rgba(75, 143, 0, 0.25);
}

.service-glass-card:hover::before {
  opacity: 1;
}

.card-top-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.card-number {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--bright-green);
  background: rgba(124, 191, 0, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(124, 191, 0, 0.2);
}

.card-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(22, 74, 22, 0.5);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-glass-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bright-green);
  transition: all var(--transition-smooth);
}

.service-glass-card:hover .card-icon-box {
  background: var(--primary-green);
  color: var(--white);
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 0 20px rgba(75, 143, 0, 0.4);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1.3;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.card-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.card-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--bright-green);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-footer-link svg {
  transition: transform var(--transition-fast);
}

.service-glass-card:hover .card-footer-link svg {
  transform: translateX(4px);
}

/* ==========================================================================
   YOUTUBE CHANNELS SECTION
   ========================================================================== */
.youtube-section {
  background: radial-gradient(ellipse at center, rgba(22, 74, 22, 0.25) 0%, var(--dark-bg) 70%);
  border-top: 1px solid rgba(124, 191, 0, 0.15);
  border-bottom: 1px solid rgba(124, 191, 0, 0.15);
  position: relative;
}

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

.youtube-channel-card {
  background: rgba(22, 74, 22, 0.2);
  border: 1px solid rgba(124, 191, 0, 0.2);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-smooth);
}

.youtube-channel-card.spotlight-talking-parrots {
  border-left: 4px solid var(--accent-red);
}

.youtube-channel-card.spotlight-sabha {
  border-left: 4px solid var(--bright-green);
}

.youtube-channel-card:hover {
  transform: translateY(-6px);
  border-color: var(--bright-green);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(75, 143, 0, 0.35);
  background: rgba(22, 74, 22, 0.3);
}

.yt-thumbnail-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #000;
}

.yt-thumbnail-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,0.1) 0px, rgba(0,0,0,0.1) 1px, transparent 1px, transparent 2px);
  pointer-events: none;
  z-index: 1;
}

.yt-thumbnail-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-cinematic), filter var(--transition-smooth);
}

.youtube-channel-card:hover .yt-thumbnail-wrapper img {
  transform: scale(1.08);
  filter: brightness(0.85);
}

.yt-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  transition: background var(--transition-smooth);
  z-index: 2;
}

.youtube-channel-card:hover .yt-play-overlay {
  background: rgba(0, 0, 0, 0.15);
}

.yt-play-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent-red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(198, 40, 26, 0.6);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.youtube-channel-card:hover .yt-play-btn {
  transform: scale(1.15);
  box-shadow: 0 0 35px rgba(198, 40, 26, 0.9);
}

.yt-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--accent-red);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-btn);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(198, 40, 26, 0.4);
}

.yt-content {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.yt-channel-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.yt-channel-tagline {
  font-size: 1rem;
  color: var(--bright-green);
  font-style: italic;
  font-weight: 600;
  margin-bottom: 16px;
}

.yt-channel-desc {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.yt-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.yt-tag {
  background: rgba(22, 74, 22, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(124, 191, 0, 0.2);
  color: var(--soft-cream);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
}

.yt-host-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.yt-host-info strong {
  color: var(--white);
}

.yt-action-wrapper {
  margin-top: auto;
}

/* ==========================================================================
   DIGITAL PRESENCE (SOCIAL PLATFORMS)
   ========================================================================== */
.digital-presence-section {
  padding: 60px 0;
  background: var(--dark-bg-elevated);
  border-bottom: 1px solid rgba(124, 191, 0, 0.15);
  position: relative;
}

.presence-header {
  text-align: center;
  margin-bottom: 36px;
}

.presence-title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}

.presence-subtitle {
  color: var(--bright-green);
  font-size: 0.9375rem;
  font-weight: 600;
}

.social-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.social-card {
  background: rgba(22, 74, 22, 0.2);
  border: 1px solid rgba(124, 191, 0, 0.2);
  border-radius: 12px;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-smooth);
}

.social-card:hover {
  transform: translateY(-4px);
  border-color: var(--bright-green);
  box-shadow: 0 0 20px rgba(75, 143, 0, 0.25);
  background: rgba(22, 74, 22, 0.35);
}

.social-card-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--white);
  transition: transform var(--transition-fast);
}

.social-card:hover .social-icon-box {
  transform: scale(1.1);
}

.social-icon-yt {
  background: #c6281a;
  box-shadow: 0 4px 15px rgba(198, 40, 26, 0.4);
}
.social-icon-ig {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: 0 4px 15px rgba(220, 39, 67, 0.4);
}
.social-icon-fb {
  background: #1877f2;
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
}

.social-card-name {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
}

.social-card-handle {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.social-action-btn {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--bright-green);
  display: flex;
  align-items: center;
  gap: 4px;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   MEET THE FOUNDER SECTION
   ========================================================================== */
.founder-section {
  background: var(--dark-bg);
  position: relative;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: center;
}

.founder-image-column {
  position: relative;
}

.founder-image-frame {
  position: relative;
  border-radius: 12px;
  padding: 8px;
  background: linear-gradient(135deg, var(--bright-green), var(--dark-green), rgba(198, 40, 26, 0.6));
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 20px rgba(75, 143, 0, 0.25);
}

.founder-image-inner {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(45deg, #0d2613, #164a16);
}

.founder-image-inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,0.1) 0px, rgba(0,0,0,0.1) 1px, transparent 1px, transparent 2px);
  pointer-events: none;
  z-index: 1;
}

.founder-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--transition-cinematic);
}

.founder-image-frame:hover .founder-img {
  transform: scale(1.04);
}

.founder-media-stamp {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(7, 21, 10, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass-bright);
  padding: 12px 18px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

.founder-stamp-text {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.founder-stamp-years {
  font-size: 0.75rem;
  color: var(--bright-green);
  font-weight: 700;
}

.founder-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.founder-name {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.founder-role {
  font-size: 1rem;
  color: var(--bright-green);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.founder-bio {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.experience-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(22, 74, 22, 0.2);
  border: 1px solid rgba(124, 191, 0, 0.2);
  padding: 18px 20px;
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.experience-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9375rem;
  color: var(--white);
}

.experience-item svg {
  color: var(--bright-green);
  flex-shrink: 0;
}

.founder-quote-box {
  border-left: 3px solid var(--bright-green);
  padding: 14px 20px;
  background: rgba(124, 191, 0, 0.08);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 8px;
  backdrop-filter: blur(8px);
}

.founder-quote {
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--soft-cream);
  line-height: 1.5;
}

/* ==========================================================================
   OUR SERVICES GRID
   ========================================================================== */
.services-list-section {
  background: linear-gradient(180deg, var(--dark-bg-elevated) 0%, var(--dark-bg) 100%);
  border-top: 1px solid rgba(124, 191, 0, 0.15);
  border-bottom: 1px solid rgba(124, 191, 0, 0.15);
  position: relative;
}

.services-grid-10 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.service-item-pill {
  background: rgba(22, 74, 22, 0.2);
  border: 1px solid rgba(124, 191, 0, 0.2);
  border-radius: 12px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-item-pill:hover {
  transform: translateY(-4px);
  border-color: var(--bright-green);
  background: rgba(22, 74, 22, 0.35);
  box-shadow: 0 0 20px rgba(75, 143, 0, 0.25);
}

.service-pill-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(22, 74, 22, 0.5);
  border: 1px solid var(--border-glass-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bright-green);
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.service-item-pill:hover .service-pill-icon {
  transform: rotate(10deg) scale(1.1);
  background: var(--primary-green);
  color: var(--white);
}

.service-pill-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.service-pill-subtitle {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ==========================================================================
   OUR WORK / PORTFOLIO SECTION
   ========================================================================== */
.portfolio-section {
  background: var(--dark-bg);
  position: relative;
}

.portfolio-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  background: rgba(22, 74, 22, 0.2);
  border: 1px solid rgba(124, 191, 0, 0.2);
  color: var(--text-secondary);
  padding: 8px 20px;
  border-radius: var(--radius-btn);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-green);
  color: var(--white);
  border-color: var(--bright-green);
  box-shadow: 0 0 20px rgba(75, 143, 0, 0.35);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.portfolio-card {
  background: rgba(22, 74, 22, 0.2);
  border: 1px solid rgba(124, 191, 0, 0.2);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: var(--bright-green);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 20px rgba(75, 143, 0, 0.25);
  background: rgba(22, 74, 22, 0.35);
}

.portfolio-thumb-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #000;
}

.portfolio-thumb-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,0.1) 0px, rgba(0,0,0,0.1) 1px, transparent 1px, transparent 2px);
  pointer-events: none;
  z-index: 1;
}

.portfolio-thumb-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-cinematic);
}

.portfolio-card:hover .portfolio-thumb-wrapper img {
  transform: scale(1.08);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7, 21, 10, 0.95) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.portfolio-play-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(124, 191, 0, 0.9);
  color: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition-smooth);
}

.portfolio-card:hover .portfolio-play-badge {
  opacity: 1;
  transform: scale(1);
}

.portfolio-details {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-grow: 1;
}

.portfolio-category {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--bright-green);
  text-transform: uppercase;
}

.portfolio-title {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
}

.portfolio-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.portfolio-btn {
  margin-top: auto;
  align-self: flex-start;
}

/* ==========================================================================
   WHY STREE POWER HOUSE SECTION
   ========================================================================== */
.why-us-section {
  background: radial-gradient(circle at 50% 50%, rgba(22, 74, 22, 0.25) 0%, var(--dark-bg) 70%);
  border-top: 1px solid rgba(124, 191, 0, 0.15);
  border-bottom: 1px solid rgba(124, 191, 0, 0.15);
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
}

.why-card {
  background: rgba(22, 74, 22, 0.2);
  border: 1px solid rgba(124, 191, 0, 0.2);
  border-radius: 12px;
  padding: 32px 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--bright-green);
  box-shadow: 0 0 20px rgba(75, 143, 0, 0.25);
  background: rgba(22, 74, 22, 0.35);
}

.why-icon-box {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(124, 191, 0, 0.12);
  border: 1px solid rgba(124, 191, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bright-green);
  transition: transform var(--transition-fast);
}

.why-card:hover .why-icon-box {
  transform: scale(1.1);
  background: var(--primary-green);
  color: var(--white);
}

.why-card-title {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.why-card-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   CALL TO ACTION (CTA)
   ========================================================================== */
.cta-banner-section {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(135deg, #07150a 0%, #164a16 50%, #07150a 100%);
  overflow: hidden;
  text-align: center;
}

.cta-light-sweep {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(124, 191, 0, 0.15) 0%, transparent 60%);
  animation: sweepRotate 15s linear infinite;
  pointer-events: none;
}

@keyframes sweepRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.cta-box {
  position: relative;
  z-index: 2;
  max-width: 840px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 1.25rem;
  color: var(--bright-green);
  font-weight: 600;
  font-style: italic;
  margin-bottom: 16px;
}

.cta-text {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 36px;
}

.cta-buttons-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
  background: var(--dark-bg);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
  align-items: flex-start;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-lead-text {
  font-size: 1.25rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.5;
}

.contact-sub-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

.contact-methods-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-method-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(22, 74, 22, 0.2);
  border: 1px solid rgba(124, 191, 0, 0.2);
  padding: 18px 20px;
  border-radius: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all var(--transition-smooth);
}

.contact-method-card:hover {
  border-color: var(--bright-green);
  transform: translateX(6px);
  background: rgba(22, 74, 22, 0.35);
  box-shadow: 0 0 20px rgba(75, 143, 0, 0.25);
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(124, 191, 0, 0.12);
  border: 1px solid rgba(124, 191, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bright-green);
  flex-shrink: 0;
}

.contact-method-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
  font-weight: 600;
}

.contact-method-val {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

/* Contact Form */
.contact-form-card {
  background: rgba(22, 74, 22, 0.2);
  border: 1px solid rgba(124, 191, 0, 0.25);
  border-radius: 12px;
  padding: 40px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), 0 0 20px rgba(75, 143, 0, 0.15);
  position: relative;
}

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

.form-group-full {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--soft-cream);
  letter-spacing: 0.5px;
}

.form-label span.req {
  color: var(--bright-green);
}

.form-control {
  width: 100%;
  background: rgba(7, 21, 10, 0.7);
  border: 1px solid rgba(124, 191, 0, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  color: var(--white);
  outline: none;
  backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--bright-green);
  box-shadow: 0 0 15px rgba(124, 191, 0, 0.25);
  background: rgba(13, 34, 18, 0.95);
}

.form-control::placeholder {
  color: rgba(247, 248, 242, 0.35);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237CBF00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

select.form-control option {
  background: #0d2212;
  color: #fff;
}

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

.form-status-msg {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-top: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  display: none;
  animation: fadeIn 0.3s ease;
}

.form-status-msg.success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(75, 143, 0, 0.2);
  border: 1px solid var(--bright-green);
  color: #9beb1c;
}

.form-status-msg.error {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(198, 40, 26, 0.2);
  border: 1px solid var(--accent-red);
  color: #ff8a80;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #030a04;
  border-top: 1px solid rgba(124, 191, 0, 0.15);
  padding: 70px 0 30px;
  color: var(--text-secondary);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 50px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(124, 191, 0, 0.4));
  transition: transform var(--transition-smooth);
}

.footer-brand-col:hover .footer-logo-img {
  transform: scale(1.1);
}

.footer-brand-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
}

.footer-tagline {
  font-size: 0.9375rem;
  color: var(--bright-green);
  font-style: italic;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-list a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  transition: color var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--bright-green);
  padding-left: 4px;
}

.footer-social-row {
  display: flex;
  gap: 12px;
}

.footer-social-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(22, 74, 22, 0.2);
  border: 1px solid rgba(124, 191, 0, 0.2);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition-fast);
}

.footer-social-icon:hover {
  background: var(--primary-green);
  border-color: var(--bright-green);
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(75, 143, 0, 0.4);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(124, 191, 0, 0.1);
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FLOATING ACTION BUTTONS & MOBILE BAR
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 990;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  transition: all var(--transition-smooth);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
}

.float-whatsapp {
  background: rgba(37, 211, 102, 0.2);
  border: 1px solid #25d366;
  color: #25d366;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.25);
}
.float-whatsapp:hover {
  transform: scale(1.12);
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.7);
}

.float-call {
  background: rgba(75, 143, 0, 0.2);
  border: 1px solid #7cbf00;
  color: #7cbf00;
  box-shadow: 0 0 20px rgba(75, 143, 0, 0.25);
}
.float-call:hover {
  transform: scale(1.12);
  background: var(--primary-green);
  color: #ffffff;
  box-shadow: var(--glow-strong);
}

.float-scrolltop {
  background: rgba(22, 74, 22, 0.3);
  border: 1px solid rgba(124, 191, 0, 0.3);
  color: var(--bright-green);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition-fast);
}

.float-scrolltop.visible {
  opacity: 0.6;
  pointer-events: auto;
}

.float-scrolltop:hover {
  opacity: 1;
  background: var(--bright-green);
  color: var(--dark-bg);
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(124, 191, 0, 0.4);
}

/* Mobile Fixed Bottom Action Bar */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(7, 21, 10, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(124, 191, 0, 0.25);
  padding: 10px 16px;
  z-index: 999;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.6);
}

.mobile-bottom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 10px;
}

.mobile-bar-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 8px;
  border-radius: var(--radius-btn);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  transition: all var(--transition-fast);
}

.mobile-bar-call {
  background: rgba(22, 74, 22, 0.8);
  border: 1px solid var(--border-glass-bright);
}

.mobile-bar-whatsapp {
  background: #25d366;
  color: #000;
  font-weight: 800;
}

.mobile-bar-enquire {
  background: linear-gradient(135deg, var(--primary-green), var(--bright-green));
}

/* ==========================================================================
   ANIMATIONS & SCROLL REVEAL (IntersectionObserver)
   ========================================================================== */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }
.delay-4 { transition-delay: 0.6s; }

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

/* ==========================================================================
   RESPONSIVE DESIGN (Desktop -> Tablet -> Mobile)
   ========================================================================== */
@media (max-width: 1024px) {
  .about-grid,
  .founder-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .youtube-grid {
    grid-template-columns: 1fr;
  }
  
  .founder-img {
    height: 380px;
  }
  
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 840px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 380px;
    height: 100vh;
    background: rgba(7, 21, 10, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    gap: 24px;
    transition: right var(--transition-smooth);
    border-left: 1px solid var(--border-glass-bright);
    z-index: 1001;
  }

  .nav-menu.open {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .nav-cta-btn {
    display: none;
  }

  .social-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 70px 0;
  }

  .hero-section {
    padding: 120px 0 60px;
  }

  .hero-logo {
    width: 110px;
    height: 110px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

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

  .form-group-full {
    grid-column: span 1;
  }

  .contact-form-card {
    padding: 24px 18px;
  }

  .floating-actions {
    display: none; /* Replaced by bottom bar on mobile */
  }

  .mobile-bottom-bar {
    display: block;
  }

  body {
    padding-bottom: 70px; /* Space for fixed bottom bar */
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* Accessibility: Prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
