/* =============================================
   HAMPI ZOO - REDESIGN COMPILED CSS
   Compiled from SCSS partials
   ============================================= */

/* --- Animations --- */

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-up {
  animation: fadeUp 0.6s ease forwards;
}

/* --- Base Styles --- */

html {
  scroll-behavior: smooth;
}

body {
  background-color: #F8F9FA;
  font-family: 'Montserrat', sans-serif;
  color: #1A1A2E;
  font-size: 0.95rem;
  line-height: 1.7;
}

::selection {
  background: #D8F3DC;
}

a {
  color: #2D6A4F;
  transition: color 0.2s ease;
}

a:hover {
  color: #52B788;
}

img {
  max-width: 100%;
}

/* Section utilities */
.section-padding {
  padding: 5rem 0;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1B4332;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #DDA15E;
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #4A4A5A;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Accessibility font size classes */
.smaller html {
  font-size: 14px;
}

.normal html {
  font-size: 16px;
}

.bigger html {
  font-size: 18px;
}

/* --- Button Styles --- */

.btn-golden {
  background: #DDA15E;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-golden:hover {
  background: #c48545;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.btn-green {
  background: #2D6A4F;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-green:hover {
  background: #1B4332;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.btn-outline-green {
  border: 2px solid #2D6A4F;
  color: #2D6A4F;
  background: transparent;
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline-green:hover {
  background: #2D6A4F;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Read more button */
.read-btn {
  color: #2D6A4F;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  border-radius: 50px;
  padding: 8px 24px;
  border: 2px solid #2D6A4F;
  display: inline-block;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.read-btn:hover {
  background: #2D6A4F;
  color: #ffffff;
}

/* Bootstrap override */
.btn-primary {
  background-color: #2D6A4F;
  border-color: #2D6A4F;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #1B4332;
  border-color: #1B4332;
}

/* --- Decorative Shapes and Dividers --- */

.wave-divider {
  position: relative;
  overflow: hidden;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

.wave-divider--green svg path {
  fill: #1B4332;
}

.wave-divider--cream svg path {
  fill: #FEFAE0;
}

.wave-divider--white svg path {
  fill: #ffffff;
}

/* Leaf / dot pattern overlay */
.leaf-pattern {
  background-image: radial-gradient(circle, #1B4332 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.03;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* --- Navbar Styles --- */

.navbar-redesign {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Utility bar */
.navbar-utility {
  background: #1B4332;
  padding: 4px 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.navbar-utility a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.navbar-utility a:hover {
  color: #DDA15E;
}

.navbar-utility .utility-controls {
  display: flex;
  gap: 8px;
  align-items: center;
}

.navbar-utility .font-ctrl a {
  cursor: pointer;
  padding: 0 3px;
}

/* Main navbar */
.navbar-main {
  background: transparent;
  padding: 12px 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-redesign.scrolled .navbar-main {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 8px 0;
}

/* Brand */
.navbar-brand img {
  height: 50px;
  transition: height 0.2s ease;
}

.scrolled .navbar-brand img {
  height: 40px;
}

/* Nav links */
.nav-link {
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  padding: 8px 14px;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: #DDA15E;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-link:hover {
  color: #DDA15E;
}

.scrolled .nav-link {
  color: #1A1A2E;
}

.scrolled .nav-link:hover {
  color: #2D6A4F;
}

/* CTA button in nav */
.nav-cta {
  background: #DDA15E;
  color: #ffffff;
  border-radius: 50px;
  padding: 8px 20px;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  border: none;
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.nav-cta:hover {
  background: #c98e4d;
  color: #ffffff;
  transform: translateY(-1px);
}

/* Mobile overlay menu */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27, 67, 50, 0.97);
  z-index: 1060;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-menu-overlay a {
  font-size: 1.8rem;
  color: #ffffff;
  margin: 12px 0;
  font-family: 'Playfair Display', serif;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mobile-menu-overlay a:hover {
  color: #DDA15E;
}

/* Hamburger */
.hamburger {
  background: none;
  border: none;
  z-index: 1070;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: #ffffff;
  margin: 6px 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger.active span {
  background: #ffffff;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

.scrolled .hamburger span {
  background: #1A1A2E;
}

/* --- Hero Section Styles --- */

.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-section .swiper {
  width: 100%;
  height: 100%;
}

.hero-section .swiper-slide {
  height: 100%;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 67, 50, 0.85) 0%,
    rgba(27, 67, 50, 0.4) 50%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 8%;
  max-width: 650px;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.8rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  margin-bottom: 2rem;
}

/* Hero buttons */
.hero-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-right: 12px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.hero-btn-primary {
  background: #DDA15E;
  color: #ffffff;
}

.hero-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  color: #ffffff;
  background: #d19550;
}

.hero-btn-outline {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.hero-btn-outline:hover {
  background: #ffffff;
  color: #1B4332;
}

/* Timing bar at bottom of hero */
.hero-timing-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(27, 67, 50, 0.9);
  backdrop-filter: blur(5px);
  padding: 14px 0;
  color: #ffffff;
  z-index: 3;
  font-size: 0.9rem;
}

.hero-timing-bar i {
  color: #DDA15E;
}

/* Page hero for inner pages */
.page-hero {
  height: 45vh;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(27, 67, 50, 0.65);
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #ffffff;
  z-index: 1;
  position: relative;
  text-align: center;
}

/* --- Card Styles --- */

/* Info card (generic) */
.info-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.info-card__icon {
  width: 60px;
  height: 60px;
  background: #D8F3DC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #2D6A4F;
  font-size: 1.5rem;
}

.info-card__title {
  font-weight: 600;
  color: #1A1A2E;
  margin-bottom: 0.5rem;
}

/* Tariff card */
.tariff-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.tariff-card__header {
  background: linear-gradient(135deg, #1B4332, #2D6A4F);
  color: #ffffff;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
}

/* --- Animal Gallery Styles --- */

.animal-gallery {
  padding: 4rem 0;
}

/* Filter buttons */
.animal-gallery__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 3rem;
}

.filter-btn {
  border: 2px solid #2D6A4F;
  color: #2D6A4F;
  background: transparent;
  border-radius: 50px;
  padding: 8px 24px;
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn:hover,
.filter-btn.active {
  background: #2D6A4F;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Grid layout */
.animal-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

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

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

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

.animal-gallery__item {
  margin-bottom: 24px;
  break-inside: avoid;
}

/* Animal card */
.animal-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.animal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.20);
}

.animal-card:hover .animal-card__image img {
  transform: scale(1.08);
}

.animal-card:hover .animal-card__overlay {
  opacity: 1;
  transform: translateY(0);
}

.animal-card__image {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  max-height: 320px;
}

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

.animal-card__image .lazy-placeholder {
  background: #D8F3DC;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.animal-card__image .lazy-placeholder::before {
  content: '\f1b0';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  font-size: 2rem;
  color: rgba(45, 106, 79, 0.3);
}

.animal-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  background: linear-gradient(transparent, rgba(27, 67, 50, 0.9));
  color: #ffffff;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.animal-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.animal-card__category {
  display: inline-block;
  background: rgba(221, 161, 94, 0.9);
  color: #ffffff;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Animal gallery responsive grid columns */
@media (min-width: 1400px) {
  .animal-gallery__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1399px) and (min-width: 1200px) {
  .animal-gallery__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 1199px) and (min-width: 768px) {
  .animal-gallery__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) and (min-width: 576px) {
  .animal-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .animal-gallery__grid {
    grid-template-columns: 1fr;
  }
}

/* --- Home Page Section Styles --- */

/* Stats section */
.stats-section {
  background: #1B4332;
  padding: 4rem 0;
  color: #ffffff;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 800;
  color: #DDA15E;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.85;
  margin-top: 8px;
}

/* Mission section */
.mission-section {
  background: #FEFAE0;
  padding: 5rem 0;
}

.mission-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #1B4332;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  padding: 0 3rem;
}

.mission-quote::before,
.mission-quote::after {
  font-size: 4rem;
  color: #D8F3DC;
  position: absolute;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.mission-quote::before {
  content: '\201C';
  top: -10px;
  left: 0;
}

.mission-quote::after {
  content: '\201D';
  bottom: -30px;
  right: 0;
}

/* Featured animals */
.featured-animals {
  padding: 5rem 0;
}

.featured-animal-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-animal-card:hover {
  transform: translateY(-5px);
}

/* Adoption CTA */
.adoption-cta {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 6rem 0;
  text-align: center;
}

.adoption-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(27, 67, 50, 0.8);
}

.adoption-cta .adoption-cta__content {
  z-index: 1;
  position: relative;
  color: #ffffff;
}

.adoption-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.adoption-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.adoption-cta .btn {
  background: #DDA15E;
  color: #ffffff;
  border-radius: 50px;
  padding: 14px 36px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  border: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.adoption-cta .btn:hover {
  background: #c48545;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  color: #ffffff;
}

/* Gallery preview */
.gallery-preview {
  padding: 5rem 0;
}

.gallery-preview .img-outbox {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  aspect-ratio: 1 / 1;
}

.gallery-preview .img-outbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-preview .img-outbox:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 48px rgba(0,0,0,0.20);
}

.gallery-preview .img-outbox:hover img {
  transform: scale(1.05);
}

/* News section */
.news-section {
  padding: 5rem 0;
  background: #F8F9FA;
}

.news-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.news-card__image {
  overflow: hidden;
  height: 200px;
}

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

.news-card__body {
  padding: 20px;
}

.news-card__date {
  color: #DDA15E;
  font-weight: 600;
  font-size: 0.8rem;
}

.news-card__title {
  font-weight: 600;
  color: #1A1A2E;
  margin: 8px 0;
}

.news-card__link {
  color: #2D6A4F;
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-card__link:hover {
  color: #52B788;
}

/* --- Inner Page Styles (visit, about, adoption, news) --- */

/* Visit page - timing card */
.visit-timing {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.visit-timing .visit-timing__header {
  background: linear-gradient(135deg, #1B4332, #2D6A4F);
  color: #ffffff;
  padding: 1.2rem 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.visit-timing .visit-timing__body {
  padding: 1.5rem;
}

.visit-timing .visit-timing__row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(26, 26, 46, 0.08);
}

.visit-timing .visit-timing__row:last-child {
  border-bottom: none;
}

.visit-timing .visit-timing__day {
  font-weight: 600;
  color: #1A1A2E;
}

.visit-timing .visit-timing__time {
  color: #4A4A5A;
}

/* Amenity grid */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.amenity-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.amenity-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.amenity-item i {
  font-size: 2rem;
  color: #2D6A4F;
  margin-bottom: 0.75rem;
  display: block;
}

.amenity-item span {
  font-weight: 500;
  font-size: 0.9rem;
  color: #1A1A2E;
}

/* About page */
.about-content p {
  color: #4A4A5A;
  margin-bottom: 1rem;
}

/* Timeline for adoption steps */
.timeline-modern {
  position: relative;
  padding-left: 40px;
}

.timeline-modern::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #2D6A4F;
}

.timeline-modern__step {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
}

.timeline-modern__step::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #DDA15E;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 2px #DDA15E;
}

.timeline-modern__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1B4332;
  margin-bottom: 0.5rem;
}

.timeline-modern__text {
  color: #4A4A5A;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* News detail page */
.news-detail .news-detail__meta {
  color: #4A4A5A;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

.news-detail .news-detail__meta span {
  margin-right: 1rem;
}

.news-detail .news-detail__meta i {
  color: #DDA15E;
  margin-right: 4px;
}

.news-detail .news-detail__content {
  color: #4A4A5A;
  line-height: 1.8;
}

.news-detail .news-detail__content h2,
.news-detail .news-detail__content h3 {
  font-family: 'Playfair Display', serif;
  color: #1B4332;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.news-detail .news-detail__content img {
  border-radius: 16px;
  margin: 1.5rem 0;
}

/* Adoption page */
.adoption-info {
  background: #FEFAE0;
  border-radius: 16px;
  padding: 2rem;
}

.adoption-info h4 {
  font-family: 'Playfair Display', serif;
  color: #1B4332;
  margin-bottom: 1rem;
}

.adoption-info ul {
  color: #4A4A5A;
}

.adoption-info ul li {
  margin-bottom: 0.5rem;
}

/* --- Footer Styles --- */

/* Pre-footer CTA */
.pre-footer {
  background: #2D6A4F;
  padding: 3rem 0;
  text-align: center;
}

.pre-footer h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.pre-footer .btn {
  background: #DDA15E;
  color: #ffffff;
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
  border: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.pre-footer .btn:hover {
  background: #c48545;
  transform: translateY(-2px);
  color: #ffffff;
}

/* Main footer */
.footer-redesign {
  background: #16251C;
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 1.5rem;
}

.footer-redesign h6 {
  color: #DDA15E;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.footer-redesign ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-redesign ul li {
  margin-bottom: 8px;
}

.footer-redesign ul a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-redesign ul a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-redesign address {
  font-style: normal;
  line-height: 1.8;
}

.footer-redesign .foot-hdng-icon {
  color: #DDA15E;
  margin-right: 8px;
}

/* Social icons */
.follow-icon a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  margin-right: 8px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.follow-icon a:hover {
  background: #52B788;
  border-color: #52B788;
  color: #ffffff;
  transform: translateY(-3px);
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* --- Responsive Breakpoints --- */

@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content {
    padding-left: 5%;
    max-width: 90%;
  }

  .section-padding {
    padding: 3.5rem 0;
  }

  .stat-number {
    font-size: 2.5rem;
  }
}

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

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-btn {
    padding: 12px 24px;
    font-size: 0.8rem;
    display: block;
    text-align: center;
    margin-bottom: 12px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .page-hero {
    height: 35vh;
    min-height: 250px;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .navbar-collapse {
    display: none !important;
  }

  .hamburger {
    display: block !important;
  }

  .stats-section .row {
    gap: 1rem;
  }

  .mission-quote {
    font-size: 1.2rem;
  }

  .footer-redesign {
    padding: 3rem 0 1rem;
  }

  .adoption-cta h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 1.7rem;
  }

  .section-padding {
    padding: 2.5rem 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .animal-gallery__filters {
    gap: 6px;
  }

  .filter-btn {
    padding: 6px 16px;
    font-size: 0.75rem;
  }

  .pre-footer h3,
  .prefooter-cta__title {
    font-size: 1.5rem;
  }
}

/* =============================================
   TEMPLATE-SPECIFIC CLASS ALIASES & ADDITIONS
   (Bridge between SCSS partial names and Blade template names)
   ============================================= */

/* --- Utility Bar (Navbar top) --- */
.utility-bar {
  background: #1B4332;
  padding: 4px 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
}

.utility-bar__org {
  font-weight: 500;
  letter-spacing: 0.3px;
}

.utility-bar__right {
  gap: 10px;
}

.utility-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
  font-size: 0.75rem;
}

.utility-link:hover {
  color: #DDA15E;
}

.utility-divider {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 4px;
}

.fc-btn {
  cursor: pointer;
  padding: 0 3px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.75rem;
}

.fc-btn:hover {
  color: #DDA15E;
}

/* --- Navbar Main Row --- */
.navbar-main,
.main-nav {
  background: transparent;
  padding: 14px 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-redesign.scrolled .navbar-main,
.navbar-redesign.scrolled .main-nav {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 10px 0;
}

/* Brand */
.main-nav__brand {
  text-decoration: none;
}

/* Desktop Menu */
.main-nav__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Nav Links */
.nav-link-redesign {
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  padding: 10px 16px;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-link-redesign::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: #DDA15E;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link-redesign:hover::after {
  transform: scaleX(1);
}

.nav-link-redesign:hover {
  color: #DDA15E;
}

.navbar-redesign.scrolled .nav-link-redesign {
  color: #1A1A2E;
}

.navbar-redesign.scrolled .nav-link-redesign:hover {
  color: #DDA15E;
}

/* Nav Buttons */
.nav-btn {
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  display: inline-block;
}

.nav-btn--golden {
  background: #DDA15E;
  color: #ffffff;
  border: 2px solid #DDA15E;
}

.nav-btn--golden:hover {
  background: #c98e4d;
  border-color: #c98e4d;
  color: #ffffff;
  transform: translateY(-1px);
}

.nav-btn--primary {
  background: #2D6A4F;
  color: #ffffff;
  border: 2px solid #2D6A4F;
}

.nav-btn--primary:hover {
  background: #1B4332;
  border-color: #1B4332;
  color: #ffffff;
}

.nav-btn--outline {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.5);
}

.nav-btn--outline:hover {
  background: #ffffff;
  color: #1B4332;
  border-color: #ffffff;
}

.navbar-redesign.scrolled .nav-btn--outline {
  color: #2D6A4F;
  border-color: #2D6A4F;
}

.navbar-redesign.scrolled .nav-btn--outline:hover {
  background: #2D6A4F;
  color: #ffffff;
}

/* --- Nav CTA Button --- */
.nav-cta {
  background: #DDA15E;
  color: #ffffff;
  border-radius: 50px;
  padding: 8px 20px;
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  border: none;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.nav-cta:hover {
  background: #c98e4d;
  transform: translateY(-1px);
  color: #ffffff;
}

.nav-cta--outline {
  background: transparent;
  border: 2px solid #DDA15E;
  color: #DDA15E;
}

.nav-cta--outline:hover {
  background: #DDA15E;
  color: #ffffff;
}

/* --- Mobile Menu Overlay Inner --- */
.mobile-menu-overlay__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mobile-menu-overlay__inner hr {
  width: 80px;
  border-color: rgba(255, 255, 255, 0.2);
  margin: 12px 0;
}

.mobile-cta {
  font-size: 1.2rem !important;
  padding: 8px 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
}

.mobile-cta--golden {
  background: #DDA15E;
  border-color: #DDA15E;
}

/* --- Pre-Footer CTA --- */
.prefooter-cta {
  background: linear-gradient(135deg, #2D6A4F, #1B4332);
  padding: 4rem 0;
  text-align: center;
}

.prefooter-cta__title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.prefooter-cta__subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.prefooter-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Redesign Buttons --- */
.btn-redesign {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.btn-redesign--golden {
  background: #DDA15E;
  color: #ffffff;
  border-color: #DDA15E;
}

.btn-redesign--golden:hover {
  background: #c48545;
  border-color: #c48545;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-redesign--outline-white {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.btn-redesign--outline-white:hover {
  background: #ffffff;
  color: #1B4332;
  border-color: #ffffff;
}

/* --- Footer BEM Classes --- */
.footer-redesign__logo {
  height: 50px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.footer-redesign__text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-redesign__contact {
  margin-top: 1rem;
}

.footer-redesign__contact p {
  margin-bottom: 6px;
  font-size: 0.9rem;
}

.footer-redesign__contact i {
  color: #DDA15E;
  margin-right: 8px;
}

.footer-redesign__contact a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-redesign__contact a:hover {
  color: #ffffff;
}

.footer-redesign__social {
  display: flex;
  gap: 10px;
}

.footer-redesign__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-redesign__social a:hover {
  background: #52B788;
  border-color: #52B788;
  color: #ffffff;
  transform: translateY(-3px);
}

.footer-redesign__heading {
  color: #DDA15E;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
  font-weight: 700;
}

.footer-redesign__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-redesign__links li {
  margin-bottom: 8px;
}

.footer-redesign__links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease, padding-left 0.2s ease;
  font-size: 0.9rem;
}

.footer-redesign__links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-redesign__timing {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-redesign__timing i {
  color: #DDA15E;
  margin-right: 8px;
}

.footer-redesign__timing p {
  margin-bottom: 6px;
}

.footer-redesign__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-redesign__bottom p {
  margin: 0;
}

.footer-redesign__bottom-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-redesign__bottom-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-redesign__bottom-links a:hover {
  color: #ffffff;
}

/* --- Page Hero Additions --- */
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 67, 50, 0.65);
}

.page-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 1;
  text-align: center;
  margin-top: 0.5rem;
}

/* --- Filter Section & Bar --- */
.filter-section {
  padding: 2.5rem 0 0;
}

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

/* --- Animal Card Badge --- */
.animal-card__badge {
  display: inline-block;
  background: rgba(221, 161, 94, 0.9);
  color: #ffffff;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Hero Slide BEM Aliases --- */
.hero-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,67,50,0.85) 0%, rgba(27,67,50,0.4) 50%, transparent 100%);
  z-index: 1;
}

.hero-slide__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 5%;
  max-width: 700px;
}

.hero-slide__badge {
  display: inline-block;
  background: rgba(221,161,94,0.25);
  color: #DDA15E;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.2rem;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(221,161,94,0.3);
  width: fit-content;
}

.hero-slide__title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-slide__subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 540px;
  line-height: 1.7;
}

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

/* --- Swiper Pagination Custom --- */
.swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #DDA15E;
}

/* --- Gallery Section Button --- */
.gallery-section .btn-golden {
  background: #DDA15E;
  color: #ffffff;
  border-radius: 50px;
  padding: 12px 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.85rem;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-section .btn-golden:hover {
  background: #c48545;
  transform: translateY(-2px);
  color: #ffffff;
}

/* --- Responsive additions for new classes --- */
@media (max-width: 768px) {
  .prefooter-cta {
    padding: 3rem 0;
  }

  .prefooter-cta__title {
    font-size: 1.6rem;
  }

  .page-hero__title {
    font-size: 2rem;
  }

  .footer-redesign__bottom {
    text-align: center;
  }

  .footer-redesign__bottom-links {
    justify-content: center;
    margin-top: 0.5rem;
  }

  .utility-bar {
    display: none;
  }
}

@media (max-width: 576px) {
  .prefooter-cta__title {
    font-size: 1.3rem;
  }

  .prefooter-cta__buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-redesign {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

/* =============================================
   PINNED NEWS HERO CAROUSEL
   ============================================= */

.pinned-news-section {
  padding: 5rem 0 3rem;
  background: #F8F9FA;
}

.pinned-news-swiper {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

.pinned-news__slide {
  display: block;
  position: relative;
  height: 450px;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  color: #ffffff;
  overflow: hidden;
}

.pinned-news__slide:hover {
  color: #ffffff;
  text-decoration: none;
}

.pinned-news__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,67,50,0.9) 0%, rgba(27,67,50,0.3) 50%, transparent 100%);
}

.pinned-news__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 3rem;
  z-index: 2;
}

.pinned-news__date {
  display: inline-block;
  background: rgba(221,161,94,0.9);
  color: #ffffff;
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.pinned-news__date i {
  margin-right: 6px;
}

.pinned-news__title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  max-width: 700px;
  line-height: 1.3;
}

.pinned-news__cta {
  font-weight: 600;
  font-size: 0.9rem;
  color: #DDA15E;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pinned-news__cta i {
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.pinned-news__slide:hover .pinned-news__cta i {
  transform: translateX(5px);
}

.pinned-news-swiper .swiper-pagination {
  bottom: 20px;
}

@media (max-width: 768px) {
  .pinned-news__slide {
    height: 350px;
  }
  .pinned-news__title {
    font-size: 1.4rem;
  }
  .pinned-news__content {
    padding: 2rem;
  }
}

@media (max-width: 576px) {
  .pinned-news__slide {
    height: 300px;
  }
  .pinned-news__title {
    font-size: 1.1rem;
  }
}
