/* =========================================================
   Unique Social Welfare Society — Site Theme
   Palette sampled from the organisation logo:
   Teal  #2A929D  |  Orange #F38830
   ========================================================= */

:root {
  --teal-900: #0f3a40;
  --teal-800: #144a52;
  --teal-700: #1b5f68;
  --teal-600: #227885;
  --teal-500: #2a929d;
  --teal-400: #4facb7;
  --teal-100: #e6f3f4;
  --teal-50: #f2f9f9;

  --orange-700: #c2650f;
  --orange-600: #d9701c;
  --orange-500: #f38830;
  --orange-400: #f6a355;
  --orange-100: #fdf1e2;

  --cream: #fbf8f3;
  --ink: #22292b;
  --ink-soft: #5c6a6d;
  --line: #e7e2d8;

  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Lato', 'Segoe UI', sans-serif;

  --shadow-soft: 0 20px 45px -20px rgba(15, 58, 64, .35);
  --shadow-card: 0 10px 30px -12px rgba(15, 58, 64, .22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
.font-serif {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--teal-900);
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: var(--teal-600);
  transition: .2s ease;
}

a:hover {
  color: var(--orange-600);
}

img {
  max-width: 100%;
  display: block;
}

.container-xl {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
}

::selection {
  background: var(--orange-200, #f6dcb8);
  color: var(--teal-900);
}

/* ---------- Kicker / section heading ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--orange-600);
  margin-bottom: 14px;

}

.kicker::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--orange-500);
  display: inline-block;
}

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 14px;
}

.section-head p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.section {
  padding: 96px 0;
}

.section-sm {
  padding: 64px 0;
}

.bg-teal {
  background: var(--teal-900);
  color: #eaf4f4;
}

.bg-teal h2,
.bg-teal .font-serif {
  color: #fff;
}

.bg-cream-100 {
  background: var(--teal-50);
}

.bg-orange-100 {
  background: var(--orange-100);
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: .03em;
  border-radius: 2px;
  padding: .85rem 1.9rem;
  border: 1px solid transparent;
  transition: .25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-brand {
  background: var(--orange-500);
  color: #fff;
  border-color: var(--orange-500);
}

.btn-brand:hover {
  background: var(--orange-600);
  border-color: var(--orange-600);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, .65);
  color: #fff;
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--teal-900);
}

.btn-teal {
  background: var(--teal-600);
  color: #fff;
  border-color: var(--teal-600);
}

.btn-teal:hover {
  background: var(--teal-800);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-teal {
  border-color: var(--teal-500);
  color: var(--teal-700);
  background: transparent;
}

.btn-outline-teal:hover {
  background: var(--teal-500);
  color: #fff;
}

.btn-sm-pill {
  border-radius: 30px;
  padding: .55rem 1.3rem;
  font-size: .85rem;
}

/* =========================================================
   TOP UTILITY BAR
   ========================================================= */
.topbar {
  background: var(--teal-900);
  color: #cfe6e7;
  font-size: .85rem;
  padding: 8px 0;
}

.topbar a {
  color: #cfe6e7;
}

.topbar a:hover {
  color: var(--orange-400);
}

.topbar .divider {
  opacity: .35;
  margin: 0 12px;
}

.topbar .social-links a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  font-size: .8rem;
}

.topbar .social-links a:hover {
  background: var(--orange-500);
  border-color: var(--orange-500);
  color: #fff;
}

/* =========================================================
   MAIN NAVBAR
   ========================================================= */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, padding .25s ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 24px -12px rgba(15, 58, 64, .25);
}

.navbar-brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
}

.navbar-brand-wrap img {
  height: 56px;
  width: auto;
}

.brand-text {
  font-family: var(--serif);
  line-height: 1.15;
}

.brand-text .name {
  font-weight: 700;
  font-size: 1.28rem;
  color: var(--teal-900);
  display: block;
}

.brand-text .tagline {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--orange-600);
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav a {
  font-family: var(--sans);
  font-weight: 700;
  font-size: .92rem;
  color: var(--teal-900);
  padding: 12px 16px;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 2px;
  background: var(--orange-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: .25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--teal-600);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 10px;
}

.navbar-toggler-custom {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 8px 10px;
  background: none;
}

/* =========================================================
   HERO SLIDER
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
}

.hero .carousel-item {
  height: 88vh;
  min-height: 560px;
  position: relative;
}

.hero .slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
}

.hero .slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(15, 58, 64, .88) 0%, rgba(15, 58, 64, .62) 40%, rgba(15, 58, 64, .25) 75%, rgba(15, 58, 64, .1) 100%);
}

.hero .slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
  color: #fff;
  padding-top: 70px;
  padding-bottom: 60px;
}

.hero .slide-content .kicker {
  color: var(--orange-400);
}

.hero .slide-content .kicker::before {
  background: var(--orange-400);
}

.hero .slide-content h1 {
  color: #fff;
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  margin-bottom: 18px;
}

.hero .slide-content p {
  font-size: 1.12rem;
  color: #dcebec;
  max-width: 560px;
  margin-bottom: 30px;
}

.hero .btn-group-hero {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero .carousel-indicators {
  bottom: 0;
  margin-bottom: 0;
  z-index: 5;
}

.hero .carousel-indicators [data-bs-target] {
  width: 34px;
  height: 4px;
  background-color: rgba(255, 255, 255, .45);
  border: 0;
  opacity: 1;
}

.hero .carousel-indicators .active {
  background-color: var(--orange-500);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 64px;
  opacity: 0;
  transition: .25s;
}

.hero:hover .carousel-control-prev,
.hero:hover .carousel-control-next {
  opacity: .85;
}

/* Stat strip overlapping hero bottom */
.stat-strip {
  position: relative;
  z-index: 6;
  margin-top: -72px;
}

.stat-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
  padding: 34px 10px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-card .stat {
  text-align: center;
  border-right: 1px solid var(--line);
  padding: 0 10px;
}

.stat-card .stat:last-child {
  border-right: 0;
}

.stat-card .stat .num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  color: var(--teal-700);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.stat-card .stat .num i {
  font-size: 1.4rem;
  color: var(--orange-500);
}

.stat-card .stat .label {
  font-size: .85rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-weight: 700;
  margin-top: 4px;
}

@media (max-width:767px) {
  .stat-strip {
    margin-top: 24px;
  }

  .stat-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 0;
  }

  .stat-card .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 16px;
  }
}

/* Page header (inner pages) */
.page-header {
  position: relative;
  padding: 150px 0 90px;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}

.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 58, 64, .82), rgba(15, 58, 64, .78));
}

.page-header .inner {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.breadcrumb-nav {
  font-size: .9rem;
  color: #cfe6e7;
}

.breadcrumb-nav a {
  color: #cfe6e7;
}

.breadcrumb-nav a:hover {
  color: var(--orange-400);
}

.breadcrumb-nav .sep {
  margin: 0 8px;
  opacity: .6;
}

/* =========================================================
   ABOUT SNIPPET
   ========================================================= */
.about-media {
  position: relative;
}

.about-media .frame {
  position: absolute;
  top: -22px;
  left: -22px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--orange-500);
  border-radius: 6px;
  z-index: 0;
}

.about-media img {
  position: relative;
  z-index: 1;
  border-radius: 6px;
  box-shadow: var(--shadow-card);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-media .exp-badge {
  position: absolute;
  z-index: 2;
  bottom: -26px;
  right: -18px;
  background: var(--teal-800);
  color: #fff;
  border-radius: 6px;
  padding: 20px 22px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.about-media .exp-badge .n {
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--orange-400);
  line-height: 1;
}

.about-media .exp-badge .t {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 4px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.check-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--ink);
}

.check-list li i {
  color: var(--orange-500);
  font-size: 1.2rem;
  margin-top: 2px;
}

/* =========================================================
   PROGRAM / CAUSE CARDS
   ========================================================= */
.program-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: 100%;
  transition: transform .3s ease, box-shadow .3s ease;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-soft);
}

.program-card .thumb {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.program-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.program-card:hover .thumb img {
  transform: scale(1.08);
}

.program-card .icon-badge {
  position: absolute;
  bottom: -24px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange-500);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 8px 18px -6px rgba(0, 0, 0, .35);
}

.program-card .body {
  padding: 38px 26px 26px;
}

.program-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.program-card p {
  color: var(--ink-soft);
  font-size: .95rem;
  margin-bottom: 14px;
}

.program-card .more-link {
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--teal-600);
}

.program-card .more-link i {
  transition: .2s;
  margin-left: 4px;
}

.program-card:hover .more-link i {
  transform: translateX(4px);
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

@media (max-width:991px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width:575px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.gallery-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 58, 64, 0) 40%, rgba(15, 58, 64, .88) 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: .3s ease;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .cap {
  color: #fff;
}

.gallery-item .cap .cat {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--orange-400);
  font-weight: 700;
}

.gallery-item .cap .ttl {
  font-family: var(--serif);
  font-size: .98rem;
}

.gallery-item .zoom-ic {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  color: var(--teal-800);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-6px);
  transition: .3s ease;
}

.gallery-item:hover .zoom-ic {
  opacity: 1;
  transform: translateY(0);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-bar button {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: .85rem;
  padding: .5rem 1.2rem;
  border-radius: 30px;
  transition: .2s ease;
}

.filter-bar button.active,
.filter-bar button:hover {
  background: var(--teal-600);
  border-color: var(--teal-600);
  color: #fff;
}

/* Lightbox */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 25, 26, .94);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.lightbox-modal.open {
  display: flex;
}

.lightbox-modal img {
  max-width: 90vw;
  max-height: 82vh;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.lightbox-modal .lb-close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.lightbox-modal .lb-caption {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  text-align: center;
  color: #e6e6e6;
  font-family: var(--serif);
}

.lightbox-modal .lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 12px;
}

.lightbox-modal .lb-prev {
  left: 16px;
}

.lightbox-modal .lb-next {
  right: 16px;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonial-card {
  background: #fff;
  border-radius: 8px;
  padding: 34px 30px;
  box-shadow: var(--shadow-card);
  height: 100%;
  position: relative;
}

.testimonial-card .quote-ic {
  font-family: var(--serif);
  font-size: 3.4rem;
  color: var(--orange-100);
  position: absolute;
  top: 6px;
  right: 22px;
  line-height: 1;
}

.testimonial-card p {
  color: var(--ink-soft);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-card .person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
}

.testimonial-card .person img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange-200, #f3d9b3);
}

.testimonial-card .person .name {
  font-weight: 700;
  color: var(--teal-900);
  font-family: var(--serif);
}

.testimonial-card .person .role {
  font-size: .8rem;
  color: var(--ink-soft);
}

.testimonial-card .stars {
  color: var(--orange-500);
  font-size: .85rem;
  margin-bottom: 10px;
}

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  background: linear-gradient(120deg, var(--orange-600), var(--orange-500));
  border-radius: 10px;
  padding: 56px 48px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-banner::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 8px;
}

.cta-banner p {
  color: #fff0e2;
  margin-bottom: 0;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--teal-900);
  color: #bcd8d9;
}

.site-footer .footer-top {
  padding: 80px 0 40px;
}

.site-footer h5 {
  color: #fff;
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.site-footer h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 2px;
  background: var(--orange-500);
}

.site-footer a {
  color: #bcd8d9;
}

.site-footer a:hover {
  color: var(--orange-400);
}

.site-footer .flinks li {
  margin-bottom: 11px;
  font-size: .93rem;
}

.site-footer .flinks li i {
  color: var(--orange-400);
  font-size: .7rem;
  margin-right: 8px;
}

.site-footer .contact-line {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: .93rem;
}

.site-footer .contact-line i {
  color: var(--orange-400);
  margin-top: 3px;
}

.footer-brand img {
  height: 52px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: .92rem;
  color: #a9c9ca;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  color: #fff;
}

.footer-social a:hover {
  background: var(--orange-500);
  border-color: var(--orange-500);
}

.newsletter-box input {
  border-radius: 30px 0 0 30px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .06);
  color: #fff;
  padding: .7rem 1.2rem;
}

.newsletter-box input::placeholder {
  color: #9fc0c1;
}

.newsletter-box button {
  border-radius: 0 30px 30px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 20px 0;
  font-size: .85rem;
  color: #9fc0c1;
}

.footer-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.footer-gallery img {
  border-radius: 4px;
  aspect-ratio: 1/1;
  object-fit: cover;
}

/* =========================================================
   MISC / FORMS
   ========================================================= */
.form-control,
.form-select {
  border-radius: 3px;
  border: 1px solid var(--line);
  padding: .75rem 1rem;
  font-size: .95rem;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 .2rem rgba(42, 146, 157, .15);
}

.form-label {
  font-weight: 700;
  color: var(--teal-900);
  font-size: .88rem;
  margin-bottom: 6px;
}

.contact-info-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  padding: 34px;
  height: 100%;
}

.contact-info-card .row-item {
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}

.contact-info-card .row-item .ic {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex: none;
}

.contact-info-card .row-item h6 {
  margin-bottom: 4px;
  color: var(--teal-900);
  font-family: var(--serif);
}

.contact-info-card .row-item p,
.contact-info-card .row-item a {
  color: var(--ink-soft);
  font-size: .93rem;
  margin: 0;
}

.map-frame {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 0;
  width: 100%;
  height: 340px;
}

.donation-tiers {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
}

.donation-tiers label {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 20px;
  cursor: pointer;
  font-weight: 700;
  color: var(--teal-800);
  transition: .2s ease;
}

.donation-tiers input {
  display: none;
}

.donation-tiers input:checked+label {
  background: var(--orange-500);
  border-color: var(--orange-500);
  color: #fff;
}

.value-card {
  text-align: center;
  padding: 34px 22px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow-card);
  height: 100%;
}

.value-card .ic {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 18px;
}

.value-card:hover .ic {
  background: var(--orange-500);
  color: #fff;
}

.team-card {
  text-align: center;
}

.team-card .ph {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: var(--shadow-card);
}

.team-card .ph img {
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: .4s;
}

.team-card:hover .ph img {
  transform: scale(1.05);
}

.team-card h6 {
  font-family: var(--serif);
  margin-bottom: 2px;
}

.team-card .role {
  font-size: .82rem;
  color: var(--orange-600);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.timeline {
  border-left: 2px solid var(--line);
  margin-left: 12px;
  padding-left: 34px;
}

.timeline .t-item {
  position: relative;
  padding-bottom: 36px;
}

.timeline .t-item::before {
  content: "";
  position: absolute;
  left: -41px;
  top: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange-500);
  border: 3px solid var(--orange-100);
}

.timeline .t-item h6 {
  color: var(--teal-800);
  font-family: var(--serif);
  margin-bottom: 4px;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal-700);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .3s ease;
  z-index: 900;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--orange-500);
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: var(--shadow-soft);
  z-index: 900;
}

[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

[data-aos].aos-in {
  opacity: 1;
  transform: translateY(0);
}

.alert-elegant {
  border-radius: 4px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal-500);
  background: var(--teal-50);
  padding: 16px 20px;
}