/* ── ABOUT PAGE STYLES (Fluid Scaling System) ── */

/* Helper Utility Classes */
.mt-4 { margin-top: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }

/* ── SECTIONS ── */
.section {
  padding: var(--space-section) 0;
}
.section-offwhite { background-color: var(--color-offwhite); }
.section-ice { background-color: var(--color-ice); }

/* ── COMPACT HERO SECTION (Fluid Scaling) ── */
.about-hero.page-hero {
  background: radial-gradient(circle at 15% 50%, rgba(16, 185, 129, 0.12) 0%, transparent 55%),
              linear-gradient(135deg, #022c22 0%, #064e3b 60%, #022c22 100%);
  padding: clamp(140px, 12vw, 180px) 0 var(--space-lg);
  min-height: clamp(350px, 40vw, 500px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: white;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(109, 191, 62, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(109, 191, 62, 0.04) 1px, transparent 1px);
  background-size: clamp(30px, 4vw, 50px) clamp(30px, 4vw, 50px);
  mask-image: radial-gradient(circle at 15% 50%, black, transparent 80%);
  pointer-events: none;
  z-index: 1;
}

.radial-glow {
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translate(-50%, -50%);
  width: clamp(400px, 50vw, 800px);
  height: clamp(400px, 50vw, 800px);
  background: radial-gradient(circle, rgba(109, 191, 62, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.about-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-compact-title {
  font-size: var(--fs-hero) !important;
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: var(--space-sm) !important;
  color: white;
  line-height: 1.1 !important;
}

.hero-compact-desc {
  font-size: var(--fs-base) !important;
  color: rgba(255, 255, 255, 0.7) !important;
  max-width: clamp(320px, 80%, 600px) !important;
  margin-bottom: var(--space-md) !important;
  line-height: 1.6 !important;
}

.hero-tags {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--color-lime);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.9;
}

.about-hero .breadcrumb {
  margin-bottom: var(--space-sm);
  color: var(--color-lime);
  font-size: var(--fs-xs);
}

/* ── STORY SECTION ── */
.about-story {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(320px, 45vw, 600px), 1fr));
  gap: var(--space-xl);
  align-items: center;
}

.about-story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}

.about-story-img img {
  width: 100%;
  height: clamp(320px, 45vh, 550px);
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.about-story-img:hover img {
  transform: scale(1.03);
}

.story-highlights {
  margin-top: var(--space-md);
}

.story-highlights p:first-child {
  font-weight: 700;
  color: var(--color-teal-deep);
  margin-bottom: var(--space-sm);
  font-size: var(--fs-base);
}

.story-highlights ul {
  list-style: none;
  padding: 0;
  margin-bottom: var(--space-md);
}

.story-highlights li {
  position: relative;
  padding-left: var(--space-5);
  margin-bottom: var(--space-2);
  font-size: var(--fs-base);
  color: var(--color-text);
  font-weight: 500;
}

.story-highlights li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-lime);
  font-weight: 800;
}

.story-highlights p:last-child {
  font-weight: 400;
  color: var(--color-subtext);
  font-style: italic;
  border-left: 3px solid var(--color-lime);
  padding-left: var(--space-4);
  font-size: var(--fs-base);
}

/* Story Stats */
.story-stats {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--color-teal-deep);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--color-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: var(--space-1);
}

/* ── VISUAL STORY GRID ── */
.visual-story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(320px, 40vw, 500px), 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.visual-story-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.visual-img-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.visual-img-card img {
  width: 100%;
  height: clamp(200px, 20vh, 300px);
  object-fit: cover;
  transition: transform var(--transition-normal);
}

.visual-img-card:hover img {
  transform: scale(1.05);
}

.visual-img-card.tall {
  grid-row: span 2;
}

.visual-img-card.tall img {
  height: 100%;
}

.expertise-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── CAPABILITIES GRID ── */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.capability-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-fast);
}

.capability-item:hover {
  transform: translateX(5px);
  border-color: var(--color-lime);
}

.capability-item span {
  width: 8px;
  height: 8px;
  background: var(--color-lime);
  border-radius: 50%;
  flex-shrink: 0;
}

.capability-item p {
  font-weight: 600;
  color: var(--color-teal-deep);
  font-size: var(--fs-base);
}

/* ── SERVE & VISION SECTION ── */
.serve-vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.who-serve-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.serve-card {
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  text-align: center;
  transition: all var(--transition-normal);
}

.serve-card:hover {
  border-color: var(--color-lime);
  background: var(--color-ice);
  transform: translateY(-3px);
}

.serve-card h4 {
  font-family: var(--font-display);
  color: var(--color-teal-deep);
  font-size: var(--fs-base);
  font-weight: 700;
}

/* Vision/Mission cards */
.vision-mission {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.vm-card {
  padding: var(--space-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-top: 4px solid var(--color-lime);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.vm-card h3 {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  color: var(--color-teal-deep);
  margin-bottom: var(--space-sm);
}

.vm-card p {
  font-size: var(--fs-base);
  line-height: 1.6;
}

/* ── MANUFACTURE GRID ── */
.manufacture-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(250px, 30%, 350px), 1fr));
  gap: var(--space-md);
}

.manufacture-item {
  padding: var(--space-lg);
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-normal);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.manufacture-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-lime);
}

.manufacture-item .icon {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: var(--space-md);
  background: var(--color-ice);
  width: clamp(60px, 8vw, 80px);
  height: clamp(60px, 8vw, 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: transform var(--transition-normal);
}

.manufacture-item:hover .icon {
  transform: scale(1.1) rotate(5deg);
}

.manufacture-item h4 {
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.manufacture-item p {
  font-size: var(--fs-sm);
  color: var(--color-subtext);
  line-height: 1.5;
}

/* ── WHY & QUALITY SECTION ── */
.why-quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(clamp(320px, 45vw, 600px), 1fr));
  gap: var(--space-xl);
  align-items: start;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.why-item {
  display: flex;
  gap: var(--space-md);
  align-items: center;
}

.why-icon {
  width: clamp(28px, 3vw, 36px);
  height: clamp(28px, 3vw, 36px);
  background: var(--color-lime);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-item p {
  font-size: var(--fs-base);
}

/* Quality Grid */
.quality-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.quality-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: border-color var(--transition-normal);
}

.quality-item:hover {
  border-color: var(--color-lime);
}

.quality-num {
  font-family: var(--font-mono);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 500;
  color: var(--color-lime);
  opacity: 0.6;
  flex-shrink: 0;
  line-height: 1;
}

.quality-item h4 {
  font-family: var(--font-display);
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.quality-item p {
  font-size: var(--fs-sm);
  color: var(--color-subtext);
  line-height: 1.6;
}

/* ── CTA SECTION ── */
.cta-banner {
  background: var(--grad-hero);
  padding: var(--space-xl) 0;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  font-size: var(--fs-xl);
  margin-bottom: var(--space-sm);
  color: white;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: var(--fs-lg);
  margin-bottom: var(--space-md);
}

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

.btn-white {
  background: white !important;
  color: var(--color-teal-deep) !important;
}

.btn-white:hover {
  background: var(--color-offwhite) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1) !important;
  color: white !important;
  border: 1.5px solid var(--color-lime) !important;
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: var(--color-lime) !important;
  color: white !important;
}

/* ── MAP ── */
.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.map-embed iframe {
  width: 100%;
  height: clamp(350px, 45vh, 550px);
  display: block;
  border: none;
}

/* ── CTA BUTTONS ── */
.cta-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-lg);
  flex-wrap: wrap;
  margin-bottom: var(--space-4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1) !important;
  color: var(--color-white) !important; /* Changed from lime for better readability on green */
  border: 1.5px solid var(--color-lime) !important;
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: var(--color-lime) !important;
  color: white !important;
}

/* ── RESPONSIVE OVERRIDES (Minimal) ── */
@media (max-width: 1024px) {
  .serve-vision-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-hero.page-hero {
    padding: clamp(120px, 15vw, 140px) 0 var(--space-lg);
    text-align: center;
  }
  .hero-compact-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .stat-item {
    align-items: center;
    width: 100%;
  }
  .story-stats {
    justify-content: center;
  }
}

#main p {
  text-align: justify;
}

