/* ============================================================
   ABOUT US SECTION
   ============================================================ */

.about {
  background: var(--clr-beige);
  position: relative;
  overflow: hidden;
}

/* Top decorative wave */
.about::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 0; right: 0;
  height: 60px;
  background: var(--clr-white);
  clip-path: ellipse(55% 100% at 50% 0%);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}

/* Icon column */
.about__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about__icon-card {
  position: relative;
  width: 280px;
  height: 280px;
  background: linear-gradient(145deg, #fff 0%, var(--clr-beige) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.8);
  border: 1px solid rgba(230,218,200,.6);
}
.about__icon-card::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: calc(var(--radius-xl) + 12px);
  border: 2px dashed rgba(232,160,32,.2);
  animation: spin 20s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.about__icon-emoji {
  font-size: 4.5rem;
  line-height: 1;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.15));
  margin-bottom: .8rem;
}
.about__icon-text {
  font-size: .82rem;
  font-weight: 700;
  color: var(--clr-amber);
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* Floating badges */
.about__badge {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: .55em 1em;
  font-size: .75rem;
  font-weight: 700;
  color: var(--clr-dark);
  display: flex;
  align-items: center;
  gap: .4em;
  white-space: nowrap;
  border: 1px solid rgba(230,218,200,.5);
}
.about__badge--1 {
  top: 16px; right: -24px;
  animation: float1 4s ease-in-out infinite;
}
.about__badge--2 {
  bottom: 32px; left: -28px;
  animation: float1 5s ease-in-out infinite reverse;
}
.about__badge .badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 6px #25D366;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

/* Text column */
.about__text {}

.about__body {
  font-size: clamp(.97rem, 1.5vw, 1.07rem);
  color: var(--clr-dark-md);
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 580px;
}

/* Info pills */
.about__pills {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.about__pill {
  display: flex;
  align-items: center;
  gap: .5em;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(230,218,200,.7);
  border-radius: 99px;
  padding: .4em 1em;
  font-size: .85rem;
  font-weight: 500;
  color: var(--clr-dark-md);
  box-shadow: var(--shadow-sm);
}
.about__pill span { font-size: 1rem; }

/* Responsive */
@media (max-width: 900px) {
  .about__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about__visual { order: -1; }
  .about__icon-card { width: 220px; height: 220px; }
  .about__icon-emoji { font-size: 3.5rem; }
  .about__badge--1 { right: -10px; top: 10px; }
  .about__badge--2 { left: -10px; }
  .about__text { display: flex; flex-direction: column; align-items: center; }
  .about__pills { justify-content: center; }
  .section-sub { margin-inline: auto; }
}
