:root {
  --fl-pink: #e05699;
  --fl-light-pink: #fdf2f6;
  --fl-dark: #1b1b36;
  --fl-text: #666666;
  --fl-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

body {
  background-color: #ffffff;
  font-family: var(--fl-font-family);
  color: var(--fl-text);
}

.about-hero {
  position: relative;
  padding: 40px 0 20px 0;
  overflow: hidden;
  background-color: #ffffff;
}

.about-hero-blob {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 60%;
  height: 120%;
  z-index: 0;
}

.about-hero-blob svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-floating-heart {
  position: absolute;
  z-index: 1;
  opacity: 0.6;
  animation: floatHeart 6s ease-in-out infinite;
}

.heart-1 {
  top: 35%;
  left: 48%;
  transform: rotate(-15deg);
}

.heart-2 {
  top: 55%;
  left: 52%;
  opacity: 0.4;
  animation-delay: 2s;
  transform: rotate(10deg);
}

@keyframes floatHeart {
  0% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-20px) scale(1.1);
  }

  100% {
    transform: translateY(0px) scale(1);
  }
}

.about-hero .container {
  position: relative;
  z-index: 1;
}

/* Breadcrumb */
.about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fl-font-family);
  font-size: 0.85rem;
  font-weight: 500;
  color: #666;
}

.about-breadcrumb a {
  color: #1b1b36;
  text-decoration: none;
  transition: color 0.3s ease;
}

.about-breadcrumb a:hover {
  color: var(--fl-pink);
}

.about-breadcrumb .separator {
  color: #aaa;
  display: flex;
  align-items: center;
}

.about-breadcrumb .current {
  color: #666;
}

/* Typography & Elements */
.about-subtitle {
  color: var(--fl-pink);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
}

.about-title {
  color: #0b1a40;
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 25px;
}

.about-heart-divider {
  display: flex;
  align-items: center;
  gap: 15px;
  width: max-content;
}

.about-heart-divider .line {
  height: 2px;
  width: 60px;
  background-color: var(--fl-pink);
}

.about-heart-divider svg {
  color: var(--fl-pink);
  width: 18px;
  height: 18px;
}

.about-description {
  font-family: var(--fl-font-family);
  font-size: 1.15rem;
  line-height: 1.8;
  color: #444;
  max-width: 95%;
}

.hero-glow-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(235, 77, 128, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 1;
  border-radius: 50%;
}

.hero-floating-badge {
  position: absolute;
  bottom: 10%;
  left: -10px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(11, 26, 64, 0.08);
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.6);
  animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

.about-hero-actions .btn-fl-primary {
  background-color: var(--fl-pink);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 10px 20px rgba(235, 77, 128, 0.15);
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
}

.about-hero-actions .btn-fl-primary:hover {
  background-color: #d13d6a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(235, 77, 128, 0.25);
  text-decoration: none !important;
}

.about-hero-actions .btn-fl-outline {
  background-color: #ffffff;
  color: var(--fl-pink);
  border: 1px solid var(--fl-pink);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.about-hero-actions .btn-fl-outline:hover {
  background-color: #fff4f7;
  color: var(--fl-pink);
}

.about-hero-image {
  max-height: 500px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  margin-right: -40px;
}

@media (max-width: 991px) {
  .about-hero-blob {
    width: 100%;
    right: 0;
    top: 20%;
    opacity: 0.5;
  }

  .about-title {
    font-size: 2.8rem;
  }

  .about-hero-image {
    margin-right: 0;
    max-height: 500px;
    margin-top: 30px;
  }
}

.about-divider-center {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.about-divider-center::before,
.about-divider-center::after {
  content: '';
  height: 2px;
  width: 50px;
  background-color: var(--fl-pink);
}

.about-divider-center::before {
  margin-right: 15px;
}

.about-divider-center::after {
  margin-left: 15px;
}

.about-mission-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 45px 40px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.about-mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--fl-pink), #ffb3c6);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.about-mission-card:hover::before {
  opacity: 1;
}

.about-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #fdf2f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fl-pink);
  margin-bottom: 0;
  box-shadow: 0 4px 15px rgba(235, 77, 128, 0.15);
  transition: transform 0.4s ease;
}

.about-mission-card:hover .about-icon-circle {
  transform: scale(1.05);
}

.about-icon-circle svg {
  width: 32px;
  height: 32px;
  stroke: var(--fl-pink);
}

.about-stats-banner {
  background: #fcf2f5;
  border-radius: 16px;
  padding: 30px 40px;
  margin: 60px 0;
  box-shadow: none;
  color: #0b1a40;
}

.about-stats-banner svg {
  stroke: var(--fl-pink);
}

.about-stat-number {
  color: #0b1a40;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 0px;
  line-height: 1.2;
}

.about-stat-text {
  color: #555;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.about-stats-banner .col-6 {
  position: relative;
}

.about-stats-banner .col-6:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 15%;
  top: 50%;
  transform: translateY(-50%);
  height: 70%;
  width: 3px;
  background-color: rgb(224 86 153);
}

@media (max-width: 767px) {
  .about-stats-banner .col-6:not(:last-child)::after {
    display: none;
  }
}

/* Our Story Section */
.about-lead-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #0b1a40;
  font-weight: 500;
  margin-bottom: 25px;
}

.about-standard-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.about-story-img-bg {
  position: absolute;
  top: -10px;
  right: 13px;
  bottom: 10px;
  left: 40px;
  background: #fdf2f6;
  border-radius: 30px;
  z-index: 0;
}

.about-story-img {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  width: 100%;
  height: 450px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(11, 26, 64, 0.1);
}

.about-story-badge {
  position: absolute;
  bottom: -30px;
  left: 20px;
  background: linear-gradient(135deg, var(--fl-pink) 0%, #ff758c 100%);
  color: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(235, 77, 128, 0.3);
  z-index: 2;
  text-align: center;
  border: 4px solid #fff;
}

.about-story-badge .badge-number {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
}

.about-story-badge .badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* Why Choose Us Section */
.about-choose-img-bg {
  position: absolute;
  top: -10px;
  left: 13px;
  bottom: 10px;
  right: 40px;
  background: linear-gradient(135deg, #fdf2f6 0%, #fff 100%);
  border: 1px solid rgba(235, 77, 128, 0.1);
  border-radius: 30px;
  z-index: 0;
}

.about-choose-img {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  width: 100%;
  height: 550px;
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(11, 26, 64, 0.1);
}

.about-choose-badge {
  position: absolute;
  top: -30px;
  right: 20px;
  background: #ffffff;
  color: #0b1a40;
  padding: 20px 25px;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(11, 26, 64, 0.08);
  z-index: 2;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.about-choose-badge svg {
  color: var(--fl-pink);
  margin-bottom: 5px;
}

.about-choose-badge .badge-text {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
}

.about-section-title {
  color: var(--fl-dark);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.about-check-item {
  display: flex;
  margin-bottom: 25px;
  align-items: flex-start;
  padding: 20px;
  border-radius: 16px;
  background-color: #ffffff;
  border: 1px solid rgba(235, 77, 128, 0.2);
  box-shadow: 0 15px 35px rgba(235, 77, 128, 0.05);
  transition: all 0.3s ease;
}

.about-check-item:hover {
  background-color: #ffffff;
  border-color: rgba(235, 77, 128, 0.2);
  box-shadow: 0 15px 35px rgba(235, 77, 128, 0.05);
  transform: translateX(8px);
}

.about-check-icon {
  margin-right: 20px;
  margin-top: 0px;
  color: #fff;
  background: var(--fl-pink);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 8px 20px rgba(235, 77, 128, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-check-icon svg {
  width: 20px;
  height: 20px;
}

.about-check-title {
  color: var(--fl-dark);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 5px;
}

.about-value-card {
  text-align: center;
  padding: 40px 25px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.02);
  box-shadow: 0 10px 30px rgba(11, 26, 64, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
}

.about-value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(11, 26, 64, 0.08);
}

.about-value-icon {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: #fdf2f6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: transform 0.4s ease, background 0.4s ease;
}

.about-value-card:hover .about-value-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--fl-pink);
}

.about-value-card:hover .about-value-icon svg {
  stroke: #ffffff;
}

/* Core Values Soft Pink Section */
.about-values-section {
  background: #fdf2f6;
  /* Theme soft pink */
  position: relative;
  overflow: hidden;
}

.about-values-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(235, 77, 128, 0.05) 0%, rgba(0, 0, 0, 0) 60%);
  z-index: 0;
}

.about-values-section .container {
  position: relative;
  z-index: 1;
}

.about-values-section .about-value-card {
  background: #ffffff;
  border: 1px solid rgba(235, 77, 128, 0.1);
  box-shadow: 0 10px 30px rgba(235, 77, 128, 0.05);
}

.about-values-section .about-value-card:hover {
  background: #ffffff;
  border: 1px solid rgba(235, 77, 128, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(235, 77, 128, 0.15);
}

.about-values-section .about-check-title {
  color: #0b1a40;
}

.about-values-section p {
  color: #666 !important;
}

.about-values-section .about-value-icon {
  background: #fff0f5;
  color: var(--fl-pink);
}

.about-values-section .about-value-card:hover .about-value-icon {
  background: var(--fl-pink);
}

/* CTA Banner Pixel Perfect Match */
.about-cta-banner {
  background: #fff4f7;
  /* Very light pink from image */
  border-radius: 16px;
  padding: 0 40px;
  margin: 80px 0;
  box-shadow: none;
  min-height: 140px;
  position: relative;
  overflow: visible;
}

.cta-image-col {
  width: 180px;
  margin-right: 30px;
  align-self: flex-end;
  /* Image sits at the bottom */
}

.cta-illustration {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0px;
  position: relative;
  bottom: -5px;
  /* Slight bleed over bottom edge as seen in image */
}

.cta-text-col {
  padding: 40px 0;
}

.about-cta-banner .cta-title {
  color: #1b1b36;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0;
  margin-bottom: 8px;
}

.about-cta-banner .cta-subtitle {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cta-btn-col {
  padding: 40px 0;
}

.btn-cta-primary {
  background-color: #e05699;
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.btn-cta-primary:hover {
  background-color: #d13d6a;
  color: #fff;
}

.btn-cta-outline {
  background-color: #ffffff;
  color: #e05699;
  border: 1px solid #e05699;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.btn-cta-outline:hover {
  background-color: #fff4f7;
  color: #e05699;
}

/* Mobile responsive fixes for About page */
@media (max-width: 767.98px) {
  .about-mission-card {
    padding: 30px 20px !important;
    flex-direction: column !important;
    gap: 15px !important;
    align-items: flex-start !important;
  }
  .about-icon-circle {
    width: 60px !important;
    height: 60px !important;
  }
  .about-icon-circle svg {
    width: 26px !important;
    height: 26px !important;
  }
  .about-stats-banner {
    padding: 30px 15px !important;
    margin: 40px 0 !important;
  }
  .about-stats-banner .col-6 {
    flex-direction: column !important;
    text-align: center !important;
    gap: 10px !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .about-stats-banner .col-6 i {
    font-size: 32px !important;
  }
  .about-stat-number {
    font-size: 1.45rem !important;
  }
  .about-stat-text {
    font-size: 0.75rem !important;
  }
}