/* About Us Page Styles */

/* Root container */
.about-us-page {
  background: var(--background);
}

/* Shared helpers */
.about-muted {
  color: var(--muted-foreground);
}
.about-text-danger {
  color: var(--pet-red);
}
.about-text-success {
  color: var(--pet-green);
}

/* Buttons */
.about-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-size: 0.95rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s,
    transform 0.2s;
}
.about-btn:hover {
  transform: translateY(-1px);
}
.about-btn-primary {
  background: var(--pet-orange);
  color: #fff;
}
.about-btn-primary:hover {
  background: var(--hover-pet-orange);
}
.about-btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
}
.about-btn-outline:hover {
  color: var(--primary);
  background: var(--pet-cream);
  border-color: var(--pet-orange);
}
.about-btn-icon {
  width: 1rem;
  height: 1rem;
}

/* Section headers */
.about-section-header {
  text-align: center;
  margin: 0 0 4rem 0;
}
.about-section-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
  margin-top: 0 !important;
}
.about-section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 56rem;
  margin: 0 auto;
}

/* Why section */
.about-why-section {
  padding: 5rem 0;
  background: var(--background);
}
.about-why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .about-why-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.about-card {
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--background);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.about-card-danger {
  background: var(--bg-pet-red);
  border-color: var(--bg-pet-red);
}
.about-card-success {
  background: var(--bg-pet-green);
  border-color: rgba(22, 162, 73, 0.2);
}
.about-card-content {
  padding: 2rem;
}
.about-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 0 !important;
}
.about-bullet-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  padding-left: 0;
  margin: 0;
}
.about-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.about-bullet-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  margin-top: 0.4rem;
  background: var(--border);
}
.about-bullet-dot-danger {
  background: var(--pet-red);
}
.about-check-list {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  padding-left: 0;
  margin: 0;
}
.about-check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.about-check-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--pet-green);
  margin-top: 0.1rem;
}

/* Mission */
.about-mission-section {
  padding: 5rem 0;
}
.about-core-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .about-core-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .about-core-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.about-core-card {
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: linear-gradient(
    to bottom right,
    var(--background),
    var(--pet-cream-light)
  );
  padding: 2rem;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.about-core-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.about-core-icon-wrapper {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 9999px;
  background: rgba(227, 132, 69, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-core-icon {
  width: 2rem;
  height: 2rem;
  color: var(--pet-orange);
}
.about-core-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* Timeline */
.about-timeline-section {
  padding: 5rem 0;
  background: linear-gradient(
    to bottom right,
    rgba(248, 242, 227, 0.3),
    var(--background)
  );
}
.about-timeline {
  position: relative;
}
.about-timeline-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: rgba(227, 132, 69, 0.2);
  display: none;
}
@media (min-width: 1024px) {
  .about-timeline-line {
    display: block;
  }
}
.about-timeline-items {
  display: grid;
  gap: 2rem;
}
.about-timeline-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-timeline-item {
    grid-template-columns: 1fr auto 1fr;
  }
}
.about-timeline-item-reverse {
  direction: rtl;
}
@media (min-width: 1024px) {
  .about-timeline-item-reverse > * {
    direction: ltr;
  }
}
.about-timeline-card {
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--background);
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.about-timeline-year {
  color: var(--pet-orange);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.about-timeline-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  margin-top: 0 !important;
}
.about-timeline-dot {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: var(--pet-orange);
  border: 4px solid var(--background);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: none;
}
@media (min-width: 1024px) {
  .about-timeline-dot {
    display: block;
  }
}

/* Services */
.about-services-section {
  padding: 5rem 0;
}
.about-services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .about-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about-service-card {
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: linear-gradient(
    to bottom right,
    var(--background),
    rgba(96, 124, 138, 0.06)
  );
  padding: 2rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}
.about-service-card:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}
.about-service-icon-wrapper {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  background: var(--bg-pet-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-service-icon {
  width: 2rem;
  height: 2rem;
  color: #2e86de;
}
.about-service-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  margin-top: 0 !important;
}

/* Promise */
.about-promise-section {
  padding: 5rem 0;
  background: linear-gradient(
    to bottom right,
    rgba(22, 162, 73, 0.1),
    rgba(46, 134, 222, 0.1)
  );
  text-align: center;
}
.about-promise-wrapper {
  max-width: 64rem;
  margin: 0 auto;
}
.about-promise-quote {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  color: var(--pet-orange);
  margin-bottom: 1.5rem;
  font-family: "Caveat", cursive;
}
@media (min-width: 1024px) {
  .about-promise-quote {
    font-size: clamp(1.875rem, 3vw, 1.875rem);
  }
}
.about-promise-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}
.about-promise-description strong {
  font-weight: 600;
  color: var(--pet-gray);
}
.about-transparency-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
  border-radius: 0.75rem;
  border: 1px solid rgba(227, 132, 69, 0.2);
  padding: 2rem;
  margin: 0 auto;
  max-width: 48rem;
  text-align: left;
}
.about-transparency-card .about-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}
.about-transparency-card .about-muted {
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}
.about-transparency-card .about-muted:last-child {
  margin-bottom: 0;
}
.about-orbit {
  position: relative;
  width: 16rem;
  height: 16rem;
  margin: 0 auto;
}
.about-orbit-pulse {
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: linear-gradient(
    to bottom right,
    rgba(227, 132, 69, 0.2),
    rgba(22, 162, 73, 0.2)
  );
  animation: about-pulse 2s ease-in-out infinite;
}
.about-orbit-center {
  position: absolute;
  inset: 1rem;
  border-radius: 9999px;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
@keyframes about-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

/* CTA */
.about-cta-section {
  padding: 5rem 0;
}
.about-cta-wrapper {
  text-align: center;
}
.about-cta-description {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
}
.about-cta-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
