/* RUGEST - Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ==================== VARIABLES ==================== */
:root {
  --primary: #1B4D3E;
  --primary-dark: #0D2B22;
  --primary-foreground: #FFFFFF;
  --accent: #4ADE80;
  --orange: #E85A2A;
  --orange-hover: #D14E22;
  --background: #FFFFFF;
  --background-light: #F5F5F0;
  --foreground: #0F172A;
  --muted: #64748B;
  --border: #E2E8F0;
}

/* ==================== RESET ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: white;
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
}

@media (max-width: 768px) {
  .nav-tagline {
    font-size: 0.7rem;
  }
  
  .nav-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}

.nav-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-cta {
  background: var(--orange);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(232, 90, 42, 0.3);
  background: var(--orange-hover);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--foreground);
}

@media (max-width: 968px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: white;
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }
}

/* ==================== HERO SECTION ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding-top: 80px;
  color: white;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 768px) {
  .hero-container {
    padding: 2rem 1.25rem;
  }
}

/* Hero Badge Container */
.hero-badge-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .hero-badge-container {
    align-items: center;
  }
}

.hero-badge-text {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.875rem;
  white-space: nowrap;
  max-width: 100%;
}

@media (max-width: 768px) {
  .hero-badge-text {
    white-space: normal;
    text-align: center;
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 16px;
  }
}

.hero-badge-icon {
  font-size: 1.5rem;
  margin-top: 0.75rem;
  text-align: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.hero-title-large {
  font-size: clamp(2.5rem, 7vw, 5rem);
}

.hero-leaf {
  font-size: 3rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-title-large {
    font-size: 2.25rem;
  }
  
  .hero-leaf {
    font-size: 2.5rem;
  }
}

.hero-title span {
  color: var(--accent);
}

.hero-description {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.7;
  text-align: center;
}

@media (max-width: 768px) {
  .hero-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  justify-content: center;
}

.btn-primary {
  background: var(--orange);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.25rem;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 90, 42, 0.4);
  background: var(--orange-hover);
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  font-size: 1rem;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 500px;
}

.hero-stat h3 {
  font-size: clamp(1.25rem, 3vw, 2rem);
  color: var(--accent);
  margin-bottom: 0.25rem;
}

.hero-stat p {
  font-size: clamp(0.75rem, 2vw, 0.875rem);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .hero-container {
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    margin: 0 auto;
  }
}

/* ==================== SECTIONS ==================== */
.section {
  padding: 5rem 2rem;
}

.section-light {
  background: var(--background-light);
}

.section-dark {
  background: var(--primary);
  color: white;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  max-width: 700px;
  margin-bottom: 3rem;
}

.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(27, 77, 62, 0.1);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-dark .section-badge {
  background: rgba(255, 255, 255, 0.15);
  color: var(--accent);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted);
  line-height: 1.7;
}

.section-dark .section-description {
  color: rgba(255, 255, 255, 0.8);
}

/* ==================== SERVICE CARDS ==================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-card-image {
  height: 200px;
  overflow: hidden;
  background: var(--background-light);
}

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

.service-card-content {
  padding: 2rem;
}

.service-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(27, 77, 62, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.service-card-icon i {
  color: var(--primary);
  font-size: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-card-link {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.2s ease;
}

.service-card-link:hover {
  gap: 0.75rem;
}

/* ==================== SERVICE DETAIL ==================== */
.service-detail {
  background: var(--background-light);
  border-radius: 24px;
  padding: 3rem;
  margin-bottom: 2rem;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 968px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
}

.service-detail-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-detail-image img {
  width: 100%;
  height: auto;
  display: block;
}

.service-icon {
  width: 64px;
  height: 64px;
  background: rgba(27, 77, 62, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
}

.feature-list {
  margin-top: 1.5rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 1rem;
}

.feature-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
}

/* ==================== SMART SOLAR BOX ==================== */
.smart-solar-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 24px;
  padding: 3rem;
  color: white;
  margin-top: 2rem;
}

.smart-solar-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.smart-solar-icon {
  width: 64px;
  height: 64px;
  background: rgba(74, 222, 128, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 2rem;
}

.smart-solar-header h3 {
  font-size: 1.75rem;
}

.smart-solar-header p {
  opacity: 0.7;
  font-size: 0.95rem;
}

.smart-solar-description {
  font-size: 1.125rem;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.smart-solar-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .smart-solar-features {
    grid-template-columns: 1fr;
  }

  .smart-solar-header {
    flex-direction: column;
    text-align: center;
  }
}

.smart-solar-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.smart-solar-feature::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
}

.specs-table {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.specs-table h4 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

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

.materials-note {
  background: rgba(74, 222, 128, 0.15);
  padding: 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
}

/* ==================== TURNKEY SERVICE ==================== */
.turnkey-box {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  margin-top: 2rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.turnkey-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.turnkey-box > p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* ==================== VALUES GRID ==================== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

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

.value-card {
  background: var(--background-light);
  padding: 1.5rem;
  border-radius: 16px;
}

.value-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(27, 77, 62, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.value-card h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--muted);
}

/* ==================== PIPELINE ==================== */
.pipeline-box {
  background: var(--background-light);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
}

.pipeline-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(27, 77, 62, 0.15);
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.pipeline-box h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.pipeline-box p {
  color: var(--muted);
  font-size: 1.125rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ==================== HSE CARDS ==================== */
.hse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

.hse-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.hse-card-icon {
  width: 72px;
  height: 72px;
  background: rgba(27, 77, 62, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin: 0 auto 1.5rem;
  font-size: 2rem;
}

.hse-card h3 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
}

.hse-card p {
  color: var(--muted);
  line-height: 1.7;
}

/* ==================== CAREERS ==================== */
.careers-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
  padding: 8rem 2rem 5rem;
}

.careers-hero .section-badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  opacity: 1;
}

.apply-section {
  background: var(--background-light);
  border-radius: 24px;
  padding: 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.apply-section h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.apply-section > p {
  color: var(--muted);
  margin-bottom: 2rem;
}

/* ==================== FORMS ==================== */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

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

.form-group {
  margin-bottom: 1.5rem;
}

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

.form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: white;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(27, 77, 62, 0.1);
}

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

.form-select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: white;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 3rem;
}

.form-select option {
  padding: 0.5rem;
  background: white;
  color: var(--foreground);
}

.form-submit {
  width: 100%;
  background: var(--orange);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 90, 42, 0.3);
  background: var(--orange-hover);
}

/* File Upload */
.file-upload {
  border: 2px dashed var(--border);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  background: white;
}

.file-upload:hover {
  border-color: var(--primary);
  background: rgba(27, 77, 62, 0.02);
}

.file-upload-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.file-upload p {
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.file-upload span {
  font-size: 0.875rem;
  color: var(--muted);
}

.file-upload input {
  display: none;
}

/* ==================== CONTACT ==================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
}

@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
}

.contact-item-icon {
  width: 52px;
  height: 52px;
  background: rgba(27, 77, 62, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
  font-size: 1.25rem;
}

.contact-item-label {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.contact-item-value {
  font-size: 1.125rem;
  font-weight: 500;
}

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* ==================== FOOTER ==================== */
.footer {
  background: var(--primary);
  color: white;
  padding: 4rem 2rem 2rem;
}

.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

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

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.footer-brand {
  max-width: 300px;
}

@media (max-width: 600px) {
  .footer-brand {
    max-width: 100%;
  }
}

.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.footer-description {
  opacity: 0.8;
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  opacity: 0.7;
  font-size: 0.95rem;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  opacity: 0.8;
  font-size: 0.95rem;
}

@media (max-width: 600px) {
  .footer-contact-item {
    justify-content: center;
  }
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  opacity: 0.7;
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ==================== PAGE HEADER ==================== */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 8rem 2rem 4rem;
}

.page-header .container {
  max-width: 800px;
}

.page-header .section-badge {
  background: rgba(255, 255, 255, 0.15);
  color: var(--accent);
}

.page-header .section-description {
  color: rgba(255, 255, 255, 0.8);
}

/* ==================== UTILITIES ==================== */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}


/* ==================== PIPELINE SECTION ==================== */
.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

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

.pipeline-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(27, 77, 62, 0.1);
}

.pipeline-icon {
  width: 60px;
  height: 60px;
  background: rgba(27, 77, 62, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: var(--primary);
}

.pipeline-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.pipeline-stat {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1rem 0;
}

.pipeline-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.pipeline-note {
  text-align: center;
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(27, 77, 62, 0.05);
  border-radius: 12px;
}

.pipeline-note a {
  color: var(--primary);
  font-weight: 600;
}


/* ==================== FEATURED BADGE ==================== */
.featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
}

.featured-badge:hover {
  background: #153d2f;
}

/* ==================== RECOGNITION SECTION ==================== */
.recognition-grid {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.recognition-card {
  background: white;
  border: 2px solid rgba(27, 77, 62, 0.1);
  border-radius: 16px;
  padding: 2rem 3rem;
  text-align: center;
  text-decoration: none;
  color: var(--foreground);
  transition: all 0.3s ease;
  max-width: 350px;
}

.recognition-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 30px rgba(27, 77, 62, 0.15);
  transform: translateY(-4px);
}

.recognition-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.recognition-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.recognition-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.recognition-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
}


/* ==================== ISO STANDARDS ==================== */
.iso-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 992px) {
  .iso-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.iso-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(27, 77, 62, 0.1);
}

.iso-badge {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.iso-card h3 {
  font-size: 1rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}


/* ==================== SOCIAL LINKS ==================== */
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #0077B5;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s ease;
}

.social-link:hover {
  background: #005885;
}


/* ==================== FOOTER LOGO IMAGE ==================== */
.footer-logo-img {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
}

.iso-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}


/* ==================== CTA SECTION ==================== */
.cta-section {
  background: var(--background-light);
  padding: 4rem 0;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1rem;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.cta-content p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
    text-align: center;
  }
}



/* ==================== COOKIE BANNER ==================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--background);
  color: var(--foreground);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  flex: 1;
}

.cookie-banner a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.2s;
}

.cookie-btn:hover {
  background: var(--primary-dark);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 1rem;
  }
  
  .cookie-btn {
    width: 100%;
  }
}
