/* ==========================================================================
   ABOUT SECTION STYLES - DeepLaxmi Textiles
   Two-column visual & narrative layouts, feature bullet components
   ========================================================================== */

.about-section {
  padding: var(--section-padding);
  background-color: var(--bg-warm); /* Soft saffron cream */
  position: relative;
  overflow: hidden;
}

.about-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: center;
}

/* About Visual Column styling */
.about-visual {
  position: relative;
}

.about-image-collage {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.accent-bg-box {
  position: absolute;
  top: 30px;
  left: -30px;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  background-color: transparent;
  border: 3px solid var(--secondary-gold);
  z-index: 1;
}

.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--bg-white);
}

.about-badge-card {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background-color: var(--bg-dark);
  color: var(--bg-light);
  padding: 20px;
  border-radius: var(--radius-md);
  z-index: 3;
  box-shadow: var(--shadow-lg);
  max-width: 220px;
  border-left: 4px solid var(--primary-red);
}

.about-badge-card h4 {
  font-size: 1.3rem;
  color: var(--secondary-gold);
  margin-bottom: 4px;
}

.about-badge-card p {
  font-size: 0.8rem;
  font-weight: 300;
  opacity: 0.9;
  line-height: 1.3;
}

/* About Narrative Column styling */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-pretitle {
  color: var(--secondary-gold);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.about-title {
  font-size: 2.6rem;
  color: var(--primary-red);
  font-weight: 800;
  margin-bottom: 8px;
}

.about-paragraph-primary {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
}

.about-paragraph-secondary {
  font-size: 0.98rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 1.7;
}

/* Features list */
.about-features-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(198, 40, 40, 0.08);
  color: var(--primary-red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(198, 40, 40, 0.15);
}

.feature-text h5 {
  font-size: 1.05rem;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 2px;
}

.feature-text p {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 300;
}
