/* ==========================================================================
   About Section
   Monotics WordPress Theme
   ========================================================================== */

.about {
  background: var(--navy);
}

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

/* --- About Text --- */
.about-text .section-title {
  margin-bottom: 24px;
}

.about-desc {
  color: var(--gray);
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 32px;
}

/* --- About Features --- */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.feat-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(0, 200, 255, 0.08);
  border: 1px solid rgba(0, 200, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--cyan);
}

/* SVG icon support */
.feat-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 1.5;
}

.feat-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.feat-text h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.feat-text p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

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

.about-img-stack {
  position: relative;
  height: 480px;
}

/* --- About Main Card --- */
.about-card-main {
  position: absolute;
  top: 0;
  left: 0;
  right: 60px;
  background: var(--card-bg) url('../../images/about/about-main.webp') center top / cover no-repeat;
  border: var(--border-cyan-light);
  border-radius: 16px;
  height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  overflow: hidden;
}

.about-card-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 87, 255, 0.08), rgba(0, 200, 255, 0.04));
}

.about-card-main::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(13, 30, 56, 0.3) 0%, rgba(5, 13, 26, 0.85) 100%);
  z-index: 0;
}

.about-card-main > * {
  position: relative;
  z-index: 1;
}

/* --- About Card Overlay --- */
.about-card-main-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-card-tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 200, 255, 0.1);
  border: 1px solid rgba(0, 200, 255, 0.2);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  color: var(--cyan);
  width: fit-content;
}

.about-card-label {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.about-card-sub {
  font-size: 13px;
  color: var(--gray);
  position: relative;
  z-index: 1;
}

/* --- About Float Card --- */
.about-card-float {
  position: absolute;
  bottom: 20px;
  right: 0;
  background: var(--card-bg);
  border: var(--border-cyan-medium);
  border-radius: 12px;
  padding: 18px 22px;
  width: auto;
  min-width: 200px;
  box-shadow: var(--shadow-card);
}

.float-num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
  white-space: nowrap;
}

.float-label {
  font-size: 12px;
  color: var(--gray);
  margin-top: 4px;
}

/* --- About Image (real photo) --- */
.about-img-real {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
