@charset "UTF-8";

/*!
 * Theme Name: pukaar
 * Description: Custom Theme for Pukaar Animal Welfare Platform
 * Author: Your Name
 * Version: 1.0.0
 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background-color: #fff;
  color: #2C2416;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", "Inter", sans-serif;
  color: #2C2416;
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: #00a688;
  text-decoration: none;
  transition: color 260ms cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  color: #008b72;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: 800px;
}

.section-pad {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media (max-width: 768px) {
  .section-pad {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.section-pad--sm {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (max-width: 768px) {
  .section-pad--sm {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

/* Base Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 3rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  cursor: pointer;
  transition: all 260ms cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.btn--primary {
  background: #00a688;
  color: #fff;
}

.btn--primary:hover {
  background: #008b72;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn--outline {
  background: transparent;
  border-color: #00a688;
  color: #00a688;
}

.btn--outline:hover {
  background: #00a688;
  color: #fff;
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.25rem 1rem;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

@media (max-width: 480px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Helpers */
.text-center {
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 260ms cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled .header-inner {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-top: none;
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 3rem;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid #E4DDD3;
  border-radius: 16px;
  padding: 0 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 260ms cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header .site-logo {
  flex-shrink: 0;
}

.site-header .site-logo a {
  text-decoration: none;
}

.site-header .site-logo .custom-logo-link img {
  width: 158px;
}

.site-header .site-logo .logo-text {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #2C2416;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-header .site-logo .logo-paw {
  font-size: 1.6rem;
}

.site-header .site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

@media (max-width: 1024px) {
  .site-header .site-nav {
    display: none;
  }
}

.site-header .nav-menu {
  display: flex;
  align-items: center;
  gap: 3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-header .nav-menu>li {
  position: relative;
}

.site-header .nav-menu>li.has-dropdown>a {
  padding-right: 1.25rem;
}

.site-header .nav-menu>li.has-dropdown>a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #6B7280;
  transition: border-color 260ms cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header .nav-menu>li.has-dropdown>a:hover::before {
  border-top-color: #00a688;
}

.site-header .nav-menu>li>a {
  position: relative;
  display: block;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: #2C2416;
  transition: color 260ms cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header .nav-menu>li>a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #00a688;
  transition: width 260ms cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header .nav-menu>li>a:hover,
.site-header .nav-menu>li>a:focus {
  color: #00a688;
}

.site-header .nav-menu>li>a:hover::after,
.site-header .nav-menu>li>a:focus::after {
  width: 100%;
}

.site-header .nav-menu>li.current-menu-item>a {
  color: #00a688;
}

.site-header .nav-menu>li.current-menu-item>a::after {
  width: 100%;
}

.site-header .nav-menu>li.has-dropdown>.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #FFFFFF;
  border: 1px solid #E4DDD3;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 260ms cubic-bezier(0.4, 0, 0.2, 1);
  list-style: none;
}

.site-header .nav-menu>li.has-dropdown>.sub-menu li a {
  display: block;
  padding: 0.5rem 3rem;
  font-size: 0.875rem;
  color: #2C2416;
  transition: all 260ms cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header .nav-menu>li.has-dropdown>.sub-menu li a:hover {
  color: #00a688;
  background: rgba(0, 166, 136, 0.04);
}

.site-header .nav-menu>li.has-dropdown:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-header .header-cta {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header .header-cta .header-sign-in {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-radius: 4px;
  padding: 8px 16px;
}

@media (max-width: 768px) {
  .site-header .header-cta {
    display: none;
  }
}

.site-header .nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.site-header .nav-toggle span {
  display: block;
  height: 2px;
  background: #2C2416;
  border-radius: 9999px;
  transition: all 260ms cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 1024px) {
  .site-header .nav-toggle {
    display: flex;
  }
}

.site-header .nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.site-header .nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.site-header .nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.site-header.nav-open .site-nav {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  min-height: calc(100vh - 72px);
  background: #FFFFFF;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 1rem 2rem 2rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 999;
}

.site-header.nav-open .site-nav .nav-menu {
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  gap: 0;
}

.site-header.nav-open .site-nav .nav-menu>li>a {
  font-size: 1.1rem;
  padding: 1rem;
  width: 100%;
}

.site-header.nav-open .site-nav .nav-menu>li.has-dropdown>.sub-menu {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  border: none;
  background: rgba(0, 166, 136, 0.06);
  margin: 0 0 0.5rem 0;
  padding: 0;
  border-radius: 4px;
  min-width: auto;
  max-height: none;
  overflow: visible;
  display: flex;
  flex-direction: column;
}

.site-header.nav-open .site-nav .nav-menu>li.has-dropdown>.sub-menu li {
  border-bottom: 1px solid rgba(0, 166, 136, 0.08);
}

.site-header.nav-open .site-nav .nav-menu>li.has-dropdown>.sub-menu li:last-child {
  border-bottom: none;
}

.site-header.nav-open .site-nav .nav-menu>li.has-dropdown>.sub-menu li a {
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  width: 100%;
}

.site-header.nav-open .site-nav .nav-menu>li.has-dropdown>a::before {
  display: none;
}

.site-footer {
  background: #000000;
  color: #99A1AF;
  margin-top: auto;
}

.site-footer .footer-top {
  padding-block: 4.5rem;
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 2.5fr;
  gap: 2rem;
}

@media (max-width: 1024px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

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

.site-footer {
  /* Brand Column */
}

.site-footer .footer-brand p {
  font-size: 0.85rem;
  line-height: 1.65;
  margin-top: 1.5rem;
  max-width: 320px;
  color: #99A1AF;
}

.site-footer .footer-brand .footer-logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-footer .footer-brand .footer-logo .logo-icon {
  color: #99A1AF;
  display: flex;
}

.site-footer .footer-brand .footer-logo .logo-text-group {
  display: flex;
  flex-direction: column;
}

.site-footer .footer-brand .footer-logo .logo-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
  letter-spacing: 0.5px;
}

.site-footer .footer-brand .footer-logo .logo-subtitle {
  font-size: 0.6rem;
  font-weight: 600;
  color: #99A1AF;
  margin-top: 2px;
  letter-spacing: 0.02em;
}

.site-footer {
  /* Shared Links & Contact */
}

.site-footer .footer-links h3,
.site-footer .footer-contact h3 {
  font-size: 0.85rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: 0.2px;
}

.site-footer .footer-links ul,
.site-footer .footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer .footer-links li,
.site-footer .footer-contact li {
  margin-bottom: 1rem;
}

.site-footer .footer-links a,
.site-footer .footer-links span,
.site-footer .footer-contact a,
.site-footer .footer-contact span {
  font-size: 0.85rem;
  color: #99A1AF;
  text-decoration: none;
  transition: color 260ms cubic-bezier(0.4, 0, 0.2, 1);
}

.site-footer .footer-links a:hover,
.site-footer .footer-contact a:hover {
  color: #fff;
}

.site-footer {
  /* Contact Column Specifics */
}

.site-footer .footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #99A1AF;
  line-height: 1.6;
}

.site-footer .footer-contact li .footer-icon {
  width: 14px;
  height: auto;
}

.site-footer .footer-contact li svg {
  width: 14px;
  height: auto;
}

.site-footer .footer-contact li.align-top {
  align-items: flex-start;
}

.site-footer .footer-contact li.align-top svg {
  margin-top: 4px;
}

.site-footer .footer-contact li.no-icon {
  margin-top: 2rem;
}

.site-footer .footer-contact li svg {
  flex-shrink: 0;
  color: #99A1AF;
}

.site-footer {
  /* Bottom Bar */
}

.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-block: 1.5rem;
}

.site-footer .footer-bottom .text-center {
  text-align: center;
  width: 100%;
}

.site-footer .footer-bottom p {
  font-size: 0.8rem;
  color: #99A1AF;
  margin: 0;
}

.page-hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44, 36, 22, 0.7) 0%, rgba(20, 68, 85, 0.5) 100%);
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero .hero-content {
  max-width: 640px;
  color: #fff;
}

.page-hero .hero-content .hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00a688;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.page-hero .hero-content h1 {
  color: #fff;
  margin-bottom: 3rem;
}

.page-hero .hero-content p {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 2rem;
}

.page-hero .hero-content .hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 380px;
  }

  .page-hero .hero-content h1 {
    font-size: clamp(1.6rem, 6vw, 2.5rem);
  }
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  padding: 3rem;
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.filter-bar select,
.filter-bar input {
  flex: 1;
  min-width: 160px;
  padding: 0.65rem 1rem;
  border: 1.5px solid #E4DDD3;
  border-radius: 12px;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  font-size: 0.9rem;
  color: #2C2416;
  background: #fff;
  transition: border-color 260ms cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-bar select:focus,
.filter-bar input:focus {
  outline: none;
  border-color: #00a688;
}

.filter-bar .btn {
  flex-shrink: 0;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

.pagination ul {
  display: flex;
  gap: 0.5rem;
  list-style: none;
}

.pagination a,
.pagination .current {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1.5px solid #E4DDD3;
  color: #2C2416;
  transition: all 260ms cubic-bezier(0.4, 0, 0.2, 1);
}

.pagination a:hover,
.pagination a.current,
.pagination .current:hover,
.pagination .current.current {
  background: #00a688;
  border-color: #00a688;
  color: #fff;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 36, 22, 0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  opacity: 0;
  visibility: hidden;
  transition: all 260ms cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(4px);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 3rem;
  max-width: 540px;
  width: 100%;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
  transform: translateY(20px);
  transition: transform 260ms cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.modal__header h3 {
  font-size: 1.25rem;
}

.modal__header .modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #6B7280;
  line-height: 1;
  padding: 0.25rem;
  border-radius: 4px;
  transition: color 260ms cubic-bezier(0.4, 0, 0.2, 1);
}

.modal__header .modal-close:hover {
  color: #00a688;
}

.error-404__paw {
  font-size: 5rem;
  margin-bottom: 3rem;
}

.error-404 h1 {
  margin-bottom: 1rem;
}

.error-404 p {
  color: #6B7280;
  margin-bottom: 3rem;
}

.error-404__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.pet-card {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: box-shadow 260ms cubic-bezier(0.4, 0, 0.2, 1), transform 260ms cubic-bezier(0.4, 0, 0.2, 1);
}

.pet-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
  transform: translateY(-4px);
}

.pet-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.pet-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.pet-card__image:hover img {
  transform: scale(1.04);
}

.pet-card__species {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: #00a688;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 9999px;
  z-index: 1;
}

.pet-card__body {
  padding: 3rem;
}

.pet-card__name {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pet-card__meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
  font-size: 0.8rem;
  color: #6B7280;
  margin-bottom: 1rem;
}

.pet-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.expert-card {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: box-shadow 260ms cubic-bezier(0.4, 0, 0.2, 1), transform 260ms cubic-bezier(0.4, 0, 0.2, 1);
}

.expert-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
  transform: translateY(-4px);
}

.expert-card {
  text-align: center;
  padding: 2rem 3rem;
}

.expert-card__image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 3px solid #E4DDD3;
}

.expert-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expert-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.expert-card__type {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #00a688;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.expert-card__qual,
.expert-card__city,
.expert-card__exp {
  font-size: 0.8rem;
  color: #6B7280;
  margin-bottom: 0.25rem;
}

.expert-card .btn {
  margin-top: 1rem;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

.news-card {
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: box-shadow 260ms cubic-bezier(0.4, 0, 0.2, 1), transform 260ms cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
  transform: translateY(-4px);
}

.news-card figure {
  overflow: hidden;
  aspect-ratio: 16/9;
}

.news-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover figure img {
  transform: scale(1.04);
}

.news-card__body {
  padding: 3rem;
}

.news-card__date {
  font-size: 0.75rem;
  color: #A89E92;
  display: block;
  margin-bottom: 0.25rem;
}

.news-card h2,
.news-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card h2 a,
.news-card h3 a {
  color: #2C2416;
}

.news-card h2 a:hover,
.news-card h3 a:hover {
  color: #00a688;
}

.news-card p {
  font-size: 0.875rem;
  color: #6B7280;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
}

.badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.badge--green {
  background: rgba(46, 125, 50, 0.1);
  color: #2E7D32;
}

.badge--blue {
  background: rgba(21, 101, 192, 0.1);
  color: #1565C0;
}

.badge--amber {
  background: rgba(255, 105, 0, 0.15);
  color: #c4841c;
}

.badge--red {
  background: rgba(198, 40, 40, 0.1);
  color: #C62828;
}

.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.55) 100%);
  z-index: 1;
}

.home-hero .container {
  position: relative;
  z-index: 2;
}

.home-hero__content {
  max-width: 600px;
}

.home-hero__content h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.home-hero__content h1 .hero-indent {
  display: inline-block;
  padding-left: 3.5rem;
}

@media (max-width: 768px) {
  .home-hero {
    min-height: 75vh;
  }

  .home-hero__content h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .home-hero__content h1 .hero-indent {
    padding-left: 2rem;
  }
}

.home-help {
  background: #fff;
}

.home-help__header {
  margin-bottom: 4rem;
}

.home-help__header h2 {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 500;
  color: #2C2416;
  margin-bottom: 1rem;
}

.home-help__header p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  color: #6B7280;
  font-size: 1.3rem;
  max-width: 960px;
  margin: 0 auto;
  line-height: 28px;
}

.home-help__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .home-help__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .home-help__grid {
    grid-template-columns: 1fr;
  }
}

.help-card {
  background: #FFFFFF;
  border: 1px solid #E4DDD3;
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 260ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.help-card--active {
  border-color: rgba(0, 166, 136, 0.3);
  background: linear-gradient(160deg, rgba(0, 166, 136, 0.04) 0%, #FFFFFF 100%);
}

.help-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.help-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.help-card__icon--red {
  background: #E53935;
}

.help-card__icon--teal {
  background: #00a688;
}

.help-card__icon--green {
  background: #10B981;
}

.help-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #2C2416;
  margin-bottom: 0.5rem;
}

.help-card p {
  font-size: 0.9rem;
  color: #6B7280;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.help-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  min-width: 183px;
  transition: all 260ms cubic-bezier(0.4, 0, 0.2, 1);
  border-width: 0;
}

.help-card__btn--red {
  background: #E53935;
  color: #fff;
}

.help-card__btn--red:hover {
  background: #C62828;
  color: #fff;
  transform: translateY(-2px);
}

.help-card__btn--teal {
  background: #00a688;
  color: #fff;
}

.help-card__btn--teal:hover {
  background: #008b72;
  color: #fff;
  transform: translateY(-2px);
}

.help-card__btn--green {
  background: #10B981;
  color: #fff;
}

.help-card__btn--green:hover {
  background: #059669;
  color: #fff;
  transform: translateY(-2px);
}

.help-dialog {
  display: none;
  margin-top: 2rem;
  border-radius: 16px;
  overflow: hidden;
  animation: dialogSlideIn 350ms cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.help-dialog.active {
  display: block;
}

.help-dialog__inner {
  padding: 4rem 3rem;
  text-align: center;
}

.help-dialog__icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 3rem;
  background: rgba(255, 255, 255, 0.2);
}

.help-dialog__icon-wrap--teal {
  background: rgba(255, 255, 255, 0.2);
}

.help-dialog h3 {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.help-dialog__timing {
  font-size: 0.92rem;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.help-dialog__toll-label {
  font-size: 0.85rem;
  opacity: 0.65;
  margin-bottom: 0.25rem;
}

.help-dialog__phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.6rem;
  font-weight: 800;
  font-family: "Montserrat", "Inter", sans-serif;
  margin-bottom: 2rem;
}

.help-dialog__phone a {
  color: inherit;
  text-decoration: none;
}

.help-dialog__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.help-dialog__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 260ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.help-dialog__btn--outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.help-dialog__btn--outline:hover {
  background: #fff;
  color: #C62828;
}

.help-dialog__btn--solid {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.help-dialog__btn--solid:hover {
  background: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.help-dialog__btn--outline-teal {
  border: 2px solid #00a688;
  color: #00a688;
  background: transparent;
}

.help-dialog__btn--outline-teal:hover {
  background: #00a688;
  color: #fff;
}

.help-dialog__btn--solid-teal {
  background: #00a688;
  color: #fff;
  border: 2px solid #00a688;
}

.help-dialog__btn--solid-teal:hover {
  background: #008b72;
  border-color: #008b72;
  color: #fff;
}

.help-dialog--emergency {
  background: #C62828;
  color: #fff;
}

.help-dialog--emergency .help-dialog__phone a {
  color: #fff;
}

.help-dialog--teal {
  background: #FFFFFF;
  border: 1px solid #E4DDD3;
  color: #2C2416;
}

.help-dialog--teal .help-dialog__icon-wrap--teal {
  background: #00a688;
}

.help-dialog--teal h3 {
  color: #2C2416;
}

.help-dialog--teal .help-dialog__timing {
  color: #6B7280;
}

@keyframes dialogSlideIn {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

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

.help-card.is-selected {
  border-color: #00a688;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.help-card--active.is-selected {
  border-color: #E53935;
}

.home-donate {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  padding: 78px 0;
}

.home-donate .container {
  position: relative;
  z-index: 2;
}

.home-donate__content {
  max-width: 620px;
  margin: 0 auto;
  color: #fff;
}

.home-donate__label {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 3rem;
}

.home-donate h2 {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 3rem;
  word-spacing: 12px;
}

.home-donate p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.4;
  opacity: 0.8;
  margin-bottom: 3rem;
}

.btn--donate {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #FF6900;
  color: #fff;
  border: none;
  padding: 14px 36px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 260ms cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
  width: 233px;
}

.btn--donate:hover {
  background: #e69517;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 105, 0, 0.4);
}

.home-stories {
  background: #fff;
}

.home-stories__header {
  margin-bottom: 4rem;
}

.home-stories__header h2 {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #2C2416;
  margin-bottom: 1rem;
}

.home-stories__header p {
  color: #6B7280;
  font-size: 1rem;
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}

.home-stories__badge {
  display: inline-block;
  background: #7B2FF7;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 11.5px 26.5px;
  border-radius: 4px;
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .stories-grid {
    grid-template-columns: 1fr;
  }
}

.story-card {
  background: #FFFFFF;
  border: 1px solid #E4DDD3;
  border-radius: 16px;
  overflow: hidden;
  transition: all 260ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.story-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.story-card figure {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.story-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

.story-card:hover figure img {
  transform: scale(1.04);
}

.story-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #1f2937;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 9999px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.story-card__body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.story-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #2C2416;
  margin-bottom: 0.5rem;
}

.story-card p {
  font-size: 0.88rem;
  color: #6B7280;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.story-card__status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.story-card__status span {
  font-size: 0.88rem;
  font-weight: 600;
  color: #00a688;
}

.story-card__status svg {
  color: #00a688;
}

.home-stories .btn--outline {
  display: inline-block;
  padding: 11px 50px;
  background: transparent;
  border: 2px solid #00a688;
  color: #00a688;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: 12px;
  transition: all 260ms cubic-bezier(0.4, 0, 0.2, 1);
}

.home-stories .btn--outline:hover {
  background: #00a688;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 166, 136, 0.2);
}

.home-about {
  padding: 6rem 0;
}

.home-about__card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background-size: cover;
  background-position: center right;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.home-about__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20, 15, 8, 0.85) 0%, rgba(20, 15, 8, 0.6) 50%, rgba(20, 15, 8, 0.15) 100%);
  z-index: 1;
}

.home-about__content {
  position: relative;
  z-index: 2;
  max-width: 480px;
  padding: 4rem;
  color: #fff;
}

.home-about__content h3 {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 3rem;
}

.home-about__content p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 1rem;
}

.home-about__title {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #00a688 !important;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .home-about__card {
    min-height: 400px;
  }

  .home-about__overlay {
    background: rgba(20, 15, 8, 0.7);
  }

  .home-about__content {
    padding: 2rem;
  }
}

.btn--white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #2C2416;
  border: none;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: 3rem;
  transition: all 260ms cubic-bezier(0.4, 0, 0.2, 1);
}

.btn--white:hover {
  background: #00a688;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.section-title {
  font-size: 40px;
  color: #1A1A1A;
  margin-bottom: 0.5rem;
}

/* 1. Hero Section */
.about-hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

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

.about-hero__content {
  max-width: 600px;
}

.about-hero__title {
  font-size: clamp(3rem, 5vw, 3.3vw);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  text-transform: capitalize;
}

.about-hero__title span {
  display: block;
}

.about-hero__title .text-teal {
  color: #00a688;
}

/* 2. Our Story */
.about-story__wrap {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 769px) {
  .about-story__wrap {
    flex-direction: row;
    gap: 5rem;
  }
}

.about-story__img {
  flex: 1;
  width: 100%;
}

.about-story__img img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-story__content {
  flex: 1;
}

.about-story__content .section-subtitle {
  font-size: 1.1rem;
  color: #6B7280;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-story__text {
  margin-bottom: 2rem;
}

.about-story__text p {
  color: #2C2416;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-story__text p:last-child {
  margin-bottom: 0;
}

.about-story .about-btn {
  border-radius: 50px;
  padding: 1rem 2rem;
  font-weight: 600;
}

/* 3. Why We Exist */
.about-why {
  background-color: #F9FAFB;
}

.about-why .section-header {
  margin-bottom: 4rem;
}

.about-why .section-header .section-desc {
  color: #6B7280;
  max-width: 737px;
  margin: 1rem auto 0;
  font-size: 1.1rem;
}

.about-why__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 481px) {
  .about-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1025px) {
  .about-why__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-why .why-card {
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-why .why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.about-why .why-card__icon {
  width: 48px;
  height: 48px;
  background-color: #00a688;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.about-why .why-card__icon img {
  object-fit: contain;
}

.about-why .why-card__icon .icon-placeholder {
  width: 24px;
  height: 24px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.about-why .why-card:nth-child(1) .about-why .why-card__icon {
  background-color: #00BCAA;
}

.about-why .why-card:nth-child(2) .about-why .why-card__icon {
  background-color: #105F55;
}

.about-why .why-card:nth-child(3) .about-why .why-card__icon {
  background-color: #10A562;
}

.about-why .why-card:nth-child(4) .about-why .why-card__icon {
  background-color: #085E6E;
}

.about-why .why-card:nth-child(5) .about-why .why-card__icon {
  background-color: #00B368;
}

.about-why .why-card:nth-child(6) .about-why .why-card__icon {
  background-color: #009689;
}

.about-why .why-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2C2416;
  margin-bottom: 1rem;
}

.about-why .why-card__text {
  color: #6B7280;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.about-why__bottom {
  margin-top: 3.5rem;
  color: #6B7280;
  font-size: 1.1rem;
  font-weight: 500;
}

/* 4. What Makes Us Different */
.about-diff {
  background-color: #ffffff;
}

.about-diff .section-header {
  margin-bottom: 5rem;
}

.about-diff .badge--purple {
  background-color: #8B5CF6;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.about-diff .badge--purple svg {
  flex-shrink: 0;
}

.about-diff__blocks {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.about-diff .diff-block {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 769px) {
  .about-diff .diff-block {
    flex-direction: row;
    gap: 5rem;
  }
}

@media (min-width: 769px) {
  .about-diff .diff-block--reverse {
    flex-direction: row-reverse;
  }
}

.about-diff .diff-block__content {
  flex: 1;
}

.about-diff .diff-block__img {
  flex: 1;
  width: 100%;
}

.about-diff .diff-block__img img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-diff .diff-block__img .img-placeholder {
  width: 100%;
  height: 400px;
  background-color: #f1f5f9;
  border-radius: 1rem;
}

.about-diff .diff-block__icon {
  width: 56px;
  height: 56px;
  background-color: #00a688;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.about-diff .diff-block__icon img {
  object-fit: contain;
}

.about-diff .diff-block__icon .icon-placeholder {
  width: 28px;
  height: 28px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.about-diff .diff-block__title {
  font-size: 2rem;
  font-weight: 700;
  color: #1E5F74;
  margin-bottom: 1.5rem;
}

.about-diff .diff-block__text {
  color: #2C2416;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.about-diff .diff-block__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.about-diff .diff-block__list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: #6B7280;
}

.about-diff .diff-block__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #00a688;
  font-weight: bold;
}

.about-diff .diff-block .stat-box {
  background-color: #F8FAFC;
  padding: 1.5rem;
  border-radius: 0.75rem;
  display: inline-block;
}

.about-diff .diff-block .stat-box__num {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #1E5F74;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.about-diff .diff-block .stat-box__label {
  font-size: 0.9rem;
  color: #6B7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.page-template-temp-get-involved .page-hero .hero-content {
  margin: auto;
}

.get-involved-tabs {
  margin-top: -30px;
  position: relative;
  z-index: 10;
  padding: 0;
}

.get-involved-tabs .container {
  display: flex;
  justify-content: center;
}

.tab-nav {
  display: inline-flex;
  background: #ffffff;
  border-radius: 50px;
  padding: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #f3f4f6;
  gap: 0;
}

.tab-btn {
  background: transparent;
  border: none;
  padding: 12px 32px;
  font-size: 15px;
  font-weight: 600;
  color: #4b5563;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin: 0;
}

.tab-btn:hover {
  color: #00a388;
}

.tab-btn.active {
  background: #00a388;
  color: #ffffff;
}

.volunteer-application-form .uacf7-row {
  margin-bottom: 20px;
}

.volunteer-application-form .uacf7-row label {
  font-weight: 600;
  color: #374151;
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
}

.volunteer-application-form .wpcf7-form-control.wpcf7-text,
.volunteer-application-form .wpcf7-form-control.wpcf7-number,
.volunteer-application-form .wpcf7-form-control.wpcf7-date,
.volunteer-application-form .wpcf7-form-control.wpcf7-select,
.volunteer-application-form .wpcf7-form-control.wpcf7-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 15px;
  color: #1f2937;
  background: #f9fafb;
  transition: border-color 0.3s ease;
}

.volunteer-application-form .wpcf7-form-control.wpcf7-text:focus,
.volunteer-application-form .wpcf7-form-control.wpcf7-number:focus,
.volunteer-application-form .wpcf7-form-control.wpcf7-date:focus,
.volunteer-application-form .wpcf7-form-control.wpcf7-select:focus,
.volunteer-application-form .wpcf7-form-control.wpcf7-textarea:focus {
  outline: none;
  border-color: #00a388;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 163, 136, 0.1);
}

.volunteer-application-form .wpcf7-form-control.wpcf7-textarea {
  min-height: 120px;
  resize: vertical;
}

.volunteer-application-form .wpcf7-checkbox,
.volunteer-application-form .wpcf7-radio {
  display: flex !important;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 8px;
}

.volunteer-application-form .wpcf7-checkbox .wpcf7-list-item,
.volunteer-application-form .wpcf7-radio .wpcf7-list-item {
  margin: 0;
  display: inline-flex;
}

.volunteer-application-form .wpcf7-checkbox .wpcf7-list-item label,
.volunteer-application-form .wpcf7-radio .wpcf7-list-item label {
  display: flex;
  align-items: center;
  margin: 0 !important;
  font-weight: 400 !important;
  cursor: pointer;
}

.volunteer-application-form .wpcf7-checkbox .wpcf7-list-item input[type=checkbox],
.volunteer-application-form .wpcf7-checkbox .wpcf7-list-item input[type=radio],
.volunteer-application-form .wpcf7-radio .wpcf7-list-item input[type=checkbox],
.volunteer-application-form .wpcf7-radio .wpcf7-list-item input[type=radio] {
  margin: 0 8px 0 0 !important;
  width: 18px;
  height: 18px;
  accent-color: #00a388;
  cursor: pointer;
  display: inline-block;
}

.volunteer-application-form .wpcf7-checkbox .wpcf7-list-item span.wpcf7-list-item-label,
.volunteer-application-form .wpcf7-radio .wpcf7-list-item span.wpcf7-list-item-label {
  font-size: 15px;
  color: #4b5563;
  font-weight: 400;
}

.volunteer-application-form .submit-wrap {
  margin-top: 30px;
  text-align: center;
}

.volunteer-application-form .submit-wrap .btn {
  width: 100%;
  max-width: 300px;
  background: #00a388;
  color: #fff;
  border: none;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.volunteer-application-form .submit-wrap .btn:hover {
  background: #00826c;
}

.page-template-temp-lost-found {
  background-color: #FFFFFF;
}

.page-template-temp-lost-found .lf-hero {
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0d2b2b;
  background-image: linear-gradient(135deg, #0d2b2b 0%, #00534a 40%, #1a2a1a 100%);
}

.page-template-temp-lost-found .lf-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 60%, rgba(0, 0, 0, 0.65) 100%);
  z-index: 1;
}

.page-template-temp-lost-found .lf-hero .hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-template-temp-lost-found .lf-hero h1 {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.page-template-temp-lost-found .lf-hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 600;
}

.page-template-temp-lost-found .lf-main-content {
  background-color: #FEF2F2;
  padding: 4rem 1rem 6rem;
  transition: background-color 0.4s ease;
}

.page-template-temp-lost-found .lf-main-content.is-found {
  background-color: #F0FDFA;
}

.page-template-temp-lost-found .lf-main-content .form-hero-title {
  margin-bottom: 2.5rem;
}

.page-template-temp-lost-found .lf-main-content .form-hero-title h2 {
  color: #DC2626;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.page-template-temp-lost-found .lf-main-content .form-hero-title h2.text-teal {
  color: #0d9488;
}

.page-template-temp-lost-found .lf-main-content .form-hero-title p {
  color: #4B5563;
  font-size: 1.05rem;
  margin: 0;
}

.page-template-temp-lost-found .lf-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.page-template-temp-lost-found .lf-tabs .lf-tab-btn {
  border: none;
  border-radius: 6px;
  padding: 1rem 1.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.2s ease;
  outline: none;
  font-family: inherit;
}

.page-template-temp-lost-found .lf-tabs .lf-tab-btn.lf-tab-btn--red {
  background-color: #DC2626;
}

.page-template-temp-lost-found .lf-tabs .lf-tab-btn.lf-tab-btn--red:hover {
  background-color: rgb(187.0333333333, 30.1666666667, 30.1666666667);
}

.page-template-temp-lost-found .lf-tabs .lf-tab-btn.lf-tab-btn--red.active {
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.35);
}

.page-template-temp-lost-found .lf-tabs .lf-tab-btn.lf-tab-btn--red:not(.active) {
  opacity: 0.65;
}

.page-template-temp-lost-found .lf-tabs .lf-tab-btn.lf-tab-btn--teal {
  background-color: #009689;
}

.page-template-temp-lost-found .lf-tabs .lf-tab-btn.lf-tab-btn--teal:hover {
  background-color: rgb(0, 109.2, 99.736);
}

.page-template-temp-lost-found .lf-tabs .lf-tab-btn.lf-tab-btn--teal.active {
  box-shadow: 0 4px 12px rgba(0, 150, 137, 0.35);
}

.page-template-temp-lost-found .lf-tabs .lf-tab-btn.lf-tab-btn--teal:not(.active) {
  opacity: 0.85;
}

.page-template-temp-lost-found .lf-forms-wrapper {
  background: #FFFFFF;
  border: none;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.04);
  margin: 0 auto;
  max-width: 900px;
}

.page-template-temp-lost-found .lf-forms-wrapper .head {
  padding: 14px 63px;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.page-template-temp-lost-found .lf-forms-wrapper .content {
  padding: 4rem;
}

.page-template-temp-lost-found #form-lost .lf-forms-wrapper .head {
  background: #DC2626;
}

.page-template-temp-lost-found #form-found .lf-forms-wrapper .head {
  background: #009689;
}

.page-template-temp-lost-found #form-found .wpcf7 .section-title {
  color: #111827;
}

.page-template-temp-lost-found #form-found .wpcf7 .title-underline {
  background-color: #9CA3AF;
}

.page-template-temp-lost-found #form-found .wpcf7 .photo-upload-box .upload-inner input[type=file]::file-selector-button {
  background-color: #009689;
}

.page-template-temp-lost-found #form-found .wpcf7 .submit-wrap input[type=submit],
.page-template-temp-lost-found #form-found .wpcf7 .submit-wrap .wpcf7-submit {
  background-color: #009689;
}

.page-template-temp-lost-found #form-found .wpcf7 .submit-wrap input[type=submit]:hover,
.page-template-temp-lost-found #form-found .wpcf7 .submit-wrap .wpcf7-submit:hover {
  background-color: rgb(0, 109.2, 99.736);
}

.page-template-temp-lost-found #form-found .wpcf7 .wpcf7-list-item label input[type=radio],
.page-template-temp-lost-found #form-found .wpcf7 .wpcf7-list-item label input[type=checkbox] {
  accent-color: #009689;
}

.page-template-temp-lost-found .lf-tab-pane {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.page-template-temp-lost-found .lf-tab-pane.active {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}

.page-template-temp-lost-found .wpcf7 .uacf7-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.page-template-temp-lost-found .wpcf7 .uacf7-row .uacf7-col {
  flex: 1;
  min-width: 250px;
  margin-bottom: 0 !important;
}

.page-template-temp-lost-found .wpcf7 .section-title {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #DC2626;
  margin-bottom: 0.8rem;
  margin-top: 3.5rem;
}

.page-template-temp-lost-found .wpcf7 .section-title:first-child {
  margin-top: 0;
}

.page-template-temp-lost-found .wpcf7 .title-underline {
  border: none;
  height: 1.5px;
  background-color: #DC2626;
  margin-bottom: 2rem;
  opacity: 1;
  width: 100%;
}

.page-template-temp-lost-found .wpcf7 label {
  display: block;
  font-weight: 600;
  color: #111827;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
}

.page-template-temp-lost-found .wpcf7 input[type=text],
.page-template-temp-lost-found .wpcf7 input[type=email],
.page-template-temp-lost-found .wpcf7 input[type=tel],
.page-template-temp-lost-found .wpcf7 input[type=date],
.page-template-temp-lost-found .wpcf7 input[type=time],
.page-template-temp-lost-found .wpcf7 select,
.page-template-temp-lost-found .wpcf7 textarea {
  width: 100%;
  height: 48px;
  background-color: #F3F4F6;
  border: 1px solid #F3F4F6;
  border-radius: 6px;
  padding: 0 1.25rem;
  font-size: 0.95rem;
  color: #111827;
  margin-bottom: 1.5rem;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  transition: all 0.2s ease;
}

.page-template-temp-lost-found .wpcf7 input[type=text]:focus,
.page-template-temp-lost-found .wpcf7 input[type=email]:focus,
.page-template-temp-lost-found .wpcf7 input[type=tel]:focus,
.page-template-temp-lost-found .wpcf7 input[type=date]:focus,
.page-template-temp-lost-found .wpcf7 input[type=time]:focus,
.page-template-temp-lost-found .wpcf7 select:focus,
.page-template-temp-lost-found .wpcf7 textarea:focus {
  border-color: #DC2626;
  background-color: #fff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.page-template-temp-lost-found .wpcf7 input[type=text]::placeholder,
.page-template-temp-lost-found .wpcf7 input[type=email]::placeholder,
.page-template-temp-lost-found .wpcf7 input[type=tel]::placeholder,
.page-template-temp-lost-found .wpcf7 input[type=date]::placeholder,
.page-template-temp-lost-found .wpcf7 input[type=time]::placeholder,
.page-template-temp-lost-found .wpcf7 select::placeholder,
.page-template-temp-lost-found .wpcf7 textarea::placeholder {
  color: #9CA3AF;
}

.page-template-temp-lost-found .wpcf7 textarea {
  height: auto;
  min-height: 120px;
  padding: 1.25rem;
  resize: vertical;
}

.page-template-temp-lost-found .wpcf7 .wpcf7-radio,
.page-template-temp-lost-found .wpcf7 .wpcf7-checkbox {
  display: flex;
  align-items: center;
  height: 48px;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.page-template-temp-lost-found .wpcf7 .wpcf7-checkbox {
  height: auto;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.page-template-temp-lost-found .wpcf7 .wpcf7-list-item {
  margin: 0;
}

.page-template-temp-lost-found .wpcf7 .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0;
  cursor: pointer;
}

.page-template-temp-lost-found .wpcf7 .wpcf7-list-item label input[type=radio],
.page-template-temp-lost-found .wpcf7 .wpcf7-list-item label input[type=checkbox] {
  margin: 0;
  accent-color: #DC2626;
  width: 18px;
  height: 18px;
}

.page-template-temp-lost-found .wpcf7 .photo-upload-box {
  border: 1.5px dashed #D1D5DB;
  border-radius: 12px;
  padding: 4rem 2rem;
  background-color: #FFFFFF;
  transition: border-color 0.2s ease;
  margin-bottom: 2rem;
}

.page-template-temp-lost-found .wpcf7 .photo-upload-box:hover {
  border-color: #DC2626;
}

.page-template-temp-lost-found .wpcf7 .photo-upload-box .upload-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.page-template-temp-lost-found .wpcf7 .photo-upload-box .upload-inner svg {
  color: #6B7280;
  width: 32px;
  height: 32px;
  margin-bottom: 0.5rem;
}

.page-template-temp-lost-found .wpcf7 .photo-upload-box .upload-inner p {
  font-size: 0.95rem;
  color: #374151;
  margin: 0;
  text-align: center;
  font-weight: 500;
}

.page-template-temp-lost-found .wpcf7 .photo-upload-box .upload-inner p strong {
  color: #111827;
}

.page-template-temp-lost-found .wpcf7 .photo-upload-box .upload-inner p small {
  display: block;
  font-size: 0.85rem;
  color: #9CA3AF;
  margin-top: 0.5rem;
  font-weight: 400;
}

.page-template-temp-lost-found .wpcf7 .photo-upload-box .upload-inner input[type=file] {
  border: none;
  background: transparent;
  padding: 0;
  margin-top: 1rem;
  width: auto;
  font-size: 0.9rem;
  text-align: center;
}

.page-template-temp-lost-found .wpcf7 .photo-upload-box .upload-inner input[type=file]::file-selector-button {
  background-color: #DC2626;
  color: white !important;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  margin-right: 0.5rem;
}

.page-template-temp-lost-found .wpcf7 .form-info-box {
  background-color: #F9FAFB;
  border-radius: 8px;
  padding: 2.5rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  border: none;
}

.page-template-temp-lost-found .wpcf7 .form-info-box h4 {
  font-weight: 600;
  color: #111827;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

.page-template-temp-lost-found .wpcf7 .form-info-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-template-temp-lost-found .wpcf7 .form-info-box ul li {
  font-size: 0.95rem;
  color: #4B5563;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.page-template-temp-lost-found .wpcf7 .submit-wrap {
  margin-top: 2rem;
}

.page-template-temp-lost-found .wpcf7 .submit-wrap input[type=submit],
.page-template-temp-lost-found .wpcf7 .submit-wrap .wpcf7-submit {
  width: 100%;
  background-color: #DC2626;
  color: #FFFFFF;
  font-family: "Montserrat", "Inter", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.page-template-temp-lost-found .wpcf7 .submit-wrap input[type=submit]:hover,
.page-template-temp-lost-found .wpcf7 .submit-wrap .wpcf7-submit:hover {
  background-color: #B91C1C;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

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

.raise-request-hero.page-hero {
  min-height: 480px;
  background-position: center 30%;
}

.raise-request-hero.page-hero .hero-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.raise-request-hero.page-hero .hero-content {
  max-width: 100%;
  text-align: center;
  margin: 0 auto;
}

.raise-request-hero.page-hero .hero-content .hero-label {
  display: none;
}

.raise-request-hero.page-hero .hero-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.raise-request-hero.page-hero .hero-content p {
  display: none;
}

.rescue-wizard-section {
  padding: 4rem 0;
  background-color: var(--color-bg-alt, #f8f9fa);
}

.rescue-wizard-section .wizard-subtitle {
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.rescue-wizard-section .wizard-progress {
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

.rescue-wizard-section .wizard-progress .wizard-progress-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
}

.rescue-wizard-section .wizard-progress .wizard-progress-track {
  height: 6px;
  background-color: #d1fae5;
  border-radius: 999px;
  overflow: hidden;
}

.rescue-wizard-section .wizard-progress .wizard-progress-fill {
  height: 100%;
  background-color: #00a651;
  border-radius: 999px;
  transition: width 0.4s ease;
}

.rescue-wizard-section .wizard-step-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.rescue-wizard-section .wizard-step-header h2 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0;
}

.rescue-wizard-section .wizard-step-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #00a651;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rescue-wizard-section .rescue-wizard {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  margin: 0 auto;
}

.rescue-wizard-section .rescue-wizard h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.rescue-wizard-section .rescue-wizard .wizard-step-sub {
  font-size: 16px;
  color: #6c757d;
  margin-bottom: 2rem;
}

.rescue-wizard-section .wizard-step {
  display: none;
}

.rescue-wizard-section .wizard-step.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.rescue-wizard-section .form-group {
  margin-bottom: 1.5rem;
}

.rescue-wizard-section .form-row {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.rescue-wizard-section .form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .rescue-wizard-section .form-row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .rescue-wizard-section .form-row .form-group {
    margin-bottom: 0;
  }
}

.rescue-wizard-section .form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #333;
}

.rescue-wizard-section .form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 16px;
  border: 1px solid #ced4da;
  border-radius: 6px;
  transition: border-color 0.2s ease;
}

.rescue-wizard-section .form-control:focus {
  outline: none;
  border-color: #00a651;
  box-shadow: 0 0 0 3px rgba(0, 166, 81, 0.1);
}

.rescue-wizard-section textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.rescue-wizard-section .wizard-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e9ecef;
  /* Right-align if only Next button is present */
  display: flex;
}

.rescue-wizard-section .wizard-nav .wizard-next {
  margin-left: auto;
  /* Pushes to the right */
}

.rescue-wizard-section .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.rescue-wizard-section .btn--primary {
  background-color: #00a651;
  color: #ffffff;
}

.rescue-wizard-section .btn--primary:hover {
  background-color: #008f47;
}

.rescue-wizard-section .btn--outline {
  background-color: transparent;
  border-color: #ced4da;
  color: #495057;
}

.rescue-wizard-section .btn--outline:hover {
  background-color: #f8f9fa;
  border-color: #adb5bd;
}

.rescue-wizard-section .btn--lg {
  padding: 1rem 2rem;
  font-size: 18px;
}

.rescue-wizard-section .rescue-review-box {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.rescue-wizard-section .rescue-review-box .review-item {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e9ecef;
}

.rescue-wizard-section .rescue-review-box .review-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.rescue-wizard-section .rescue-review-box .review-item strong {
  display: block;
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 0.25rem;
}

.rescue-wizard-section .rescue-review-box .review-item span {
  font-size: 16px;
  color: #212529;
  display: block;
}

/*# sourceMappingURL=style.css.map */