/* =============================================
   About Us page – styles only (shared layout in style.css)
   ============================================= */

/* ===== PAGE HERO ===== */
.au-hero {
  position: relative;
  margin: 13px 16px 0;
  border-radius: 30px;
  overflow: hidden;
  height: 440px;
  background: url('https://cdn.codia.ai/figma/CjSKfsvHxed5WQZqe4sla3/img-fdda43c98d45c028.png') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.au-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 30px;
}

.au-hero-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 80px 20px 40px;
  text-align: center;
}

.au-breadcrumb {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.6px;
}

.au-breadcrumb a {
  color: #ffffff;
  transition: color 0.2s;
}

.au-breadcrumb a:hover {
  color: var(--orange);
}

/* ===== PAGE CONTENT ===== */
.au-page-content {
  margin: 0 auto;
  padding: 0 40px;
}

/* ===== ABOUT SECTION ===== */
.au-about-section {
  padding: 80px 0 60px;
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.au-about-left {
  flex: 1;
  min-width: 0;
}

.au-about-right {
  flex: 0 0 566px;
  position: relative;
}

.au-about-tag {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  background: var(--orange-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  display: inline-block;
}

.au-about-heading {
  margin-bottom: 13px;
  letter-spacing: 0.8px;
}

.au-about-text {
  margin-bottom: 20px;
  letter-spacing: 0.44px;
}

.au-about-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--orange-gradient);
  border-radius: 10px;
  color: #ffffff;
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.66px;
  text-decoration: none;
  margin-top: 10px;
  transition: opacity 0.2s;
}

.au-about-cta:hover {
  opacity: 0.9;
}

.au-about-features {
  display: flex;
  gap: 60px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.au-about-feature {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.au-feature-divider {
  width: 240px;
  max-width: 100%;
  height: 1px;
  background: rgba(177, 159, 111, 0.6);
  margin-bottom: 7px;
}

.au-feature-icon {
  height: 52px;
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 8px;
}

.au-feature-label {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.44px;
  color: rgba(18, 18, 18, 0.9);
}

.au-about-image-wrap {
  position: relative;
  width: 566px;
  height: 680px;
  max-width: 100%;
}

.au-about-dots-img {
  position: absolute;
  top: 0;
  left: -40px;
  width: 260px;
  height: 130px;
  object-fit: contain;
  z-index: 1;
  opacity: 0.8;
}

.au-about-main-img {
  position: absolute;
  top: 30px;
  left: 0;
  width: 566px;
  max-width: 100%;
  height: 640px;
  object-fit: cover;
  border-radius: 10px;
  z-index: 2;
}

.au-about-badge-img {
  position: absolute;
  bottom: -17px;
  left: -59px;
  width: 200px;
  height: 200px;
  object-fit: contain;
  z-index: 3;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.25));
}

/* ===== OUR BUSINESS ===== */
.au-business-section {
  padding: 40px 0;
  text-align: center;
}

.au-business-tag {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 1.04px;
  text-transform: uppercase;
  background: var(--orange-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  display: inline-block;
}

.au-business-heading {
  margin-bottom: 48px;
  letter-spacing: 0.8px;
}

.au-business-tabs {
  display: flex;
  justify-content: center;
  gap: 45px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.au-tab-btn {
  height: 55px;
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 400;
  color: rgba(18, 18, 18, 0.8);
  background: rgba(18, 18, 18, 0.01);
  border: 0.44px solid rgba(18, 18, 18, 0.4);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}

.au-tab-btn.active {
  background: #fff9f2;
  border-color: rgba(216, 147, 66, 0.4);
  font-weight: 600;
  color: #121212;
}

.au-tab-btn:hover:not(.active) {
  background: rgba(18, 18, 18, 0.04);
}

.au-tab-panel {
  display: none;
}

.au-tab-panel.active {
  display: block;
}

.au-mission-area {
  display: flex;
  align-items: center;
  gap: 40px;
}

.au-mission-area--centered {
  justify-content: center;
  text-align: center;
}

.au-mission-sidebar {
  flex: 0 0 auto;
  min-width: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.au-mission-label-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  border-left: 1px solid rgba(193, 118, 25, 1);
  border-right: 1px solid rgba(193, 118, 25, 1);
}

.au-mission-label {
  display: block;
  white-space: nowrap;
  transform: rotate(-90deg);
  font-family: 'Clash Grotesk', sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: rgba(18, 18, 18, 1);
}

.au-mission-center {
  flex: 0 0 440px;
}

.au-mission-circle-img {
  max-width: 100%;
  object-fit: cover;
  display: block;
}

.au-mission-right {
  flex: 1;
  text-align: center;
  padding: 0 20px;
}

.au-mission-right--narrow {
  max-width: 800px;
  margin: 0 auto;
}

.au-mission-text {
  font-family: 'Clash Grotesk', sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.44px;
  color: rgba(18, 18, 18, 0.9);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .au-about-section {
    flex-direction: column;
    gap: 40px;
  }

  .au-about-right {
    flex: none;
    width: 100%;
  }

  .au-about-image-wrap {
    width: 100%;
    height: 420px;
  }

  .au-about-main-img {
    width: 100%;
    height: 400px;
  }

  .au-about-dots-img {
    display: none;
  }

  .au-mission-area {
    flex-wrap: wrap;
    justify-content: center;
  }

  .au-mission-center {
    flex: 0 0 320px;
  }

  .au-mission-circle-img {
    width: 320px;
    height: 320px;
  }
}

@media (max-width: 768px) {
  .au-hero {
    margin: 10px 10px 0;
    height: 300px;
    border-radius: 20px;
  }

  .au-breadcrumb {
    font-size: 16px;
  }

  .au-page-content {
    padding: 0 20px;
  }

  .au-about-features {
    flex-direction: column;
    gap: 24px;
  }

  .au-business-tabs {
    gap: 6px;
  }

  .au-tab-btn {
    flex: 0 0 200px;
    font-size: 16px;
  }
}
