/* ==========================================================================
   Sunny Days Therapy - About / Our Approach Page Styles
   BEM naming: .sds-about-{block}__{element}--{modifier}
   ========================================================================== */

/* --------------------------------------------------------------------------
   ABOUT HERO
   -------------------------------------------------------------------------- */
.sds-about-hero {
  background: linear-gradient(125deg, #F7FBFF 0%, #DEE9F5 28%, #C5D9F0 62%, #A9C8E8 100%);
  padding: 140px 40px 80px;
  min-height: 620px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.sds-about-hero__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.sds-about-hero__content {
  flex: 1;
  min-width: 300px;
}

.sds-about-hero__title {
  color: #0A2E5C;
  font-family: Sora, sans-serif;
  font-size: 42px;
  font-weight: 700;
  margin: 0 0 20px;
  line-height: 1.1;
}

.sds-about-hero__subtitle {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 520px;
}

.sds-about-hero__buttons {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.sds-about-hero__buttons br,
.sds-about-hero__buttons p {
  display: none;
}

.sds-about-hero__btn,
.sds-about-hero__btn:hover,
.sds-about-hero__btn:visited,
.sds-about-hero__btn:active {
  display: inline-block;
  max-height: 43px;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 14px;
  font-family: Inter, sans-serif;
  box-sizing: border-box;
}

.sds-about-hero__btn--primary {
  background: #0D965C;
  color: white;
}

.sds-about-hero__btn--secondary {
  background: #FFFFFF;
  color: #0A2E5C;
  border: 1.5px solid #dddddd;
}

.sds-about-hero__image {
  flex: 1;
  min-width: 300px;
}

.sds-about-hero__image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* --------------------------------------------------------------------------
   MISSION SECTION
   -------------------------------------------------------------------------- */
.sds-about-mission {
  background: #FFFFFF;
  padding: 70px 40px;
  text-align: center;
}

.sds-about-mission__container {
  max-width: 800px;
  margin: 0 auto;
}

.sds-about-mission__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  margin: 0 auto 20px;
  font-size: 0;
  line-height: 0;
  color: transparent;
  overflow: visible;
}

.sds-about-mission__icon::before {
  content: "";
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  background: url("../images/mission-sun.png") center / contain no-repeat;
  filter: drop-shadow(0 0 10px rgba(245, 166, 35, 0.55));
}

.sds-about-mission__icon::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 213, 79, 0.7) 0%, rgba(245, 166, 35, 0.28) 42%, transparent 72%);
  pointer-events: none;
}

.sds-about-mission__icon.animated {
  animation: sds-mission-sun-spin 42s linear infinite;
}

.sds-about-mission__icon.animated::before {
  animation: sds-mission-sun-pulse 2.8s ease-in-out infinite;
}

.sds-about-mission__icon.animated::after {
  animation: sds-mission-sun-glow 2.8s ease-in-out infinite;
}

@keyframes sds-mission-sun-pulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 8px rgba(245, 166, 35, 0.45));
  }
  50% {
    transform: scale(1.1);
    filter: drop-shadow(0 0 22px rgba(255, 213, 79, 0.9));
  }
}

@keyframes sds-mission-sun-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes sds-mission-sun-glow {
  0%, 100% {
    opacity: 0.5;
    transform: scale(0.92);
  }
  50% {
    opacity: 1;
    transform: scale(1.22);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sds-about-mission__icon.animated,
  .sds-about-mission__icon.animated::before,
  .sds-about-mission__icon.animated::after {
    animation: none;
  }
}

.sds-about-mission__title {
  color: #0A2E5C;
  font-family: Sora, sans-serif;
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 20px;
}

.sds-about-mission__text {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

/* --------------------------------------------------------------------------
   WHY CHOOSE US
   -------------------------------------------------------------------------- */
.sds-about-why {
  background: #DEE9F5;
  padding: 70px 40px;
}

.sds-about-why__container {
  max-width: 1200px;
  margin: 0 auto;
}

.sds-about-why__title {
  color: #0A2E5C;
  font-family: Sora, sans-serif;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 40px;
}

.sds-about-why__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.sds-about-why__card {
  flex: 1;
  min-width: 240px;
  background: white;
  border-radius: 12px;
  padding: 30px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.sds-about-why__card.animated:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(10, 46, 92, 0.1);
}

.sds-about-why__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #DEE9F5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #2970C5;
  margin-bottom: 16px;
}

.sds-about-why__card-title {
  font-family: Sora, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #0A2E5C;
  margin: 0 0 10px;
}

.sds-about-why__card-text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* --------------------------------------------------------------------------
   OUR PROCESS
   -------------------------------------------------------------------------- */
.sds-about-process {
  background: #FFFFFF;
  padding: 70px 40px;
}

.sds-about-process__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}

.sds-about-process__image {
  flex: 1;
  min-width: 300px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.sds-about-process__image img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

.sds-about-process__content {
  flex: 1;
  min-width: 300px;
}

.sds-about-process__title {
  color: #0A2E5C;
  font-family: Sora, sans-serif;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 30px;
}

.sds-about-process__steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sds-about-process__step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.sds-about-process__step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0D965C;
  color: white;
  font-family: Sora, sans-serif;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sds-about-process__step-title {
  font-family: Sora, sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #0A2E5C;
  margin: 0 0 4px;
}

.sds-about-process__step-text {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* --------------------------------------------------------------------------
   CORE VALUES
   -------------------------------------------------------------------------- */
.sds-about-values {
  background: #F8FAFB;
  padding: 70px 40px;
}

.sds-about-values__container {
  max-width: 1200px;
  margin: 0 auto;
}

.sds-about-values__title {
  color: #0A2E5C;
  font-family: Sora, sans-serif;
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 40px;
}

.sds-about-values__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.sds-about-values__item {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  padding: 30px 24px;
  background: white;
  border-radius: 12px;
  border-top: 3px solid #2970C5;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.sds-about-values__item.animated:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(10, 46, 92, 0.1);
}

.sds-about-values__item-title {
  font-family: Sora, sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #0A2E5C;
  margin: 0 0 10px;
}

.sds-about-values__item-text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* --------------------------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .sds-about-hero {
    padding: 40px 20px 40px;
    min-height: 0;
  }

  .sds-about-mission,
  .sds-about-why,
  .sds-about-process,
  .sds-about-values {
    padding: 70px 20px;
  }

  .sds-about-hero__title {
    font-size: 24px;
  }

  .sds-about-mission__title,
  .sds-about-why__title,
  .sds-about-process__title,
  .sds-about-values__title {
    font-size: 20px;
  }

  .sds-about-hero__container {
    flex-direction: column;
  }

  .sds-about-why__grid {
    flex-direction: column;
  }

  .sds-about-process__container {
    flex-direction: column;
  }

  .sds-about-values__grid {
    flex-direction: column;
    align-items: center;
  }

  .sds-about-values__item {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sds-about-why__card,
  .sds-about-values__item {
    transition: none;
  }

  .sds-about-why__card.animated:hover,
  .sds-about-values__item.animated:hover {
    transform: none;
  }
}
