/**
 * About Section - Premium GSAP Implementation
 * "Calm Machinery" Design System
 * Updated: Green brand color integration
 */

.about-premium {
  position: relative;
  padding: 50px 0 60px;
  background-color: var(--green-surface-subtle, #f3faf5);
  overflow: hidden;
}

.about-premium .section-title {
  padding-bottom: 30px;
}

.about-premium .container {
  position: relative;
  z-index: 2;
}

/* --- Layout Grid --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* --- Typography & Text Block --- */
.about-text-block {
  opacity: 1;
  transform: translateY(0);
}

.about-label {
  display: inline-block;
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #888;
  margin-bottom: 24px;
  position: relative;
  padding-left: 0;
}

/* Divider Line */
.about-divider {
  width: 60px;
  height: 2px;
  background-color: var(--green-primary, #2d6a4f);
  margin-bottom: 32px;
  transform: scaleX(1);
  transform-origin: left;
}

.about-heading {
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  font-weight: 300;
  line-height: 1.25;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.about-heading strong {
  font-weight: 600;
  color: #0d0d0d;
}

.about-description {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 0;
  max-width: 520px;
}

/* Intro Paragraph */
.about-intro {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 14px;
}

.about-intro .company-name {
  color: var(--green-primary, #2d6a4f);
  font-weight: 600;
}

/* Client Focus Paragraph */
.about-client-focus {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

/* Value Propositions Container */
.value-props-container {
  margin: 20px 0;
  padding: 18px;
  background: linear-gradient(135deg, var(--green-100, #e9f5ec) 0%, var(--green-50, #f3faf5) 100%);
  border-radius: 10px;
  border: 1px solid var(--green-200, #d8f3dc);
}

.value-prop-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
}

.value-prop-item:not(:last-child) {
  border-bottom: 1px solid var(--green-200, #d8f3dc);
}

.value-prop-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--green-primary, #2d6a4f);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.value-prop-item:hover .value-prop-icon {
  background: var(--green-primary-hover, #1b4332);
}

.value-prop-icon i {
  font-size: 16px;
  color: #fff;
}

.value-prop-content h4 {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-900, #1b4332);
  margin: 0 0 4px 0;
  letter-spacing: 0.2px;
}

.value-prop-content p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* Closing Section */
.about-closing {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--green-200, #d8f3dc);
}

.about-closing p {
  font-size: 13px;
  color: var(--stone-500, #737373);
  line-height: 1.6;
  font-style: italic;
  margin: 0;
}

/* CTA Button */
.about-cta {
  margin-top: 24px;
}

.about-cta .btn-get-started {
  background: var(--green-primary, #2d6a4f);
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: all 0.25s ease;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(45, 106, 79, 0.25);
}

.about-cta .btn-get-started:hover {
  background: var(--green-primary-hover, #1b4332);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 106, 79, 0.35);
}

/* --- About Image (Right Side) --- */
.about-image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-main-image {
  width: 100%;
  max-width: 1008px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 991px) {
  .about-image-wrapper {
    justify-content: center;
  }

  .about-main-image {
    max-width: 840px;
  }
}

@media (max-width: 576px) {
  .about-main-image {
    max-width: 672px;
  }
}
