/* =======================================
   ABOUT PAGE COMPONENT STYLES
======================================= */

.about-hero {
  padding: 80px 5% 60px;
  background: linear-gradient(135deg, #faf9f6 0%, #ffffff 50%, #fdf8ee 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  position: relative;
  overflow: hidden;
  border-bottom: 1.5px solid rgba(17, 17, 17, 0.05);
}

.about-hero-left {
  flex: 1.2;
}

.about-hero-tag {
  display: inline-block;
  background: rgba(17, 17, 17, 0.06);
  color: #111111;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.about-hero-left h1 {
  font-size: 52px;
  font-weight: 900;
  color: #111111;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 18px;
}

.about-hero-left h1 span {
  color: #d4af37;
}

.about-hero-desc {
  font-size: 16.5px;
  line-height: 1.85;
  color: #444;
  margin-bottom: 14px;
}

.about-hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-hero-right img {
  width: 100%;
  max-width: 440px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(17, 17, 17, 0.08);
  border: 1px solid rgba(17, 17, 17, 0.03);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
  transition: transform 0.4s ease;
}

.about-hero-right img:hover {
  transform: translateY(-5px);
}

/* =======================================
   ABOUT CONTENT BLOCKS
======================================= */

.about-section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 40px;
  position: relative;
}

.about-section-title span {
  color: #d4af37;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 60px;
}

.about-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 6px 24px rgba(17, 17, 17, 0.03);
  border: 1px solid rgba(17, 17, 17, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.08);
}

.about-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.08);
  color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.about-card h3 {
  font-size: 22px;
  color: #111111;
  margin-bottom: 14px;
  font-weight: 750;
}

.about-card p {
  color: #555;
  line-height: 1.8;
  font-size: 15.5px;
}

/* =======================================
   CORE BELIEF QUOTE CONTAINER
======================================= */

.about-belief-box {
  background: linear-gradient(135deg, #1f1c18 0%, #0c0b0a 100%);
  color: #fff;
  border-radius: 22px;
  padding: 50px 40px;
  text-align: center;
  margin: 60px 0;
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.12);
  position: relative;
  overflow: hidden;
}

.about-belief-box::after {
  content: "“";
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 150px;
  color: rgba(255, 255, 255, 0.06);
  font-family: serif;
}

.about-belief-box h3 {
  font-size: 28px;
  font-weight: 800;
  color: #d4af37;
  margin-bottom: 16px;
}

.about-belief-box p {
  font-size: 20px;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  font-weight: 500;
  color: #c4d1df;
}

/* =======================================
   THREE PILLARS SECTION
======================================= */

.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 30px;
}

.about-pillar-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 30px;
  border: 1px solid rgba(17, 17, 17, 0.04);
  box-shadow: 0 6px 20px rgba(17, 17, 17, 0.02);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border-top: 5px solid #111111;
}

.about-pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.08);
}

.about-pillar-card:nth-child(2) { border-top-color: #d4af37; }
.about-pillar-card:nth-child(3) { border-top-color: #e07000; }

.about-pillar-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.08);
  color: #d4af37;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 20px;
  transition: background 0.3s, color 0.3s;
}

.about-pillar-card:nth-child(2) .about-pillar-icon { background: rgba(212, 175, 55, 0.10); color: #d4af37; }
.about-pillar-card:nth-child(3) .about-pillar-icon { background: #fff3e0; color: #e07000; }

.about-pillar-card:hover .about-pillar-icon {
  background: #111111;
  color: #fff;
}
.about-pillar-card:nth-child(2):hover .about-pillar-icon { background: #d4af37; color: #fff; }
.about-pillar-card:nth-child(3):hover .about-pillar-icon { background: #e07000; color: #fff; }

.about-pillar-card h4 {
  font-size: 18px;
  color: #111111;
  margin-bottom: 12px;
  font-weight: 800;
}

.about-pillar-card p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #555;
}

/* =======================================
   RESPONSIVE — ABOUT PAGE
======================================= */

@media(max-width: 900px) {
  .about-hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 5%;
    gap: 30px;
  }
  
  .about-hero-left, .about-hero-right {
    width: 100%;
  }

  .about-hero-left h1 {
    font-size: 38px;
  }

  .about-hero-right img {
    max-width: 380px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-pillars-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .about-belief-box p {
    font-size: 17px;
  }
}

/* =======================================
   ENHANCED MICRO-ANIMATIONS (about page)
======================================= */

/* ── Hero heading gradient sweep ───── */
.about-hero-left h1 {
  animation: fadeInUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
.about-hero-desc {
  animation: fadeInUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both;
}

/* ── Hero tag shimmer badge ─────────── */
.about-hero-tag {
  animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
  position: relative;
  overflow: hidden;
}
.about-hero-tag::after {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(17,17,17,0.07), transparent);
  animation: shimmerSweep 2.5s ease-in-out infinite;
}

/* ── About cards icon hover ─────────── */
.about-card i {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.3s ease, color 0.3s ease;
}
.about-card:hover i {
  transform: rotate(18deg) scale(1.2);
}
.about-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease;
}
.about-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 14px 36px rgba(17, 17, 17, 0.12);
}

/* ── Pillar cards icon rotate ────────── */
.about-pillar-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease;
}
.about-pillar-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 14px 36px rgba(17, 17, 17, 0.12);
}
.about-pillar-card i {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.about-pillar-card:hover i {
  transform: rotate(20deg) scale(1.2);
}

/* ── Belief-box border glow pulse ─────── */
.about-belief-box {
  animation: beliefGlow 3.5s ease-in-out infinite;
}
@keyframes beliefGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.12), 0 8px 40px rgba(17,17,17,0.07); }
  50%       { box-shadow: 0 0 0 8px rgba(212,175,55,0), 0 8px 40px rgba(212,175,55,0.08); }
}

/* ── Section title animated underline ─── */
.about-section-title::after {
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #111111, #d4af37);
  border-radius: 2px;
  margin: 10px auto 0;
  transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-section-title.visible::after {
  width: 80px;
}

