/* ==========================================================================
   SA RENEW PRIVATE LIMITED - CORPORATE STYLING & DESIGN SYSTEM
   "ground to grid"
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Grand+Hotel&family=Pacifico&family=Poppins:wght@500;600;700;800&family=Montserrat:wght@600;700&family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand Palette derived from SA Renew Brand Identity */
  --primary-deep: #07231A;
  --primary-dark: #0B3528;
  --primary: #0F513C;
  --primary-medium: #147A5A;
  --primary-light: #10B981;
  --primary-glow: rgba(16, 185, 129, 0.35);
  
  --brand-gold: #E3A817;
  --brand-forest-green: #1B8343;
  --font-logo: 'Poppins', 'Montserrat', sans-serif;
  --font-motto: 'Grand Hotel', 'Pacifico', cursive;
  
  --gold-sun: #F5B800;
  --gold-warm: #FBBF24;
  --gold-glow: rgba(245, 184, 0, 0.4);
  
  --sky-dawn: #FF7E5F;
  --sky-dusk: #2B1055;
  
  --dark-bg: #091512;
  --dark-surface: #0E221D;
  --dark-card: #132E27;
  --dark-border: rgba(16, 185, 129, 0.18);
  
  --light-bg: #F8FAFC;
  --light-surface: #FFFFFF;
  --light-card: #FFFFFF;
  --light-border: #E2E8F0;
  
  --text-main: #0F172A;
  --text-muted: #64748B;
  --text-light: #F8FAFC;
  --text-dim: #94A3B8;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 45px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 35px var(--primary-glow);
  --shadow-gold: 0 0 30px var(--gold-glow);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Global Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--light-bg);
  color: var(--text-main);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition-fast);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Utilities */
.section-padding {
  padding: 100px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 65px 0;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-solar {
  background: rgba(245, 184, 0, 0.15);
  color: #B45309;
  border: 1px solid rgba(245, 184, 0, 0.35);
}

.badge-green {
  background: rgba(16, 185, 129, 0.12);
  color: #065F46;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.section-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 60px;
}

.section-header .section-tag {
  color: var(--primary-medium);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.section-header h2 {
  font-size: 2.75rem;
  color: var(--primary-deep);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2.1rem;
  }
}

/* Button Styles */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 1rem;
  transition: all var(--transition-normal);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-medium) 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(15, 81, 60, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-medium) 0%, var(--primary-light) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.btn-gold {
  background: linear-gradient(135deg, #F59E0B 0%, var(--gold-sun) 100%);
  color: #07231A;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(245, 184, 0, 0.3);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-sun) 0%, #FBBF24 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 184, 0, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--light-surface);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  background: rgba(7, 35, 26, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(16, 185, 129, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.brand-logo:hover {
  transform: translateY(-1px);
}

/* Standalone Flower Emblem - Directly on Dark Green Background with Zero White Box */
.brand-logo img,
.brand-emblem {
  height: 60px;
  width: auto;
  border-radius: 0 !important;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  display: block;
  object-fit: contain;
  transform: translateY(-3px); /* Slightly higher vertical presence */
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
  transition: height var(--transition-normal), transform var(--transition-normal);
}

.site-header.scrolled .brand-logo img,
.site-header.scrolled .brand-emblem {
  height: 50px;
  transform: translateY(-2px);
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

/* Company Name: Poppins Bold / Montserrat SemiBold, Golden Yellow / Amber #E3A817 */
.brand-name {
  font-family: var(--font-logo);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-gold);
  letter-spacing: -0.015em;
  line-height: 1.15;
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
}

/* Motto Row with Flanking Green Lines */
.brand-tagline-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.tagline-rule {
  flex: 1;
  height: 1.5px;
  background: var(--brand-forest-green);
  opacity: 0.85;
}

/* Motto: Pacifico / Grand Hotel Cursive, Forest Green #1B8343 */
.brand-tagline {
  font-family: var(--font-motto);
  font-size: 1.26rem;
  font-weight: 400;
  color: #27AE60; /* Vibrant forest green matching #1B8343 identity with clean legibility on dark header */
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: none;
  white-space: nowrap;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.65);
}

@media (max-width: 768px) {
  .brand-logo img,
  .brand-emblem {
    height: 48px;
  }
  .brand-name {
    font-size: 1.08rem;
  }
  .brand-tagline {
    font-size: 1.12rem;
  }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-sun);
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: #FFFFFF;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-cta-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ==========================================================================
   CINEMATIC HERO SECTION (VIDEO & 5-SCENE ECOSYSTEM SEQUENCE)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #07231A;
  color: #FFFFFF;
  padding-top: 90px;
}

.hero-cinematic-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

/* Background HTML5 Video */
.hero-video-element {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-cinematic-wrap.video-active .hero-video-element {
  opacity: 1;
}

/* 5-Scene Photorealistic Ken Burns Crossfade Slides */
.hero-scene-slides {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-scene-slide {
  position: absolute;
  top: -5%;
  left: -5%;
  width: 110%;
  height: 110%;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease, transform 6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform, opacity;
}

.hero-scene-slide.active {
  opacity: 1;
  transform: scale(1.0);
  z-index: 2;
}

/* Clean, natural lighting overlay - removes muddy shadows and keeps scene bright and vibrant */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  background: linear-gradient(to right, rgba(7, 35, 26, 0.42) 0%, rgba(7, 35, 26, 0.20) 42%, rgba(7, 35, 26, 0.02) 80%),
              linear-gradient(to bottom, rgba(7, 35, 26, 0.22) 0%, transparent 30%, rgba(7, 35, 26, 0.18) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 760px;
  padding: 40px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-sun);
  margin-bottom: 24px;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 10px #10B981;
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

.hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.60);
}

.hero-title .highlight-gold {
  color: var(--gold-sun);
  background: linear-gradient(135deg, #FDE68A 0%, var(--gold-sun) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
}

.hero-title .highlight-green {
  color: var(--primary-light);
  background: linear-gradient(135deg, #6EE7B7 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
}

.hero-subtitle {
  font-size: 1.35rem;
  line-height: 1.65;
  color: #FFFFFF;
  margin-bottom: 0;
  font-weight: 400;
  max-width: 680px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.70);
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 35px;
}

/* ==========================================================================
   METRICS & IMPACT COUNTER SECTION
   ========================================================================== */
.metrics-section {
  position: relative;
  z-index: 20;
  margin-top: -50px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 992px) {
  .metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .metrics-grid {
    grid-template-columns: 1fr;
  }
}

.metric-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 30px 24px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--light-border);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.metric-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--gold-sun));
}

.metric-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.metric-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-deep);
  line-height: 1.1;
  margin-bottom: 6px;
}

.metric-number .unit {
  font-size: 1.8rem;
  color: var(--primary-light);
}

.metric-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 4px;
}

.metric-sub {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   ABOUT US SECTION & COMPANY PROFILE
   ========================================================================== */
.about-section {
  background: #FFFFFF;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-image-wrapper {
  position: relative;
}

.about-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-floating-badge {
  position: absolute;
  bottom: -25px;
  right: -20px;
  background: var(--primary-deep);
  color: #FFFFFF;
  padding: 24px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(16, 185, 129, 0.3);
  max-width: 260px;
}

@media (max-width: 576px) {
  .about-floating-badge {
    position: static;
    margin-top: 15px;
    max-width: 100%;
  }
}

.floating-badge-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-sun);
  line-height: 1.1;
}

.floating-badge-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 4px;
}

.about-content .section-tag {
  color: var(--primary-medium);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.about-content h2 {
  font-size: 2.75rem;
  color: var(--primary-deep);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.about-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

@media (max-width: 576px) {
  .about-features {
    grid-template-columns: 1fr;
  }
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 2px;
}

.feature-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.45;
}

/* ==========================================================================
   EXECUTIVE LEADERSHIP / CMD SECTION (CORPORATE & RESTRAINED)
   ========================================================================== */
.cmd-leadership-section {
  background: #F8FAFC;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  padding: 110px 0;
  position: relative;
}

.cmd-executive-grid {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 72px;
  align-items: center;
}

.cmd-portrait-column {
  position: relative;
}

.cmd-portrait-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 16px 40px -8px rgba(15, 23, 42, 0.10);
  border: 1px solid #CBD5E1;
  background: #FFFFFF;
}

.cmd-executive-image {
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.cmd-content-column {
  display: flex;
  flex-direction: column;
}

.cmd-header-block {
  margin-bottom: 24px;
}

.cmd-kicker {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #047857;
  display: block;
  margin-bottom: 10px;
}

.cmd-name {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: #0F172A;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}

.cmd-designation-line {
  font-size: 1.05rem;
  color: #475569;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.cmd-role {
  color: #047857;
  font-weight: 700;
}

.cmd-sep {
  color: #94A3B8;
  font-size: 0.9rem;
}

.cmd-org {
  color: #475569;
  font-weight: 600;
}

.cmd-accent-rule {
  width: 56px;
  height: 2.5px;
  background: #C8961E;
}

.cmd-message-quote {
  font-family: var(--font-body);
  font-size: 1.18rem;
  line-height: 1.85;
  color: #1E293B;
  font-weight: 400;
  margin: 0 0 44px 0;
  padding-left: 26px;
  border-left: 3px solid #047857;
  font-style: normal;
}

/* Typographic Credentials (No Emojis / Decorative Icons) */
.cmd-credentials-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding-top: 36px;
  border-top: 1px solid #E2E8F0;
}

.cmd-cred-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.cmd-cred-value {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.cmd-cred-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: #64748B;
  line-height: 1.45;
  letter-spacing: 0.01em;
}

.cmd-cred-divider {
  width: 1px;
  height: 52px;
  background: #E2E8F0;
  flex-shrink: 0;
  align-self: center;
}

@media (max-width: 1024px) {
  .cmd-leadership-section {
    padding: 80px 0;
  }

  .cmd-executive-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .cmd-portrait-column {
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
  }

  .cmd-executive-image {
    height: 480px;
  }
}

@media (max-width: 640px) {
  .cmd-leadership-section {
    padding: 60px 0;
  }

  .cmd-credentials-grid {
    flex-direction: column;
    gap: 20px;
    padding-top: 28px;
  }

  .cmd-cred-divider {
    width: 100%;
    height: 1px;
    align-self: stretch;
  }

  .cmd-message-quote {
    font-size: 1.08rem;
    line-height: 1.75;
    padding-left: 18px;
    margin-bottom: 32px;
  }

  .cmd-executive-image {
    height: 420px;
  }
}

/* ==========================================================================
   SERVICES SECTION (CURRENT & FUTURE ROADMAP)
   ========================================================================== */
.services-section {
  background: var(--light-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-border);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(16, 185, 129, 0.4);
}

.service-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.08);
}

.service-tag-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(7, 35, 26, 0.85);
  backdrop-filter: blur(8px);
  color: var(--gold-sun);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.service-body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-body h3 {
  font-size: 1.35rem;
  color: var(--primary-deep);
  margin-bottom: 12px;
}

.service-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.service-bullets {
  list-style: none;
  margin-bottom: 20px;
}

.service-bullets li {
  font-size: 0.88rem;
  color: var(--text-main);
  padding: 4px 0 4px 22px;
  position: relative;
}

.service-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-light);
  font-weight: 800;
}

/* Future Horizons (BESS & O&M) Banner */
.future-services-wrap {
  background: linear-gradient(135deg, #091F18 0%, #0F3F30 100%);
  border-radius: var(--radius-lg);
  padding: 45px 40px;
  color: #FFFFFF;
  margin-top: 30px;
  border: 1px solid rgba(16, 185, 129, 0.25);
  box-shadow: var(--shadow-lg);
}

.future-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 36px;
}

.future-header .section-tag {
  color: var(--gold-sun);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.future-header h3 {
  font-size: 2rem;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.future-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

@media (max-width: 768px) {
  .future-grid {
    grid-template-columns: 1fr;
  }
}

.future-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition-normal);
}

.future-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-light);
  transform: translateY(-4px);
}

.future-card-badge {
  display: inline-block;
  background: rgba(245, 184, 0, 0.2);
  color: var(--gold-sun);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  text-transform: uppercase;
}

.future-card h4 {
  font-size: 1.35rem;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.future-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ==========================================================================
   PROJECT PORTFOLIO SECTION
   ========================================================================== */
.projects-section {
  background: #FFFFFF;
}

.portfolio-filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.92rem;
  font-weight: 600;
  background: #F1F5F9;
  color: var(--text-muted);
  border: 1px solid transparent;
  transition: var(--transition-fast);
}

.filter-btn:hover {
  color: var(--primary-deep);
  background: #E2E8F0;
}

.filter-btn.active {
  background: var(--primary-deep);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(7, 35, 26, 0.25);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

.project-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(16, 185, 129, 0.4);
}

.project-thumbnail {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.project-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.project-card:hover .project-thumbnail img {
  transform: scale(1.08);
}

.project-status-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.status-completed {
  background: #10B981;
  color: #FFFFFF;
}

.status-ongoing {
  background: #F59E0B;
  color: #FFFFFF;
}

.status-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FFFFFF;
}

.project-client-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(7, 35, 26, 0.9);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.project-client-badge.subcontractor {
  background: rgba(30, 58, 138, 0.9);
  color: #93C5FD;
}

.project-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-medium);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.project-title {
  font-size: 1.25rem;
  color: var(--primary-deep);
  margin-bottom: 14px;
  line-height: 1.35;
}

.project-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  background: #F8FAFC;
  padding: 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
}

.spec-item {
  display: flex;
  flex-direction: column;
}

.spec-item .spec-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.spec-item .spec-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-deep);
}

.project-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--light-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.client-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.client-name-val {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
}

/* ==========================================================================
   CONTINUOUS ANIMATED "GROUND TO GRID" ENGINEERING WORKFLOW
   ========================================================================== */
.workflow-section {
  background: #07231A;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.workflow-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(16, 185, 129, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.workflow-container {
  position: relative;
  z-index: 5;
}

.workflow-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 70px;
}

.workflow-header .section-tag {
  color: var(--gold-sun);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.workflow-header h2 {
  font-size: 2.75rem;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.workflow-header p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

/* Continuous Electric Flow Pipeline Track */
.workflow-timeline {
  position: relative;
  padding: 40px 0;
}

/* The Continuous Glowing Animated Energy Line */
.energy-pipeline-bar {
  position: absolute;
  top: 72px;
  left: 5%;
  width: 90%;
  height: 6px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  z-index: 1;
}

.energy-pipeline-bar .energy-beam {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 30%;
  background: linear-gradient(90deg, transparent, #10B981, #FBBF24, transparent);
  box-shadow: 0 0 20px #10B981, 0 0 10px #FBBF24;
  border-radius: 3px;
  animation: energyFlowContinuous 3s infinite linear;
}

@keyframes energyFlowContinuous {
  0% { left: -30%; }
  100% { left: 100%; }
}

@media (max-width: 992px) {
  .energy-pipeline-bar {
    display: none;
  }
}

.workflow-steps-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .workflow-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .workflow-steps-grid {
    grid-template-columns: 1fr;
  }
}

.workflow-step-card {
  background: rgba(14, 34, 29, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
}

.workflow-step-card:hover, .workflow-step-card.active-step {
  transform: translateY(-8px);
  background: rgba(19, 46, 39, 0.95);
  border-color: var(--gold-sun);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(245, 184, 0, 0.25);
}

.step-node-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #07231A;
  border: 3px solid var(--primary-light);
  color: #FFFFFF;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
  position: relative;
  transition: all var(--transition-normal);
}

.workflow-step-card:hover .step-node-circle,
.workflow-step-card.active-step .step-node-circle {
  border-color: var(--gold-sun);
  background: var(--primary);
  color: var(--gold-sun);
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(245, 184, 0, 0.7);
}

.step-node-circle .pulse-ring {
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 2px solid var(--primary-light);
  opacity: 0;
  animation: pulseStepRing 2.4s infinite cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes pulseStepRing {
  0% { transform: scale(0.9); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

.workflow-step-card:nth-child(1) .pulse-ring { animation-delay: 0s; }
.workflow-step-card:nth-child(2) .pulse-ring { animation-delay: 0.4s; }
.workflow-step-card:nth-child(3) .pulse-ring { animation-delay: 0.8s; }
.workflow-step-card:nth-child(4) .pulse-ring { animation-delay: 1.2s; }
.workflow-step-card:nth-child(5) .pulse-ring { animation-delay: 1.6s; }
.workflow-step-card:nth-child(6) .pulse-ring { animation-delay: 2.0s; }

.step-number-tag {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold-sun);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  display: block;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
  line-height: 1.3;
}

.step-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

/* ==========================================================================
   STRATEGIC CLIENTS & PARTNERS SHOWCASE
   ========================================================================== */
.clients-section {
  background: #F8FAFC;
  border-top: 1px solid var(--light-border);
  border-bottom: 1px solid var(--light-border);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

@media (max-width: 1280px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

@media (max-width: 860px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 540px) {
  .clients-grid {
    grid-template-columns: 1fr;
  }
}

.client-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.client-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(16, 185, 129, 0.4);
}

.client-logo-box {
  background: #FFFFFF;
  border-bottom: 1px solid #F1F5F9;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
}

.client-logo-img {
  max-width: 100%;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform var(--transition-fast);
}

.client-card:hover .client-logo-img {
  transform: scale(1.05);
}

.client-info {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.client-type-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.badge-oem {
  background: rgba(2, 132, 199, 0.12);
  color: #0284C7;
  border: 1px solid rgba(2, 132, 199, 0.3);
}

.badge-epc {
  background: rgba(30, 58, 138, 0.12);
  color: #1E3A8A;
  border: 1px solid rgba(30, 58, 138, 0.3);
}

.badge-partner {
  background: rgba(124, 58, 237, 0.12);
  color: #7C3AED;
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.badge-direct {
  background: rgba(16, 185, 129, 0.12);
  color: #065F46;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.badge-subcontract {
  background: rgba(245, 158, 11, 0.14);
  color: #B45309;
  border: 1px solid rgba(245, 158, 11, 0.4);
}

.badge-gov {
  background: rgba(14, 165, 233, 0.12);
  color: #0369A1;
  border: 1px solid rgba(14, 165, 233, 0.35);
}

.badge-ci {
  background: rgba(16, 185, 129, 0.14);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.client-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--primary-deep);
  margin-bottom: 8px;
  font-weight: 800;
}

.client-scope {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0;
}

/* ==========================================================================
   OFFICE ADDRESS & CONTACT SECTION (WITH EMBEDDED GOOGLE MAP)
   ========================================================================== */
.contact-section {
  background: #FFFFFF;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 40px;
}

@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* Corporate Office Location Map Card */
.contact-map-card {
  background: linear-gradient(135deg, #07231A 0%, #0C3125 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: #FFFFFF;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.map-card-header .map-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-light);
  margin-bottom: 12px;
}

.map-pin-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-sun);
  box-shadow: 0 0 10px var(--gold-sun);
}

.map-card-header h3 {
  font-size: 1.85rem;
  color: #FFFFFF;
  margin-bottom: 8px;
  font-weight: 800;
}

.map-address-summary {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
}

.map-iframe-container {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #061B14;
}

.map-iframe-container iframe {
  display: block;
  width: 100%;
  height: 380px;
}

.map-card-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.map-meta-contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media (max-width: 600px) {
  .map-meta-contacts {
    grid-template-columns: 1fr;
  }
}

.meta-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.88rem;
}

.meta-contact-row .meta-icon {
  font-size: 1.15rem;
}

.meta-contact-row strong {
  display: block;
  font-size: 0.72rem;
  color: var(--gold-sun);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.meta-contact-row a {
  color: #FFFFFF;
  font-weight: 600;
}

.meta-contact-row a:hover {
  color: var(--gold-sun);
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  font-weight: 700;
  font-size: 0.95rem;
}

/* Form Styles */
.contact-form-box {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-md);
}

@media (max-width: 576px) {
  .contact-form-box {
    padding: 24px;
  }
}

.contact-form-box h3 {
  font-size: 1.8rem;
  color: var(--primary-deep);
  margin-bottom: 8px;
}

.contact-form-box p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

@media (max-width: 600px) {
  .form-group-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  border: 1.5px solid #CBD5E1;
  font-family: inherit;
  font-size: 0.95rem;
  background: #F8FAFC;
  transition: var(--transition-fast);
  color: var(--text-main);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(15, 81, 60, 0.15);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* ==========================================================================
   FLOATING ACTION BUTTONS (CLASSIC BUSINESS LOGO ICONS: PHONE, MAIL, QUOTE)
   ========================================================================== */
.floating-action-bar {
  position: fixed;
  right: 22px;
  bottom: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fab-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(7, 35, 26, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  text-decoration: none;
  cursor: pointer;
}

.fab-icon {
  transition: all 0.3s ease;
  display: block;
}

.fab-btn:hover {
  transform: translateY(-4px) scale(1.08);
}

/* Tooltip */
.fab-btn .fab-tooltip {
  position: absolute;
  right: 64px;
  background: rgba(7, 35, 26, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #FFFFFF;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(12px);
  transition: all 0.25s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.fab-btn:hover .fab-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* 1. Classic Phone */
.fab-phone {
  border-color: rgba(16, 185, 129, 0.45);
  color: #10B981;
}

.fab-phone .fab-icon {
  stroke: #10B981;
}

.fab-phone:hover {
  background: linear-gradient(135deg, #065F46 0%, #047857 100%);
  border-color: #34D399;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(16, 185, 129, 0.45);
}

.fab-phone:hover .fab-icon {
  stroke: #FFFFFF;
  transform: scale(1.1);
}

.fab-phone:hover .fab-tooltip {
  border-color: rgba(16, 185, 129, 0.5);
}

/* 2. Classic Corporate Mail */
.fab-mail {
  border-color: rgba(56, 189, 248, 0.4);
  color: #38BDF8;
}

.fab-mail .fab-icon {
  stroke: #38BDF8;
}

.fab-mail:hover {
  background: linear-gradient(135deg, #0369A1 0%, #0284C7 100%);
  border-color: #7DD3FC;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(56, 189, 248, 0.45);
}

.fab-mail:hover .fab-icon {
  stroke: #FFFFFF;
  transform: scale(1.1);
}

.fab-mail:hover .fab-tooltip {
  border-color: rgba(56, 189, 248, 0.5);
}

/* 3. Classic Request Quote / Proposal */
.fab-quote {
  border-color: rgba(245, 184, 0, 0.5);
  color: var(--gold-sun);
}

.fab-quote .fab-icon {
  stroke: var(--gold-sun);
}

.fab-quote:hover {
  background: linear-gradient(135deg, #F5B800 0%, #D99B00 100%);
  border-color: #FDE047;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 22px rgba(245, 184, 0, 0.5);
}

.fab-quote:hover .fab-icon {
  stroke: #07231A;
  transform: scale(1.1);
}

.fab-quote:hover .fab-tooltip {
  border-color: rgba(245, 184, 0, 0.5);
}

/* ==========================================================================
   SITE FOOTER
   ========================================================================== */
.site-footer {
  background: #051912;
  color: #FFFFFF;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(16, 185, 129, 0.15);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

@media (max-width: 992px) {
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-top-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand .brand-logo {
  margin-bottom: 18px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 24px;
}

.footer-title {
  font-size: 1.15rem;
  color: var(--gold-sun);
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-light);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold-sun);
  padding-left: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a:hover {
  color: #FFFFFF;
}

/* Toast Notification */
.toast-notice {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--primary-deep);
  color: #FFFFFF;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--primary-light);
  z-index: 2000;
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast-notice.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.toast-notice.toast-error {
  background: #881337;
  border-color: #f43f5e;
}

/* ==========================================================================
   CAREERS PAGE — MODERN CORPORATE RENEWABLE DESIGN SYSTEM
   ========================================================================== */

/* 1. Careers Hero Section */
.careers-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 170px 0 110px;
  background: url('../assets/images/hero/scene5_integrated_ecosystem.jpg') center center / cover no-repeat;
  color: #FFFFFF;
  overflow: hidden;
  text-align: center;
}

.careers-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(7, 35, 26, 0.90) 0%, rgba(11, 53, 40, 0.82) 50%, rgba(6, 26, 19, 0.94) 100%),
              radial-gradient(ellipse at 50% 20%, rgba(245, 184, 0, 0.14) 0%, transparent 65%);
  z-index: 1;
}

/* Subtle Animated Ambient Sunlight / Energy Drift */
.careers-hero-ambient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 75% 35%, rgba(16, 185, 129, 0.12) 0%, transparent 50%);
  animation: ambientDrift 12s ease-in-out infinite alternate;
  z-index: 2;
  pointer-events: none;
}

@keyframes ambientDrift {
  0% { transform: scale(1) translateY(0); opacity: 0.7; }
  100% { transform: scale(1.15) translateY(-20px); opacity: 1; }
}

.careers-hero-content {
  position: relative;
  z-index: 5;
  max-width: 880px;
  margin: 0 auto;
}

.careers-hero h1 {
  font-size: clamp(2.3rem, 5.2vw, 3.8rem);
  font-weight: 800;
  line-height: 1.18;
  margin: 20px 0;
  letter-spacing: -0.025em;
  color: #FFFFFF;
}

.careers-hero h1 .highlight-gold {
  color: var(--gold-sun);
}

.careers-hero h1 .highlight-green {
  color: var(--primary-light);
}

.careers-hero p {
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.75;
  margin-bottom: 38px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.careers-hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

/* Subtle Rotating Turbine Accent */
.hero-turbine-accent {
  position: absolute;
  right: 5%;
  bottom: 12%;
  z-index: 3;
  opacity: 0.15;
  pointer-events: none;
}

.hero-turbine-accent svg {
  animation: slowTurbineSpin 24s linear infinite;
  transform-origin: center center;
}

@keyframes slowTurbineSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 992px) {
  .hero-turbine-accent {
    display: none;
  }
}

/* Hero Stats Bar */
.careers-stats-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.career-stat-badge {
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-full);
  padding: 10px 24px;
  font-size: 0.92rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  transition: all var(--transition-fast);
}

.career-stat-badge:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(245, 184, 0, 0.45);
  transform: translateY(-2px);
}

.career-stat-badge span.stat-num {
  color: var(--gold-sun);
  font-weight: 800;
  font-size: 1.05rem;
}

/* 2. Careers Introduction Section */
.careers-intro-section {
  background: #FFFFFF;
  border-bottom: 1px solid var(--light-border);
}

.careers-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .careers-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.careers-intro-media {
  position: relative;
}

.careers-intro-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.careers-intro-badge {
  position: absolute;
  bottom: -25px;
  right: -20px;
  background: rgba(7, 35, 26, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  color: #FFFFFF;
  max-width: 320px;
  box-shadow: var(--shadow-xl);
}

@media (max-width: 600px) {
  .careers-intro-badge {
    position: static;
    margin-top: 15px;
    max-width: 100%;
  }
}

.careers-intro-badge .badge-tag {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold-sun);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 6px;
}

.careers-intro-badge p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.careers-intro-content h2 {
  font-size: 2.4rem;
  color: var(--primary-deep);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.careers-intro-content p {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.75;
  margin-bottom: 20px;
}

.careers-intro-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 25px;
}

@media (max-width: 500px) {
  .careers-intro-pillars {
    grid-template-columns: 1fr;
  }
}

.intro-pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--light-bg);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--light-border);
}

.intro-pillar-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(16, 185, 129, 0.15);
  color: #047857;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
}

.intro-pillar-text h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 4px;
}

.intro-pillar-text span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
  display: block;
}

/* 3. Why Join SA Renew (6 Cards) */
.why-join-section {
  background: #F8FAFC;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-light), var(--gold-sun));
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(16, 185, 129, 0.35);
}

.why-card:hover::before {
  opacity: 1;
}

.why-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
  transition: all var(--transition-normal);
}

.why-card:hover .why-icon-wrap {
  background: var(--primary-medium);
  color: #FFFFFF;
  transform: scale(1.06);
}

.why-card h3 {
  font-size: 1.32rem;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

/* 4. Energy Ecosystem Visual Section */
.ecosystem-section {
  background: linear-gradient(135deg, #07231A 0%, #0B3528 100%);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.ecosystem-section .section-header .section-tag {
  color: var(--gold-sun);
}

.ecosystem-section .section-header h2 {
  color: #FFFFFF;
}

.ecosystem-section .section-header p {
  color: rgba(255, 255, 255, 0.85);
}

.ecosystem-journey-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-xl);
  padding: 45px 35px;
  margin-bottom: 35px;
  position: relative;
}

.ecosystem-stream-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.stream-badge {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: var(--radius-full);
}

.badge-solar {
  background: rgba(245, 184, 0, 0.2);
  color: var(--gold-sun);
  border: 1px solid rgba(245, 184, 0, 0.35);
}

.badge-wind {
  background: rgba(56, 189, 248, 0.2);
  color: #38BDF8;
  border: 1px solid rgba(56, 189, 248, 0.35);
}

.ecosystem-stream-label span.desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

.ecosystem-flow-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  position: relative;
}

@media (max-width: 1100px) {
  .ecosystem-flow-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .ecosystem-flow-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.ecosystem-node {
  background: rgba(7, 35, 26, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all var(--transition-normal);
  position: relative;
}

.ecosystem-node:hover {
  transform: translateY(-5px);
  border-color: var(--primary-light);
  background: rgba(16, 185, 129, 0.18);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.node-step-tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--gold-sun);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.node-icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.ecosystem-node h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 6px;
  line-height: 1.3;
}

.ecosystem-node p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
  margin: 0;
}

/* Subtle Animated Connector Flow Line */
.ecosystem-flow-connector {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--gold-sun), var(--primary-light), transparent);
  background-size: 200% 100%;
  border-radius: 2px;
  margin: 20px 0;
  animation: energyFlowPulse 4s linear infinite;
}

@keyframes energyFlowPulse {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.ecosystem-footer-note {
  text-align: center;
  max-width: 780px;
  margin: 35px auto 0;
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

.ecosystem-footer-note p {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

/* 5. Technology Meets Renewable Energy Section */
.tech-careers-section {
  background: #FFFFFF;
  border-bottom: 1px solid var(--light-border);
}

.tech-careers-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 992px) {
  .tech-careers-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.tech-careers-content h2 {
  font-size: 2.3rem;
  color: var(--primary-deep);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.tech-careers-content p.lead-text {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.75;
  margin-bottom: 25px;
}

.tech-features-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tech-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #F8FAFC;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: all var(--transition-fast);
}

.tech-feature-card:hover {
  border-color: rgba(16, 185, 129, 0.4);
  background: #FFFFFF;
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.tech-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.tech-feature-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 4px;
}

.tech-feature-info p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.tech-careers-media {
  position: relative;
}

.tech-careers-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.tech-floating-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(7, 35, 26, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(16, 185, 129, 0.35);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

.tech-floating-tag .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-light);
  box-shadow: 0 0 10px var(--primary-light);
}

/* 6. Employee / People Section ("Life at SA Renew") */
.people-section {
  background: #F8FAFC;
}

.people-environments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

@media (max-width: 1024px) {
  .people-environments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .people-environments-grid {
    grid-template-columns: 1fr;
  }
}

.people-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.people-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(16, 185, 129, 0.35);
}

.people-card-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.people-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.people-card:hover .people-card-img-wrap img {
  transform: scale(1.05);
}

.people-env-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(7, 35, 26, 0.85);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.people-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.people-card-body h4 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 8px;
}

.people-card-body p {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

.people-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #F1F5F9;
  padding-top: 14px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.people-card-footer span.loc {
  font-weight: 600;
  color: var(--primary-medium);
}

/* 7. Career Growth Section (Learn -> Contribute -> Grow -> Lead) */
.growth-section {
  background: #FFFFFF;
  border-bottom: 1px solid var(--light-border);
}

.growth-path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  margin-top: 50px;
}

@media (max-width: 1024px) {
  .growth-path-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 600px) {
  .growth-path-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

.growth-step-card {
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--light-border);
  position: relative;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.growth-step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(16, 185, 129, 0.4);
  background: #FFFFFF;
}

.growth-step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.growth-step-num {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--gold-sun);
  line-height: 1;
}

.growth-step-badge {
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
}

.growth-step-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 10px;
}

.growth-step-card p {
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 18px;
  flex: 1;
}

.growth-skills-acquired {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 10px 14px;
  border: 1px solid #E2E8F0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.growth-step-card:hover .growth-skills-acquired {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.25);
}

.growth-skills-acquired strong {
  color: var(--primary-deep);
  display: block;
  margin-bottom: 3px;
}

/* 8. Culture & Workplace Values */
.values-section {
  background: #F8FAFC;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

@media (max-width: 992px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.value-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(16, 185, 129, 0.35);
}

.value-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.value-card:hover .value-icon-box {
  background: var(--primary-medium);
  color: #FFFFFF;
}

.value-info h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 6px;
}

.value-info p {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.6;
  margin: 0;
}

/* 9. Make an Impact Section (Full-Width Cinematic Showcase) */
.make-impact-section {
  position: relative;
  padding: 130px 0;
  background: url('../assets/images/careers/make_impact_bg.jpg') center center / cover no-repeat;
  color: #FFFFFF;
  overflow: hidden;
}

.make-impact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(7, 35, 26, 0.93) 0%, rgba(11, 53, 40, 0.86) 50%, rgba(6, 26, 19, 0.95) 100%);
  z-index: 1;
}

.make-impact-content {
  position: relative;
  z-index: 5;
  text-align: center;
}

.make-impact-content .section-tag {
  color: var(--gold-sun);
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.make-impact-content h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.make-impact-content p.lead-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 780px;
  margin: 0 auto 55px;
  line-height: 1.75;
}

.impact-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .impact-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .impact-pillars-grid {
    grid-template-columns: 1fr;
  }
}

.impact-pillar-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  transition: all var(--transition-normal);
}

.impact-pillar-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(245, 184, 0, 0.45);
}

.impact-pillar-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
}

.impact-pillar-card h4 {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--gold-sun);
  margin-bottom: 8px;
}

.impact-pillar-card p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  margin: 0;
}

/* 10. Open Positions Section */
.openings-section {
  background: #F8FAFC;
}

.openings-filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.openings-filter-bar .filter-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  background: #FFFFFF;
  color: #475569;
  border: 1px solid #CBD5E1;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.openings-filter-bar .filter-btn:hover {
  background: #F1F5F9;
  color: var(--primary-deep);
  border-color: var(--primary-light);
}

.openings-filter-bar .filter-btn.active {
  background: var(--primary-medium);
  color: #FFFFFF;
  border-color: var(--primary-medium);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.openings-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}

.job-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-sm);
  padding: 32px;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(16, 185, 129, 0.45);
}

.job-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}

.job-main-info {
  flex: 1;
  min-width: 280px;
}

.job-dept-badge {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.dept-transmission {
  background: rgba(2, 132, 199, 0.12);
  color: #0284C7;
  border: 1px solid rgba(2, 132, 199, 0.3);
}

.dept-solar {
  background: rgba(245, 158, 11, 0.15);
  color: #B45309;
  border: 1px solid rgba(245, 158, 11, 0.35);
}

.dept-wind {
  background: rgba(14, 165, 233, 0.12);
  color: #0284C7;
  border: 1px solid rgba(14, 165, 233, 0.3);
}

.dept-substation {
  background: rgba(139, 92, 246, 0.12);
  color: #7C3AED;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.dept-civil {
  background: rgba(234, 88, 12, 0.12);
  color: #C2410C;
  border: 1px solid rgba(234, 88, 12, 0.3);
}

.dept-hse {
  background: rgba(16, 185, 129, 0.14);
  color: #047857;
  border: 1px solid rgba(16, 185, 129, 0.35);
}

.job-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 10px;
}

.job-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.job-desc {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.65;
}

.job-skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tag {
  background: #F1F5F9;
  color: #475569;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.job-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #F1F5F9;
  padding-top: 18px;
  flex-wrap: wrap;
  gap: 15px;
}

.job-type-pill {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-medium);
  background: rgba(16, 185, 129, 0.1);
  padding: 4px 12px;
  border-radius: 6px;
}

/* 11. Employee Testimonials ("People Behind the Power") */
.testimonials-section {
  background: #FFFFFF;
  border-bottom: 1px solid var(--light-border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
  }
}

.testimonial-card {
  background: #F8FAFC;
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  border: 1px solid var(--light-border);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(16, 185, 129, 0.35);
  background: #FFFFFF;
}

.testimonial-quote-icon {
  font-size: 2.2rem;
  color: var(--gold-sun);
  line-height: 1;
  margin-bottom: 12px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid #E2E8F0;
  padding-top: 16px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-medium) 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.author-meta h5 {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 2px;
}

.author-meta span {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
}

/* 12. Final Careers CTA Section */
.careers-final-cta {
  background: #F8FAFC;
  padding: 80px 0 100px;
}

.cta-banner-box {
  background: linear-gradient(135deg, #07231A 0%, #0B3528 100%);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.cta-banner-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(245, 184, 0, 0.12), transparent 60%),
              radial-gradient(circle at 80% 50%, rgba(16, 185, 129, 0.14), transparent 60%);
  pointer-events: none;
}

.cta-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.cta-banner-box h2 {
  font-size: clamp(2rem, 4.2vw, 2.9rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: #FFFFFF;
}

.cta-banner-box p {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 35px;
}

.cta-banner-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Spontaneous Talent Pool Callout */
.spontaneous-box {
  background: linear-gradient(135deg, #07231A 0%, #0B3528 100%);
  border-radius: var(--radius-lg);
  padding: 45px 35px;
  color: #FFFFFF;
  margin-top: 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.spontaneous-box h3 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.spontaneous-box p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  margin: 0 auto 25px;
  line-height: 1.7;
}

/* 13. Application Modal */
.app-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(7, 35, 26, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.app-modal-backdrop.active {
  display: flex;
  opacity: 1;
}

.app-modal-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  position: relative;
  padding: 35px 30px;
  animation: modalScaleUp 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalScaleUp {
  from {
    transform: scale(0.92) translateY(20px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #F1F5F9;
  color: #475569;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: #E2E8F0;
  color: #0F172A;
  transform: rotate(90deg);
}

.modal-header {
  margin-bottom: 25px;
  padding-right: 40px;
}

.modal-header .badge {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-medium);
  background: rgba(16, 185, 129, 0.12);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-block;
  margin-bottom: 8px;
}

.modal-header h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-deep);
}

.modal-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

@media (max-width: 600px) {
  .modal-form-grid {
    grid-template-columns: 1fr;
  }
}

.modal-form-grid .full-col {
  grid-column: 1 / -1;
}

.modal-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.modal-form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-deep);
}

.modal-form-group input,
.modal-form-group select,
.modal-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #CBD5E1;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.92rem;
  color: #0F172A;
  background: #F8FAFC;
  transition: all var(--transition-fast);
}

.modal-form-group input:focus,
.modal-form-group select:focus,
.modal-form-group textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.modal-success-state {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.modal-success-state .success-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: #059669;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.modal-success-state h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary-deep);
  margin-bottom: 12px;
}

.modal-success-state p {
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 25px;
}

