/*
 * VRPL Website - Component Library
 * Premium reusable components with Bio-Industrial Fusion theme
 */

/* ========================================
   BUTTONS
   ======================================== */

/* Base button styles */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  border: none;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

/* Copper Gradient Button (Primary) */
.btn-copper {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  border: none;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  background: var(--gradient-copper);
  color: var(--text-primary);
  box-shadow: var(--shadow-md);
}

.btn-copper::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(167, 200, 161, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-copper:hover::before {
  width: 300px;
  height: 300px;
}

.btn-copper:hover {
  box-shadow: var(--shadow-glow-green), var(--shadow-lg);
  transform: translateY(-3px);
}

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

/* Outline Green Button (Secondary) */
.btn-outline-green {
  display: inline-block;
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  background: transparent;
  border: 2px solid var(--moss-green);
  color: var(--light-green);
  padding: calc(1rem - 2px) calc(2.5rem - 2px);
}

.btn-outline-green:hover {
  background: var(--moss-green);
  color: var(--text-primary);
  box-shadow: 0 0 20px rgba(73, 109, 83, 0.5);
  border-color: var(--light-green);
}

/* Ghost Button */
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 1rem 2.5rem;
}

.btn-ghost:hover {
  color: var(--copper-light);
  background: rgba(156, 106, 74, 0.1);
}

/* ========================================
   CARDS
   ======================================== */

/* Base Card */
.card {
  background: var(--gradient-industrial);
  border: 1px solid rgba(156, 106, 74, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
  position: relative;
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--copper-light);
  box-shadow: var(--shadow-lg);
}

/* Industrial Card (with copper accent) */
.industrial-card {
  background: var(--gradient-industrial);
  border: 1px solid var(--copper-medium);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.industrial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--copper-medium), var(--light-green));
}

.industrial-card:hover {
  box-shadow: 0 0 30px rgba(167, 200, 161, 0.2);
  transform: translateY(-8px);
  border-color: var(--light-green);
}

/* Vision/Benefit Card */
.vision-card,
.benefit-card {
  background: rgba(46, 46, 46, 0.5);
  backdrop-filter: var(--backdrop-blur);
  border: 1px solid rgba(156, 106, 74, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
}

.vision-card::after,
.benefit-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-copper);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.vision-card:hover,
.benefit-card:hover {
  border-color: var(--copper-light);
  box-shadow: 0 0 24px rgba(156, 106, 74, 0.3);
  transform: translateY(-5px);
}

.vision-card:hover::after,
.benefit-card:hover::after {
  opacity: 1;
}

/* Card Icon */
.card-icon,
.benefit-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(156, 106, 74, 0.1);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.vision-card:hover .card-icon,
.benefit-card:hover .benefit-icon {
  background: rgba(156, 106, 74, 0.2);
  transform: scale(1.1) rotate(5deg);
}

.card-icon img,
.benefit-icon img {
  width: 50%;
  height: 50%;
  object-fit: contain;
}

/* Mission List */
.mission-list {
  list-style: none;
  text-align: left;
}

.mission-list li {
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-sm);
  color: var(--text-secondary);
}

.mission-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background: var(--light-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green-glow);
}

/* ========================================
   GRIDS
   ======================================== */

.vision-grid,
.benefits-grid,
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.alignment-grid,
.safety-grid,
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
}

@media (max-width: 768px) {
  .vision-grid,
  .benefits-grid,
  .programs-grid,
  .alignment-grid,
  .safety-grid,
  .advantages-grid {
    grid-template-columns: 1fr;
  }
}

/* ========================================
   PROCESS FLOW DIAGRAM
   ======================================== */

.process-flow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  margin: var(--space-3xl) 0;
  flex-wrap: nowrap;
}

.process-step {
  flex: 1 1 150px;
  text-align: center;
  min-width: 150px;
}

/* Hexagon Shape */
.process-hexagon {
  width: 120px;
  height: 120px;
  background: var(--gradient-industrial);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--copper-medium);
  margin: 0 auto var(--space-md);
  transition: all var(--transition-base);
  position: relative;
}

.process-hexagon::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: linear-gradient(135deg, var(--steel-gray), var(--forest-green));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  z-index: -1;
}

.process-hexagon.active {
  border-color: var(--light-green);
  box-shadow: 0 0 30px var(--green-glow);
  transform: scale(1.1);
}

.process-hexagon:hover {
  transform: scale(1.05);
  border-color: var(--copper-light);
}

.process-hexagon img {
  width: 50%;
  height: 50%;
  filter: brightness(0) saturate(100%) invert(100%);
}

/* Process Connector */
.process-connector {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.connector-svg {
  overflow: visible;
}

.pulsing-dot {
  animation: connectorPulse 2s infinite;
  transform-origin: center;
}

@keyframes connectorPulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 10px var(--light-green); }
  100% { transform: scale(0.8); opacity: 0.5; }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 0.5;
    transform: translateY(-50%) scale(1.5);
  }
}

.process-title {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--copper-light);
  margin-bottom: var(--space-sm);
}

.process-description {
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

/* Process Details Cards */
.process-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-3xl);
}

.detail-card {
  background: rgba(46, 46, 46, 0.3);
  border: 1px solid rgba(156, 106, 74, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  transition: all var(--transition-base);
}

.detail-card:hover {
  border-color: var(--copper-medium);
  background: rgba(46, 46, 46, 0.5);
}

.detail-card h3 {
  font-size: var(--text-lg);
  color: var(--copper-light);
  margin-bottom: var(--space-sm);
}

.detail-card p {
  font-size: var(--text-sm);
  margin-bottom: 0;
}

/* Responsive Process Flow */
@media (max-width: 1024px) {
  .process-flow {
    flex-direction: column;
  }

  .process-connector {
    transform: rotate(90deg);
  }

  .process-step {
    width: 100%;
  }
}

/* ========================================
   STATISTICS PANELS
   ======================================== */

.stats-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
  background: rgba(46, 46, 46, 0.5);
  backdrop-filter: var(--backdrop-blur);
  padding: var(--space-2xl) var(--space-xl);
  border: 1px solid rgba(156, 106, 74, 0.3);
  border-radius: var(--radius-lg);
  position: relative;
}

.stats-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--pattern-hexagon);
  opacity: 0.05;
  pointer-events: none;
}

.stat-block {
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-number-large {
  font-size: var(--text-4xl);
  font-weight: var(--weight-black);
  color: #D4A574;
  text-shadow: 0 0 20px rgba(156, 106, 74, 0.8),
               0 0 40px rgba(106, 62, 44, 0.6),
               0 2px 4px rgba(0, 0, 0, 0.5);
  display: block;
  margin-bottom: var(--space-sm);
  font-variant-numeric: tabular-nums;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: var(--text-4xl);
  font-weight: var(--weight-black);
  color: #D4A574;
  text-shadow: 0 0 20px rgba(156, 106, 74, 0.8),
               0 0 40px rgba(106, 62, 44, 0.6),
               0 2px 4px rgba(0, 0, 0, 0.5);
  display: inline-block;
  margin-bottom: var(--space-sm);
  font-variant-numeric: tabular-nums;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-xs) var(--space-md);
  transition: all var(--transition-base);
}

.stat-number:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(200, 159, 128, 0.5);
  box-shadow: 0 0 20px rgba(156, 106, 74, 0.3);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Number Counter Animation */
.stat-number.counting {
  animation: countUp 0.6s ease;
}

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

/* ========================================
   IMPACT CARDS
   ======================================== */

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.impact-card {
  background: var(--gradient-industrial);
  border: 2px solid rgba(156, 106, 74, 0.3);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.impact-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(167, 200, 161, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.impact-card.highlight {
  border-color: var(--copper-medium);
  box-shadow: 0 0 40px rgba(156, 106, 74, 0.2);
}

.impact-card:hover {
  transform: translateY(-10px);
  border-color: var(--copper-light);
  box-shadow: var(--shadow-glow-green-lg);
}

.impact-card:hover::before {
  opacity: 1;
}

.impact-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(156, 106, 74, 0.1);
  border-radius: 50%;
  transition: all var(--transition-base);
}

.impact-card:hover .impact-icon {
  transform: scale(1.1);
  background: rgba(156, 106, 74, 0.2);
}

.impact-number {
  font-size: var(--text-5xl);
  font-weight: var(--weight-black);
  color: var(--copper-light);
  margin-bottom: var(--space-sm);
  text-shadow: 0 0 30px var(--copper-glow);
}

.impact-label {
  font-size: var(--text-lg);
  font-weight: var(--weight-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.impact-description {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* ========================================
   ADVANTAGE CARDS
   ======================================== */

.advantage-card {
  background: rgba(46, 46, 46, 0.5);
  border: 1px solid rgba(156, 106, 74, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
  position: relative;
}

.advantage-number {
  font-size: var(--text-2xl);
  font-weight: var(--weight-black);
  color: var(--copper-medium);
  opacity: 0.3;
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-family: var(--font-display);
}

.advantage-card:hover {
  border-color: var(--copper-light);
  background: rgba(46, 46, 46, 0.7);
  transform: translateX(5px);
}

.advantage-card:hover .advantage-number {
  opacity: 0.6;
  color: var(--light-green);
}

.advantage-card h3 {
  font-size: var(--text-lg);
  color: var(--copper-light);
  margin-bottom: var(--space-sm);
}

.advantage-card p {
  font-size: var(--text-sm);
  margin-bottom: 0;
}

/* ========================================
   CALL TO ACTION
   ======================================== */

.cta-section {
  background: var(--gradient-industrial);
  border-top: 2px solid rgba(156, 106, 74, 0.3);
  border-bottom: 2px solid rgba(156, 106, 74, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--pattern-hexagon);
  opacity: 0.03;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: var(--text-4xl);
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
}

.cta-text {
  font-size: var(--text-xl);
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  line-height: var(--leading-relaxed);
}

.cta-buttons {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ========================================
   FOOTER - COMPREHENSIVE REDWOOD-INSPIRED
   ======================================== */

.main-footer {
  background: var(--background-dark);
  border-top: 2px solid rgba(156, 106, 74, 0.3);
  padding: var(--space-4xl) 0 var(--space-xl);
  position: relative;
}

.main-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--copper-medium) 25%, 
    var(--light-green) 50%, 
    var(--copper-medium) 75%, 
    transparent 100%);
}

/* Footer Top - Brand + Link Columns */
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

/* Footer Brand Section */
.footer-brand {
  max-width: 400px;
}

.footer-logo {
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  color: var(--copper-light);
  margin-bottom: var(--space-sm);
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

.footer-tagline {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-sm);
  line-height: var(--leading-relaxed);
}

.footer-certification {
  font-size: var(--text-sm);
  color: var(--moss-green);
  padding: 0.5rem 1rem;
  background: rgba(73, 109, 83, 0.15);
  border-left: 3px solid var(--moss-green);
  display: inline-block;
  margin-bottom: var(--space-xl);
}

.footer-contact-primary {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-email,
.footer-location {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--text-secondary);
  font-size: var(--text-base);
  transition: color var(--transition-fast);
}

.footer-email {
  text-decoration: none;
  color: var(--copper-light);
  font-weight: var(--weight-medium);
}

.footer-email:hover {
  color: var(--light-green);
}

.footer-email svg,
.footer-location svg {
  flex-shrink: 0;
  color: var(--copper-medium);
}

/* Footer Links Grid */
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.footer-column-title {
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--copper-light);
  margin-bottom: var(--space-md);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links li a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: var(--text-sm);
  transition: all var(--transition-fast);
  display: inline-block;
  position: relative;
}

.footer-links li a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--copper-light);
  transition: width var(--transition-fast);
}

.footer-links li a:hover {
  color: var(--copper-light);
  transform: translateX(4px);
}

.footer-links li a:hover::before {
  width: 100%;
}

/* Footer Divider */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(156, 106, 74, 0.3) 50%,
    transparent 100%);
  margin: var(--space-2xl) 0;
}

/* Footer Middle - Partnerships & Missions */
.footer-middle {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-2xl);
}

.footer-partnerships h4,
.footer-missions h4 {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.partner-logos {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.partner-badge {
  padding: 0.5rem 1rem;
  background: rgba(46, 46, 46, 0.5);
  border: 1px solid var(--copper-medium);
  border-radius: var(--radius-md);
  color: var(--copper-light);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  font-family: var(--font-display);
}

.mission-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.mission-tags li {
  padding: 0.5rem 1rem;
  background: rgba(73, 109, 83, 0.15);
  border: 1px solid rgba(73, 109, 83, 0.3);
  border-radius: var(--radius-full);
  color: var(--light-green);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  transition: all var(--transition-fast);
}

.mission-tags li:hover {
  background: rgba(73, 109, 83, 0.25);
  border-color: var(--light-green);
  transform: translateY(-2px);
}

/* Footer Bottom - Copyright & Stats */
.footer-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.footer-bottom-left {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.footer-copyright {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin: 0;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-xs);
}

.footer-legal-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-legal-links a:hover {
  color: var(--copper-light);
}

.footer-legal-links .separator {
  color: rgba(220, 215, 208, 0.3);
}

.footer-bottom-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: flex-end;
}

.footer-tagline-small {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  font-style: italic;
  margin: 0;
}

.footer-stats-small {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.stat-badge {
  padding: 0.375rem 0.75rem;
  background: linear-gradient(135deg, rgba(156, 106, 74, 0.15), rgba(73, 109, 83, 0.15));
  border: 1px solid rgba(156, 106, 74, 0.3);
  border-radius: var(--radius-md);
  color: var(--copper-light);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  font-family: var(--font-display);
  white-space: nowrap;
}

/* ========================================
   FOOTER RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg) var(--space-xl);
  }

  .footer-middle {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom-right {
    text-align: left;
    align-items: flex-start;
  }

  .footer-stats-small {
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .main-footer {
    padding: var(--space-3xl) 0 var(--space-lg);
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-partnerships,
  .footer-missions {
    text-align: left;
  }

  .mission-tags {
    justify-content: flex-start;
  }

  .footer-stats-small {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .stat-badge {
    width: 100%;
    text-align: center;
  }

  .footer-legal-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .footer-contact-primary {
    font-size: var(--text-sm);
  }

  .footer-email svg,
  .footer-location svg {
    width: 16px;
    height: 16px;
  }

  .partner-logos {
    flex-direction: column;
  }

  .partner-badge {
    width: 100%;
    text-align: center;
  }
}

/* ========================================
   NEW COMPONENTS FOR ADDITIONAL PAGES
   ======================================== */

/* Registration Info Block */
.registration-info {
  background: rgba(46, 46, 46, 0.5);
  border: 1px solid rgba(156, 106, 74, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-top: var(--space-xl);
}

.registration-info h3 {
  font-size: var(--text-lg);
  color: var(--copper-light);
  margin-bottom: var(--space-lg);
}

.info-item {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(156, 106, 74, 0.1);
}

.info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.info-label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  font-weight: var(--weight-medium);
}

.info-value {
  font-size: var(--text-base);
  color: var(--copper-light);
  font-weight: var(--weight-semibold);
  font-family: var(--font-display);
}

.info-value a {
  color: var(--copper-light);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.info-value a:hover {
  color: var(--light-green);
}

/* Certification Display */
.certification-display {
  max-width: 800px;
  margin: var(--space-3xl) auto;
}

.cert-image-placeholder {
  background: rgba(46, 46, 46, 0.5);
  border: 2px solid var(--copper-medium);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
}

.cert-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.image-note {
  margin-top: var(--space-lg);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  font-style: italic;
}

/* Mission Cards */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-xl);
}

.mission-card {
  background: rgba(46, 46, 46, 0.5);
  border: 1px solid rgba(156, 106, 74, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
}

.mission-card.highlight {
  border-color: var(--copper-medium);
  box-shadow: 0 0 30px rgba(156, 106, 74, 0.2);
}

.mission-card:hover {
  transform: translateY(-5px);
  border-color: var(--copper-light);
  box-shadow: 0 0 40px rgba(167, 200, 161, 0.3);
}

.mission-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(156, 106, 74, 0.1);
  border-radius: var(--radius-md);
}

.mission-card h3 {
  font-size: var(--text-lg);
  color: var(--copper-light);
  margin-bottom: var(--space-md);
  text-align: center;
}

.mission-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  text-align: center;
}

/* Objectives Cards */
.objectives-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
}

.objective-primary,
.objective-secondary {
  background: var(--gradient-industrial);
  border: 1px solid rgba(156, 106, 74, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

.objective-primary {
  border-color: var(--copper-medium);
  border-width: 2px;
}

.objectives-content h3 {
  font-size: var(--text-xl);
  color: var(--copper-light);
  margin-bottom: var(--space-lg);
}

/* Founder Card Additions */
.founder-credentials {
  font-size: var(--text-base);
  color: var(--copper-medium);
  margin-bottom: var(--space-md);
  font-weight: var(--weight-semibold);
}

.footer-cin {
  font-size: var(--text-xs);
  color: var(--text-secondary);
  margin-top: var(--space-xs);
}

/* Phase Details */
.phase-details {
  margin-top: var(--space-xl);
}

.phase-details h3 {
  font-size: var(--text-xl);
  color: var(--copper-light);
  margin: var(--space-xl) 0 var(--space-md);
}

.phase-details h3:first-child {
  margin-top: 0;
}

.phase-image-block {
  margin-top: var(--space-2xl);
  text-align: center;
}

.phase-image-block img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(156, 106, 74, 0.3);
  box-shadow: var(--shadow-lg);
}

.image-caption {
  margin-top: var(--space-md);
  font-size: var(--text-sm);
  color: var(--text-secondary);
  font-style: italic;
}

/* Execution Plan Cards */
.execution-content {
  display: grid;
  gap: var(--space-xl);
}

.execution-card {
  background: rgba(46, 46, 46, 0.5);
  border: 1px solid rgba(156, 106, 74, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

.execution-card h3 {
  font-size: var(--text-xl);
  color: var(--copper-light);
  margin-bottom: var(--space-lg);
}

.highlight-text {
  background: rgba(156, 106, 74, 0.1);
  border-left: 3px solid var(--copper-medium);
  padding: var(--space-md) var(--space-lg);
  margin-top: var(--space-lg);
  font-weight: var(--weight-semibold);
  color: var(--copper-light);
}

.execution-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.exec-image-block {
  text-align: center;
}

.exec-image-block img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(156, 106, 74, 0.3);
}

/* Dustbin Cards */
.dustbins-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.dustbin-card {
  background: rgba(46, 46, 46, 0.5);
  border: 2px solid rgba(156, 106, 74, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--transition-base);
}

.dustbin-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 30px rgba(156, 106, 74, 0.3);
}

.dustbin-card.green-dustbin:hover {
  border-color: #4CAF50;
  box-shadow: 0 0 30px rgba(76, 175, 80, 0.4);
}

.dustbin-card.blue-dustbin:hover {
  border-color: #2196F3;
  box-shadow: 0 0 30px rgba(33, 150, 243, 0.4);
}

.dustbin-card.red-dustbin:hover {
  border-color: #F44336;
  box-shadow: 0 0 30px rgba(244, 67, 54, 0.4);
}

.dustbin-card.yellow-dustbin:hover {
  border-color: #FFEB3B;
  box-shadow: 0 0 30px rgba(255, 235, 59, 0.4);
}

.dustbin-card.grey-dustbin:hover {
  border-color: #9E9E9E;
  box-shadow: 0 0 30px rgba(158, 158, 158, 0.4);
}

.dustbin-icon {
  margin: 0 auto var(--space-lg);
}

.dustbin-image {
  width: 100%;
  height: 150px;
  margin: var(--space-lg) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28, 28, 28, 0.5);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.dustbin-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dustbin-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
  font-weight: var(--weight-bold);
}

.dustbin-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.waste-examples {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-top: var(--space-md);
}

.waste-examples li {
  position: relative;
  padding-left: var(--space-lg);
  margin-bottom: var(--space-xs);
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.waste-examples li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--copper-medium);
  font-weight: var(--weight-bold);
}

/* Hydrogen Mission Stats */
.mission-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-2xl);
  margin: var(--space-3xl) 0;
}

.mission-stat {
  text-align: center;
  padding: var(--space-2xl);
  background: rgba(46, 46, 46, 0.5);
  border: 1px solid rgba(156, 106, 74, 0.3);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.mission-stat:hover {
  transform: translateY(-5px);
  border-color: var(--copper-light);
  box-shadow: 0 0 30px rgba(167, 200, 161, 0.3);
}

.stat-number-huge {
  font-size: var(--text-6xl);
  font-weight: var(--weight-black);
  color: var(--copper-light);
  display: block;
  margin-bottom: var(--space-md);
  text-shadow: 0 0 30px var(--copper-glow);
  line-height: 1;
}

.mission-stat p {
  font-size: var(--text-base);
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  font-weight: var(--weight-semibold);
}

.stat-note {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  font-style: italic;
  margin-top: var(--space-xs);
}

/* Mission Funding */
.mission-funding {
  margin-top: var(--space-3xl);
  background: rgba(46, 46, 46, 0.5);
  border: 1px solid rgba(156, 106, 74, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

.mission-funding h3 {
  font-size: var(--text-2xl);
  color: var(--copper-light);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.funding-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
}

.funding-item {
  text-align: center;
  padding: var(--space-lg);
  background: rgba(28, 28, 28, 0.5);
  border-radius: var(--radius-md);
  border: 1px solid rgba(156, 106, 74, 0.2);
}

.funding-amount {
  display: block;
  font-size: var(--text-3xl);
  font-weight: var(--weight-black);
  color: var(--copper-light);
  margin-bottom: var(--space-sm);
}

.funding-label {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

/* Process Images */
.process-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
}

.process-image-block {
  text-align: center;
}

.process-image-block img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(156, 106, 74, 0.3);
  box-shadow: var(--shadow-lg);
}

/* Benefits Detailed Grid */
.benefits-detailed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.benefit-detail-card {
  background: rgba(46, 46, 46, 0.5);
  border: 1px solid rgba(156, 106, 74, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
}

.benefit-detail-card:hover {
  transform: translateY(-5px);
  border-color: var(--copper-light);
  box-shadow: 0 0 24px rgba(156, 106, 74, 0.3);
}

.benefit-detail-card h3 {
  font-size: var(--text-lg);
  color: var(--copper-light);
  margin-bottom: var(--space-md);
}

/* Emission Standards */
.emission-standards {
  margin-top: var(--space-3xl);
  padding: var(--space-2xl);
  background: rgba(46, 46, 46, 0.5);
  border: 1px solid rgba(156, 106, 74, 0.3);
  border-radius: var(--radius-lg);
}

.emission-standards h3 {
  font-size: var(--text-2xl);
  color: var(--copper-light);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.emission-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
  margin: var(--space-xl) 0;
}

.emission-images img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(156, 106, 74, 0.3);
}

/* Safety Grid */
.safety-card {
  background: rgba(46, 46, 46, 0.5);
  border: 1px solid rgba(156, 106, 74, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  transition: all var(--transition-base);
}

.safety-card:hover {
  transform: translateY(-5px);
  border-color: var(--copper-light);
  box-shadow: 0 0 24px rgba(167, 200, 161, 0.3);
}

.safety-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(156, 106, 74, 0.1);
  border-radius: var(--radius-md);
}

.safety-card h3 {
  font-size: var(--text-lg);
  color: var(--copper-light);
  margin-bottom: var(--space-md);
  text-align: center;
}

.safety-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-md);
}

.safety-card p:last-child {
  margin-bottom: 0;
}

/* Challenges Grid */
.challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-xl);
}

.challenge-card {
  background: rgba(46, 46, 46, 0.5);
  border: 1px solid rgba(156, 106, 74, 0.3);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
}

.challenge-card.highlight {
  border-color: var(--copper-medium);
  border-width: 2px;
  box-shadow: 0 0 30px rgba(156, 106, 74, 0.2);
}

.challenge-card:hover {
  transform: translateY(-5px);
  border-color: var(--copper-light);
}

.challenge-icon {
  font-size: var(--text-4xl);
  text-align: center;
  margin-bottom: var(--space-lg);
}

.challenge-card h3 {
  font-size: var(--text-xl);
  color: var(--copper-light);
  margin-bottom: var(--space-md);
  text-align: center;
}

.challenge-description {
  font-size: var(--text-base);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.solution-box {
  background: rgba(73, 109, 83, 0.1);
  border-left: 3px solid var(--moss-green);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin-top: var(--space-lg);
}

.solution-box h4 {
  font-size: var(--text-base);
  color: var(--light-green);
  margin-bottom: var(--space-sm);
  font-weight: var(--weight-semibold);
}

.solution-box p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
}

/* Product Cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-xl);
}

.product-card {
  background: rgba(46, 46, 46, 0.5);
  border: 1px solid rgba(156, 106, 74, 0.3);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: var(--copper-light);
  box-shadow: 0 0 30px rgba(167, 200, 161, 0.3);
}

.product-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-image img {
  transform: scale(1.1);
}

.product-card h3 {
  font-size: var(--text-xl);
  color: var(--copper-light);
  margin: var(--space-lg);
  margin-bottom: var(--space-md);
}

.product-card p {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: var(--leading-relaxed);
  margin: 0 var(--space-lg) var(--space-lg);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .dustbins-grid,
  .benefits-detailed-grid,
  .challenges-grid,
  .products-grid,
  .process-images {
    grid-template-columns: 1fr;
  }

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

  .funding-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .funding-grid {
    grid-template-columns: 1fr;
  }
}
