:root {
  --primary: #e75480;
  --secondary: #ffb6c1;
  --accent: #f8d7e6;
  --light: #fff5f8;
  --dark: #444444;
  --white: #ffffff;
  --gradient: linear-gradient(135deg, #ffb6c1, #f8d7e6, #fff5f8);
  --gradient-dark: linear-gradient(135deg, #b63162, #e75480, #ff9db4);
  --shadow-soft: 0 18px 50px rgba(231, 84, 128, 0.14);
  --shadow-card: 0 12px 35px rgba(68, 68, 68, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --transition: all 0.35s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  background: linear-gradient(180deg, #fffafc 0%, #fff5f8 100%);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

section {
  position: relative;
  padding: 110px 0;
}

.section-padding-sm {
  padding: 80px 0;
}

.section-title {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 700;
  color: #2e2a2b;
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(231, 84, 128, 0.12);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-subtitle::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(231, 84, 128, 0.12);
}

.lead-text {
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(68, 68, 68, 0.82);
}

.page-banner {
  padding: 170px 0 110px;
  background:
    radial-gradient(circle at top left, rgba(255, 182, 193, 0.5), transparent 30%),
    radial-gradient(circle at top right, rgba(248, 215, 230, 0.65), transparent 28%),
    linear-gradient(180deg, rgba(255, 245, 248, 0.98), rgba(255, 255, 255, 0.96));
}

.page-banner h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: #2e2a2b;
}

.page-banner p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(68, 68, 68, 0.8);
  line-height: 1.8;
}

.navbar {
  transition: var(--transition);
  padding: 16px 0;
  background: rgba(255, 245, 248, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(231, 84, 128, 0.08);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.95);
}

.navbar-brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
}

.navbar-brand span {
  color: #2e2a2b;
}

.nav-link {
  position: relative;
  font-weight: 500;
  color: var(--dark);
  padding: 10px 14px !important;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 4px;
  width: calc(100% - 28px);
  height: 2px;
  background: var(--gradient-dark);
  transform: scaleX(0);
  transform-origin: center;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.navbar-toggler {
  border: 0;
  box-shadow: none !important;
}

.btn-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 0;
  background: var(--gradient-dark);
  color: var(--white);
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(231, 84, 128, 0.28);
  transition: var(--transition);
}

.btn-brand:hover {
  transform: translateY(-3px);
  color: var(--white);
  box-shadow: 0 18px 36px rgba(231, 84, 128, 0.35);
}

.btn-outline-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid rgba(231, 84, 128, 0.25);
  background: rgba(255, 255, 255, 0.7);
  color: var(--primary);
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline-brand:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 182, 193, 0.32), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(248, 215, 230, 0.5), transparent 26%),
    linear-gradient(180deg, #fff9fb 0%, #fff5f8 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.05;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2a2426;
}

.hero-copy h1 span {
  background: var(--gradient-dark);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy p {
  max-width: 620px;
  margin-bottom: 34px;
  color: rgba(68, 68, 68, 0.84);
  line-height: 1.9;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-visual-wrap {
  position: relative;
  min-height: 560px;
}

.hero-visual {
  position: absolute;
  inset: 40px 0 0 60px;
  padding: 18px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
}

.blur-orb,
.floating-shape {
  position: absolute;
  border-radius: 50%;
  animation: floatY 7s ease-in-out infinite;
}

.blur-orb {
  filter: blur(12px);
}

.orb-one {
  width: 160px;
  height: 160px;
  right: -20px;
  top: 30px;
  background: rgba(231, 84, 128, 0.2);
}

.orb-two {
  width: 220px;
  height: 220px;
  left: -30px;
  bottom: 0;
  background: rgba(255, 182, 193, 0.24);
  animation-delay: 1.2s;
}

.floating-shape {
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
  color: var(--primary);
  font-size: 1.5rem;
}

.shape-one {
  width: 78px;
  height: 78px;
  top: 20px;
  left: 15px;
}

.shape-two {
  width: 92px;
  height: 92px;
  right: 25px;
  bottom: 70px;
  animation-delay: 1.5s;
}

.shape-three {
  width: 66px;
  height: 66px;
  left: 42%;
  bottom: 12px;
  animation-delay: 2.2s;
}

.glass-card,
.feature-card,
.service-card,
.news-card,
.contact-card,
.gallery-card,
.profile-card,
.mission-card {
  height: 100%;
  border: 0;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.glass-card:hover,
.feature-card:hover,
.service-card:hover,
.news-card:hover,
.contact-card:hover,
.gallery-card:hover,
.profile-card:hover,
.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 45px rgba(231, 84, 128, 0.16);
}

.card-icon {
  width: 72px;
  height: 72px;
  display: inline-grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(231, 84, 128, 0.1);
  color: var(--primary);
  font-size: 1.8rem;
}

.stats-card {
  padding: 28px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.stats-card h3 {
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.highlight-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 245, 248, 0.95));
}

.list-check {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.list-check li {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  line-height: 1.75;
}

.list-check i {
  margin-top: 4px;
  color: var(--primary);
}

.timeline-card {
  position: relative;
  padding: 30px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-card);
}

.vision-box {
  padding: 40px;
  border-radius: 30px;
  background: var(--gradient);
  box-shadow: var(--shadow-soft);
}

.vision-box h3,
.vision-box p {
  color: #382d31;
}

.org-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 42px;
}

.org-root {
  width: min(100%, 340px);
}

.org-root .org-card {
  background: var(--gradient-dark);
  color: var(--white);
}

.org-connectors {
  width: 2px;
  height: 40px;
  background: rgba(231, 84, 128, 0.4);
}

.org-branch {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 28px;
}

.org-branch::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 25%;
  right: 25%;
  height: 2px;
  background: rgba(231, 84, 128, 0.35);
}

.org-card {
  position: relative;
  padding: 30px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: var(--transition);
}

.org-card::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  width: 2px;
  height: 20px;
  background: rgba(231, 84, 128, 0.35);
  transform: translateX(-50%);
}

.org-root .org-card::before {
  display: none;
}

.org-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 48px rgba(231, 84, 128, 0.17);
}

.org-card h4 {
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 1.2rem;
  font-weight: 600;
}

.org-card p {
  margin: 0;
  color: rgba(68, 68, 68, 0.76);
}

.service-card,
.mission-card,
.feature-card,
.contact-card,
.profile-card {
  padding: 34px;
}

.service-card h4,
.mission-card h4,
.feature-card h4,
.contact-card h4,
.profile-card h4 {
  margin: 22px 0 14px;
  font-size: 1.2rem;
  font-weight: 600;
}

.article-feature {
  padding: 26px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
}

.article-cover {
  overflow: hidden;
  border-radius: 26px;
  margin-bottom: 26px;
}

.article-cover img {
  width: 100%;
  height: 470px;
  object-fit: cover;
}

.article-meta,
.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 18px;
  color: rgba(68, 68, 68, 0.74);
  font-size: 0.95rem;
}

.article-feature h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 18px;
  color: #2f272a;
}

.article-feature p {
  line-height: 1.9;
  color: rgba(68, 68, 68, 0.84);
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.share-buttons a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(231, 84, 128, 0.1);
  color: var(--primary);
  transition: var(--transition);
}

.share-buttons a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-4px);
}

.news-card img {
  height: 230px;
  object-fit: cover;
  border-radius: 22px 22px 0 0;
}

.news-card-body {
  padding: 26px;
}

.news-card h4 {
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1.5;
  color: #2e2a2b;
}

.news-card p {
  color: rgba(68, 68, 68, 0.78);
  line-height: 1.8;
}

.gallery-grid {
  column-count: 3;
  column-gap: 24px;
}

.gallery-section {
  padding-top: 0;
}

.gallery-section-title {
  margin-bottom: 28px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #2f272a;
}

.gallery-feature-card,
.gallery-activity-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(231, 84, 128, 0.14);
  transition: var(--transition);
}

.gallery-feature-card {
  max-width: 430px;
  margin: 0 auto;
}

.gallery-feature-card:hover,
.gallery-activity-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(231, 84, 128, 0.18);
}

.gallery-feature-card img,
.gallery-activity-card img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-feature-card:hover img,
.gallery-activity-card:hover img {
  transform: scale(1.06);
}

.gallery-feature-card img {
  aspect-ratio: 3 / 4.3;
  object-fit: cover;
}

.gallery-activity-card img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.gallery-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  box-shadow: 0 10px 24px rgba(231, 84, 128, 0.15);
}

.gallery-card-caption {
  padding: 20px 22px 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 248, 0.96));
}

.gallery-card-caption h5 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2f272a;
}

.gallery-card-caption p {
  margin-bottom: 0;
  color: rgba(68, 68, 68, 0.74);
  line-height: 1.7;
}

.gallery-activity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.gallery-card {
  position: relative;
  margin-bottom: 24px;
  overflow: hidden;
  cursor: pointer;
  break-inside: avoid;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 245, 248, 0.98), rgba(248, 215, 230, 0.82));
  box-shadow: var(--shadow-card);
}

.gallery-card img {
  width: 100%;
  display: block;
  border-radius: 22px;
  transition: transform 0.5s ease;
}

.gallery-card.featured-portrait img {
  min-height: 640px;
  object-fit: cover;
}

.gallery-note-card {
  height: 100%;
  padding: 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
}

.gallery-note-card h4 {
  margin-bottom: 14px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2f272a;
}

.gallery-note-card p {
  margin-bottom: 0;
  color: rgba(68, 68, 68, 0.8);
  line-height: 1.8;
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, transparent 20%, rgba(37, 26, 31, 0.72) 100%);
  color: var(--white);
}

.gallery-overlay span {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.84;
}

.gallery-overlay h5 {
  margin-top: 8px;
  margin-bottom: 0;
  font-weight: 600;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(24, 18, 20, 0.85);
  backdrop-filter: blur(12px);
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  position: relative;
  width: min(900px, 100%);
  border-radius: 28px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.lightbox-content img {
  width: 100%;
  max-height: 75vh;
  object-fit: cover;
}

.lightbox-caption {
  padding: 20px 24px 24px;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  color: #2e2a2b;
  font-size: 1.2rem;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid rgba(231, 84, 128, 0.16);
  border-radius: 18px;
  padding: 15px 18px;
  min-height: 56px;
  background: rgba(255, 255, 255, 0.95);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: rgba(231, 84, 128, 0.45);
  box-shadow: 0 0 0 0.25rem rgba(231, 84, 128, 0.12);
}

.map-frame {
  min-height: 420px;
  border: 0;
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow-card);
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 80px 0 30px;
  color: rgba(255, 255, 255, 0.92);
  background: linear-gradient(135deg, #85314f, #c84f7d, #e86f95);
}

.footer a {
  color: rgba(255, 255, 255, 0.88);
}

.footer a:hover {
  color: #ffffff;
}

.footer-brand {
  font-size: 1.6rem;
  font-weight: 700;
}

.footer .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer .social-links a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  transition: var(--transition);
}

.footer .social-links a:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
}

.footer-menu {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 12px;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.95rem;
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 90px;
  z-index: 1040;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--gradient-dark);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(231, 84, 128, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: var(--transition);
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1040;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  font-size: 1.5rem;
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.08);
  color: #ffffff;
}

.floating-note {
  position: absolute;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
}

.floating-note strong {
  display: block;
  margin-bottom: 4px;
  color: #2f272a;
}

.note-one {
  left: -10px;
  bottom: 50px;
}

.note-two {
  right: -10px;
  top: 100px;
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(231, 84, 128, 0.1);
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 600;
}

.breadcrumb-soft {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 0.95rem;
  color: rgba(68, 68, 68, 0.72);
}

.breadcrumb-soft a {
  color: var(--primary);
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

@media (max-width: 1199.98px) {
  section {
    padding: 95px 0;
  }

  .hero-visual {
    inset: 50px 0 0 20px;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 18px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-card);
  }

  .hero-section {
    min-height: auto;
    padding-top: 140px;
  }

  .hero-visual-wrap {
    min-height: 460px;
    margin-top: 40px;
  }

  .page-banner {
    padding: 150px 0 90px;
  }

  .org-branch {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-grid {
    column-count: 2;
  }

  .gallery-activity-grid {
    grid-template-columns: 1fr;
  }

  .note-two,
  .note-one {
    position: static;
    margin-top: 18px;
  }
}

@media (max-width: 767.98px) {
  section {
    padding: 80px 0;
  }

  .page-banner {
    padding: 140px 0 76px;
  }

  .hero-copy h1 {
    font-size: clamp(2.3rem, 12vw, 3.6rem);
  }

  .hero-visual-wrap {
    min-height: 380px;
  }

  .hero-visual {
    inset: 30px 0 0;
  }

  .floating-shape,
  .blur-orb {
    transform: scale(0.85);
  }

  .org-branch {
    grid-template-columns: 1fr;
  }

  .org-branch::before {
    display: none;
  }

  .org-card::before {
    left: 24px;
    transform: none;
  }

  .gallery-grid {
    column-count: 1;
  }

  .article-cover img {
    height: 320px;
  }

  .scroll-top {
    right: 16px;
    bottom: 86px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 575.98px) {
  .btn-brand,
  .btn-outline-brand {
    width: 100%;
    justify-content: center;
  }

  .hero-badge {
    width: 100%;
    justify-content: center;
  }

  .feature-card,
  .service-card,
  .news-card-body,
  .contact-card,
  .profile-card,
  .mission-card {
    padding: 24px;
  }

  .vision-box,
  .timeline-card,
  .article-feature {
    padding: 24px;
  }

  .map-frame {
    min-height: 320px;
  }
}
