/* Page-specific styles for about.html */

.about-hero {
  padding: 4rem 0;
  text-align: center;
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-vision-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-bottom: 4rem;
  padding: clamp(2rem, 5vw, 4.25rem);
  border: 1px solid rgba(15, 56, 44, 0.12);
  border-radius: 28px;
  background: radial-gradient(circle at 90% 8%, rgba(212, 175, 55, 0.3), transparent 27%), linear-gradient(135deg, #f7fcf6 0%, #ffffff 48%, #fff8df 100%);
  box-shadow: 0 24px 60px rgba(15, 56, 44, 0.13);
  animation: visionCardIn 0.75s ease both;
}

.about-vision-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(90deg, #67bd31, var(--accent), var(--primary));
}

.about-vision-heading {
  position: relative;
  max-width: 680px;
  margin: 0 auto 2.5rem;
  text-align: center;
  z-index: 1;
}

.about-vision-heading h2 {
  margin: 0.45rem 0 0.7rem;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
}

.about-vision-heading p {
  max-width: 570px;
  margin: 0 auto;
  color: var(--gray-dark);
  line-height: 1.75;
}

.about-vision-content {
  display: grid;
  grid-template-columns: minmax(250px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  max-width: 1120px;
  margin: 0 auto;
  align-items: center;
}

.about-vision-statement {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  padding: 2.3rem;
  border-radius: 22px;
  background: linear-gradient(145deg, #0b3027 0%, #185242 100%);
  box-shadow: 0 18px 34px rgba(15, 56, 44, 0.2);
  text-align: center;
}

.about-vision-statement .about-vision-title,
.about-vision-statement .about-vision-text {
  color: var(--white);
}

.about-vision-title {
  margin: 0 0 1rem;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 2.3vw, 2rem);
}

.about-vision-text {
  margin: 0;
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.15);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.85;
  font-style: italic;
}

.about-mission-heading {
  margin-bottom: 1.25rem;
  text-align: center;
}

.about-mission-heading .about-vision-title {
  margin-bottom: 0;
}

.about-mission-list {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-mission-list li {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  gap: 1rem;
  min-height: 76px;
  padding: 0.65rem 1rem 0.65rem 0.7rem;
  border: 1px solid rgba(15, 56, 44, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--gray-dark);
  line-height: 1.5;
  box-shadow: 0 8px 18px rgba(15, 56, 44, 0.06);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.about-mission-list li:hover {
  transform: translateX(6px);
  border-color: rgba(212, 175, 55, 0.48);
  background: var(--white);
}

.about-mission-list img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.about-mission-list span {
  text-align: center;
}

.about-philosophy-panel {
  background: linear-gradient(135deg, #0f382c 0%, #185242 100%);
  color: var(--white);
  padding: 3.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.about-philosophy-panel .content {
  max-width: none;
  width: 100%;
}

.about-philosophy-image {
  display: flex;
  justify-content: center;
  align-items: center;
  order: -1;
  width: 100%;
  margin: 0 auto 0.75rem;
}

.about-philosophy-image img {
  display: block;
  width: min(100%, 370px);
  max-width: 520px;
  height: auto;
  object-fit: contain;
}

.about-philosophy-panel h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin: 0.5rem 0 1.5rem;
  color: var(--white);
}

.about-philosophy-panel p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.camel-character-section {
  margin-top: 4rem;
}

.camel-character-header {
  max-width: 780px;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.camel-character-header .section-subtitle {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.camel-character-header h2 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.camel-character-header p {
  color: var(--gray-dark);
  line-height: 1.8;
  margin: 0;
}

.camel-character-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--gray-light);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.camel-character-card {
  min-height: 270px;
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
}

.camel-character-card:nth-child(2n) {
  border-right: none;
}

.camel-character-card:nth-last-child(-n + 2) {
  border-bottom: none;
}

.camel-character-card img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  margin-bottom: 0.9rem;
}

.camel-character-card h3 {
  font-family: var(--font-heading);
  color: #08702f;
  font-size: 1.45rem;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.camel-character-card p {
  max-width: 360px;
  color: var(--dark);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
}

.signature-program-section {
  position: relative;
  margin: 6rem -1.5rem -5rem;
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, #f4f8f6 0%, #ffffff 52%, #fffaf0 100%);
  border-top: 1px solid rgba(15, 56, 44, 0.08);
  box-shadow: inset 0 24px 48px rgba(15, 56, 44, 0.05);
}

.signature-program-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(280px, 42vw);
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent), #67bd31);
  border-radius: 0 0 999px 999px;
  transform: translateX(-50%);
}

.signature-program-header {
  max-width: 760px;
  margin: 0 auto 2.25rem;
  text-align: center;
}

.signature-program-header .section-subtitle {
  color: var(--accent-hover);
}

.signature-program-header h2 {
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.signature-program-header p {
  color: var(--gray-dark);
  line-height: 1.75;
  margin: 0;
}

.signature-program-layout {
  display: grid;
  grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.signature-program-preview {
  position: sticky;
  top: 104px;
  display: grid;
  align-content: start;
  justify-items: center;
  min-height: 360px;
  overflow: hidden;
  padding: 2.25rem 1.75rem 2rem;
  border: 1px solid rgba(15, 56, 44, 0.13);
  border-radius: 22px;
  background: radial-gradient(circle at 50% 27%, rgba(212, 175, 55, 0.16), transparent 34%), linear-gradient(180deg, #ffffff 0%, #f6fbf8 58%, #eef8f2 100%);
  box-shadow: 0 24px 60px rgba(15, 56, 44, 0.13);
  text-align: center;
}

.signature-program-preview::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(90deg, #67bd31, var(--accent), var(--primary));
}

.signature-preview-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  margin-bottom: 1.35rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.78);
  color: var(--accent-hover);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 1;
}

.signature-program-preview img {
  position: relative;
  width: 164px;
  height: 164px;
  object-fit: contain;
  margin-bottom: 1.45rem;
  padding: 1rem;
  border: 1px solid rgba(15, 56, 44, 0.1);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #fbfdfc);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.7),
    0 18px 34px rgba(15, 56, 44, 0.14);
  z-index: 1;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.signature-program-preview:hover img {
  transform: translateY(-4px) scale(1.03);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.8),
    0 24px 42px rgba(15, 56, 44, 0.18);
}

.signature-program-preview h3 {
  position: relative;
  font-family: var(--font-heading);
  color: var(--primary);
  font-size: clamp(1.55rem, 2vw, 1.9rem);
  line-height: 1.25;
  margin-bottom: 0.55rem;
  text-shadow: 0 1px 0 rgba(212, 175, 55, 0.22);
  z-index: 1;
}

.signature-program-preview p {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(15, 56, 44, 0.08);
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 800;
  margin: 0;
  z-index: 1;
}

.signature-program-groups {
  display: grid;
  gap: 1.25rem;
}

.signature-program-group {
  overflow: hidden;
  border: 1px solid var(--gray-light);
  border-radius: 14px;
  background: #f3f4f6;
  box-shadow: var(--shadow-sm);
}

.signature-program-group h3 {
  margin: 0;
  padding: 1.15rem 1.5rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
}

.signature-program-group-islamic h3 {
  background: #67bd31;
}

.signature-program-group-international h3 {
  background: #078fd4;
}

.signature-program-group-entrepreneur h3 {
  background: #b01b88;
}

.signature-program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem 1rem;
  padding: 1.2rem;
}

.signature-program-group-international .signature-program-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.signature-program-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  min-height: 68px;
  padding: 0.65rem 0.75rem;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: var(--dark);
  cursor: pointer;
  text-align: left;
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.signature-program-card:hover,
.signature-program-card:focus-visible,
.signature-program-card.active {
  background: var(--white);
  border-color: rgba(15, 56, 44, 0.14);
  box-shadow: 0 10px 24px rgba(15, 56, 44, 0.09);
  transform: translateY(-2px);
}

.signature-program-card:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.45);
  outline-offset: 2px;
}

.signature-program-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.signature-program-card span {
  min-width: 0;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.about-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--white);
  width: 100%;
}

.about-intro-text {
  color: var(--gray-dark);
  line-height: 1.7;
}

.about-intro-text-large {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}

.about-intro-text-last {
  margin-top: 0;
}

.about-modal-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary);
  text-align: center;
  margin-bottom: 1rem;
}

.about-modal-submit-btn {
  width: 100%;
}

.about-hero-subtitle {
  color: var(--accent);
}

.about-hero-title {
  color: var(--white);
  font-size: 2.8rem;
}

.about-hero-description {
  color: rgba(255, 255, 255, 0.85);
  max-width: 680px;
  margin: 0 auto;
}

.about-vision-note {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.75;
}

.about-panel-label {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.about-panel-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  margin: 0.5rem 0 1.5rem;
  color: var(--white);
}

.about-panel-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
}

.camel-meaning-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
  margin-top: 2rem;
}

.camel-meaning-card {
  min-width: 0;
}

.camel-meaning-card {
  position: relative;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.camel-meaning-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(212, 175, 55, 0.6);
}

.camel-meaning-number {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.85rem;
  border-radius: 8px;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 900;
}

.camel-meaning-card h3 {
  margin: 0 0 0.75rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.camel-meaning-card p {
  margin: 0 0 0.8rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.65;
}

.camel-meaning-card .camel-meaning-note {
  color: rgba(255, 255, 255, 0.95);
}

.camel-meaning-card .camel-meaning-note strong {
  color: var(--accent);
}

.camel-meaning-tag {
  display: inline-block;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.camel-meaning-card-wide {
  grid-column: 1 / -1;
}

.about-footer {
  border-top: none;
  text-align: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
  }

  .about-vision-panel {
    padding: 2.5rem 1.35rem;
    border-radius: 22px;
  }

  .about-vision-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-vision-statement {
    padding: 1.75rem;
  }

  .about-philosophy-panel {
    gap: 1.5rem;
    padding: 2.25rem 1.5rem;
  }

  .about-philosophy-panel .content {
    text-align: left;
  }

  .about-philosophy-image {
    align-self: center;
    padding-top: 0;
  }

  .about-philosophy-image img {
    width: min(100%, 360px);
    max-width: 360px;
  }

  .camel-meaning-grid {
    grid-template-columns: 1fr;
  }

  .camel-meaning-card-wide {
    grid-column: auto;
  }

  .camel-character-grid {
    grid-template-columns: 1fr;
  }

  .camel-character-card,
  .camel-character-card:nth-child(2n),
  .camel-character-card:nth-last-child(-n + 2) {
    border-right: none;
    border-bottom: 1px solid var(--gray-light);
  }

  .camel-character-card:last-child {
    border-bottom: none;
  }

  .camel-character-card {
    min-height: auto;
    padding: 2rem 1.25rem;
  }

  .signature-program-layout {
    grid-template-columns: 1fr;
  }

  .signature-program-section {
    margin: 4.5rem -1.5rem -5rem;
    padding: 4rem 1.25rem;
  }

  .signature-program-preview {
    position: static;
    min-height: auto;
  }

  .signature-program-grid,
  .signature-program-group-international .signature-program-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .signature-program-grid,
  .signature-program-group-international .signature-program-grid {
    grid-template-columns: 1fr;
  }

  .signature-program-card {
    min-height: 64px;
  }
}

@keyframes visionCardIn {
  from {
    opacity: 0;
    transform: translateY(24px) rotateX(4deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}


/* ===== ORNAMEN ANIMASI HERO ABOUT US (daun, bunga, bintang, bulan) ===== */
.about-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 84% 18%, rgba(212, 175, 55, 0.18), transparent 24%), linear-gradient(108deg, #105130 0%, #105130 58%, #105130 100%);
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.16) 0%, transparent 38%), radial-gradient(circle at 90% 80%, rgba(24, 82, 66, 0.3) 0%, transparent 52%);
  pointer-events: none;
  z-index: 0;
}

.about-hero .about-hero-inner {
  position: relative;
  z-index: 2;
}

.about-hero .hero-decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.about-hero .hero-decor svg {
  position: absolute;
  display: block;
}

/* Sulur daun & bunga */
.about-hero .hero-leaf-tl {
  top: -34px;
  left: -26px;
  width: clamp(130px, 14vw, 215px);
  color: #1e8a50;
  opacity: 0.55;
  transform-origin: 0 0;
  animation: heroSway 8s ease-in-out infinite;
}

.about-hero .hero-leaf-bl {
  bottom: -28px;
  left: -30px;
  width: clamp(140px, 15vw, 250px);
  color: #2ea86a;
  opacity: 0.5;
  transform-origin: 0 100%;
  animation: heroSway 9.5s ease-in-out infinite reverse;
}

.about-hero .hero-leaf-tr {
  top: -30px;
  right: -34px;
  width: clamp(120px, 12vw, 200px);
  color: #1e8a50;
  opacity: 0.6;
  transform-origin: 100% 0;
  animation: heroSway 9s ease-in-out infinite reverse;
}

.about-hero .hero-leaf-br {
  bottom: -22px;
  right: -26px;
  width: clamp(110px, 11vw, 190px);
  color: #2ea86a;
  opacity: 0.55;
  transform-origin: 100% 100%;
  animation: heroSway 11s ease-in-out infinite;
  z-index: 2;
}

/* Kilau bintang */
.about-hero .hero-sparkle {
  color: #e9c46a;
  opacity: 0.9;
  animation: heroTwinkle 3.4s ease-in-out infinite;
}

.about-hero .hero-sparkle-1 {
  top: 18%;
  left: 30%;
  width: 22px;
}
.about-hero .hero-sparkle-2 {
  top: 12%;
  left: 52%;
  width: 15px;
  color: #f6e7b2;
  animation-delay: 0.9s;
}
.about-hero .hero-sparkle-3 {
  top: 46%;
  right: 8%;
  width: 18px;
  animation-delay: 1.6s;
}
.about-hero .hero-sparkle-4 {
  bottom: 14%;
  right: 26%;
  width: 13px;
  color: #ffffff;
  opacity: 0.75;
  animation-delay: 2.3s;
}
.about-hero .hero-sparkle-5 {
  bottom: 18%;
  left: 44%;
  width: 16px;
  color: #f6e7b2;
  animation-delay: 0.4s;
}
.about-hero .hero-sparkle-6 {
  top: 30%;
  left: 16%;
  width: 12px;
  color: #ffffff;
  opacity: 0.8;
  animation-delay: 1.2s;
}
.about-hero .hero-sparkle-7 {
  bottom: 22%;
  left: 66%;
  width: 14px;
  color: #e9c46a;
  animation-delay: 2.8s;
}
.about-hero .hero-sparkle-8 {
  top: 40%;
  right: 20%;
  width: 10px;
  color: #f6e7b2;
  animation-delay: 0.2s;
}

/* Bulan sabit */
.about-hero .hero-moon {
  top: 14%;
  right: 14%;
  width: clamp(52px, 6vw, 88px);
  color: rgba(233, 196, 106, 0.5);
  animation: heroFloat 7s ease-in-out infinite;
}

/* Kelopak bunga jatuh melayang */
.about-hero .hero-petal {
  position: absolute;
  top: -30px;
  display: block;
  background: #e9c46a;
  border-radius: 62% 0 62% 0;
  opacity: 0;
  animation: petalFall linear infinite;
  will-change: transform;
}

.about-hero .hero-petal-1 {
  left: 10%;
  width: 13px;
  height: 13px;
  animation-duration: 11s;
  animation-delay: -3s;
}
.about-hero .hero-petal-2 {
  left: 24%;
  width: 10px;
  height: 10px;
  background: #f6e7b2;
  animation-duration: 14s;
  animation-delay: -8s;
}
.about-hero .hero-petal-3 {
  left: 41%;
  width: 15px;
  height: 15px;
  background: #d4af37;
  animation-duration: 12s;
  animation-delay: -5s;
}
.about-hero .hero-petal-4 {
  left: 58%;
  width: 11px;
  height: 11px;
  background: #f6e7b2;
  animation-duration: 13.5s;
  animation-delay: -10s;
}
.about-hero .hero-petal-5 {
  left: 73%;
  width: 14px;
  height: 14px;
  animation-duration: 10.5s;
  animation-delay: -6.5s;
}
.about-hero .hero-petal-6 {
  left: 88%;
  width: 9px;
  height: 9px;
  background: #f6e7b2;
  animation-duration: 15s;
  animation-delay: -7s;
}

/* Gelembung cahaya naik perlahan */
.about-hero .hero-bubble {
  position: absolute;
  display: block;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 30%, rgba(246, 231, 178, 0.9), rgba(233, 196, 106, 0.35) 60%, rgba(233, 196, 106, 0.08));
  filter: blur(1px);
  opacity: 0;
  animation: bubbleRise linear infinite;
  will-change: transform;
}

.about-hero .hero-bubble-1 {
  left: 38%;
  bottom: -40px;
  width: 18px;
  height: 18px;
  animation-duration: 13s;
  animation-delay: -4s;
}
.about-hero .hero-bubble-2 {
  left: 64%;
  bottom: -30px;
  width: 12px;
  height: 12px;
  animation-duration: 16s;
  animation-delay: -9s;
}

/* Keyframes (duplikat agar about.css berdiri sendiri) */
@keyframes heroSway {
  0%,
  100% {
    transform: rotate(-2.5deg);
  }
  50% {
    transform: rotate(2deg);
  }
}

@keyframes heroTwinkle {
  0%,
  100% {
    opacity: 0.25;
    transform: scale(0.8) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.1) rotate(18deg);
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes petalFall {
  0% {
    transform: translate3d(0, -30px, 0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.85;
  }
  25% {
    transform: translate3d(34px, 190px, 0) rotate(100deg);
  }
  50% {
    transform: translate3d(-12px, 380px, 0) rotate(210deg);
    opacity: 0.8;
  }
  75% {
    transform: translate3d(30px, 570px, 0) rotate(300deg);
  }
  90% {
    opacity: 0.5;
  }
  100% {
    transform: translate3d(4px, 790px, 0) rotate(380deg);
    opacity: 0;
  }
}

@keyframes bubbleRise {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  12% {
    opacity: 0.55;
  }
  50% {
    transform: translateY(-260px) translateX(14px);
    opacity: 0.45;
  }
  88% {
    opacity: 0.25;
  }
  100% {
    transform: translateY(-540px) translateX(-10px);
    opacity: 0;
  }
}

/* Responsif: sembunyikan sebagian ornamen di layar kecil */
@media (max-width: 768px) {
  .about-hero .hero-leaf-tl {
    display: none;
  }
  .about-hero .hero-leaf-bl {
    width: 118px;
  }
  .about-hero .hero-leaf-tr {
    width: 96px;
    opacity: 0.45;
  }
  .about-hero .hero-leaf-br {
    width: 92px;
  }
  .about-hero .hero-sparkle-3,
  .about-hero .hero-sparkle-6,
  .about-hero .hero-sparkle-8 {
    display: none;
  }
  .about-hero .hero-petal-4,
  .about-hero .hero-petal-6 {
    display: none;
  }
  .about-hero .hero-bubble-2 {
    display: none;
  }
  .about-hero .hero-moon {
    width: 56px;
    right: 8%;
  }
}
