/* ============================================================
   AWAY India CMS — Main Stylesheet
   Bootstrap 5 base + brand overrides
   Brand: Orange #f5a623 | Dark #1f2a34 | Charcoal #2f3944
   ============================================================ */

/* ── Google Font ── */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Roboto+Slab:wght@400;600;700&display=swap');

/* ── CSS Custom Properties ── */
:root {
  --away-orange:   #f5a623;
  --away-gold:     #e09000;
  --away-dark:     #1f2a34;
  --away-charcoal: #2f3944;
  --away-light:    #f8f4ee;
  --away-white:    #ffffff;
  --away-gray:     #6c757d;
  --away-border:   #dee2e6;
  --font-body:     'Open Sans', sans-serif;
  --font-heading:  'Roboto Slab', serif;
  --shadow-sm:     0 2px 8px rgba(0,0,0,.08);
  --shadow-md:     0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:     0 8px 40px rgba(0,0,0,.16);
  --radius:        8px;
  --radius-lg:     16px;
  --transition:    .25s ease;
}

/* ── Base ── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  background: #fff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--away-dark);
  line-height: 1.3;
}

a { color: var(--away-orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--away-gold); }

img { max-width: 100%; height: auto; }

/* ── Utility helpers ── */
.text-orange   { color: var(--away-orange) !important; }
.text-dark-away{ color: var(--away-dark) !important; }
.bg-orange     { background: var(--away-orange) !important; }
.bg-dark-away  { background: var(--away-dark) !important; }
.bg-away-light { background: var(--away-light) !important; }

.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }

.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2rem; color: var(--away-dark); margin-bottom: .5rem; }
.section-header .divider {
  display: inline-block; width: 60px; height: 4px;
  background: var(--away-orange); border-radius: 2px; margin: 10px 0 15px;
}
.section-header p { color: var(--away-gray); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ── Buttons ── */
.btn-away {
  background: var(--away-orange);
  color: #fff;
  border: 2px solid var(--away-orange);
  padding: .6rem 1.6rem;
  border-radius: 40px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .3px;
  transition: all var(--transition);
}
.btn-away:hover, .btn-away:focus {
  background: var(--away-gold);
  border-color: var(--away-gold);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(245,166,35,.4);
}

.btn-away-outline {
  background: transparent;
  color: var(--away-orange);
  border: 2px solid var(--away-orange);
  padding: .6rem 1.6rem;
  border-radius: 40px;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-away-outline:hover {
  background: var(--away-orange);
  color: #fff;
}

.btn-away-dark {
  background: var(--away-dark);
  color: #fff;
  border: 2px solid var(--away-dark);
  padding: .6rem 1.6rem;
  border-radius: 40px;
  font-weight: 600;
  transition: all var(--transition);
}
.btn-away-dark:hover {
  background: var(--away-charcoal);
  border-color: var(--away-charcoal);
  color: #fff;
}

/* ── Top Bar ── */
.top-bar {
  background: var(--away-dark);
  color: rgba(255,255,255,.7);
  font-size: .82rem;
  padding: 6px 0;
}
.top-bar a { color: rgba(255,255,255,.8); }
.top-bar a:hover { color: var(--away-orange); }
.top-bar .social-icons a {
  display: inline-flex; width: 26px; height: 26px;
  align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(255,255,255,.08);
  font-size: .8rem; margin-left: 4px;
  transition: background var(--transition), color var(--transition);
}
.top-bar .social-icons a:hover { background: var(--away-orange); color: #fff; }

/* ── Main Navbar ── */
.navbar-away {
  background: #fff;
  padding: 12px 0;
  border-bottom: 2px solid var(--away-orange);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.navbar-away.scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow-md);
}

.navbar-away .navbar-brand img { height: 60px; transition: height var(--transition); }
.navbar-away.scrolled .navbar-brand img { height: 48px; }

.navbar-away .nav-link {
  color: var(--away-dark) !important;
  font-weight: 600;
  font-size: .9rem;
  padding: .5rem .9rem !important;
  letter-spacing: .3px;
  border-radius: 4px;
  transition: all var(--transition);
  text-transform: uppercase;
}
.navbar-away .nav-link:hover,
.navbar-away .nav-link.active {
  color: var(--away-orange) !important;
  background: rgba(245,166,35,.07);
}
.navbar-away .nav-link-login {
  border: none;
  background: transparent;
}
.navbar-away .nav-donate-btn {
  padding: .45rem 1rem;
  border-radius: 30px;
  font-size: .85rem;
  font-weight: 700;
  margin-top: .15rem;
}

/* ── Admin login modal ── */
.admin-login-modal {
  border: none;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(18,30,46,.18);
}
.admin-login-modal .modal-header {
  background: linear-gradient(120deg, #10253f 0%, #244e80 100%);
  color: #fff;
  border: none;
}
.admin-login-modal .btn-close {
  filter: invert(1);
}
.admin-login-subtitle {
  color: #607590;
  font-size: .92rem;
  margin-bottom: .9rem;
}
.admin-login-alt {
  text-align: center;
}

.navbar-away .navbar-toggler {
  border: 2px solid var(--away-orange);
  padding: .3rem .6rem;
  color: var(--away-dark);
}
.navbar-away .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%231f2a34' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* ── Hero Slider ── */
.hero-slider { position: relative; overflow: hidden; }
.hero-slider .carousel-item { min-height: 520px; }
.hero-slider .slide-bg {
  min-height: 520px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-slider .slide-bg::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(31,42,52,.75) 0%, rgba(47,57,68,.55) 100%);
}
.hero-slider .slide-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  padding: 60px;
}
.hero-slider .slide-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #fff; font-weight: 700;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
  margin-bottom: .5rem;
}
.hero-slider .slide-content .subtitle {
  color: var(--away-orange);
  font-size: 1.15rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 1rem;
}
.hero-slider .slide-content p {
  color: rgba(255,255,255,.9); font-size: 1.1rem;
  max-width: 560px; margin-bottom: 1.5rem;
}
.carousel-indicators [data-bs-target] {
  width: 12px; height: 12px; border-radius: 50%;
  background: rgba(255,255,255,.5); border: 2px solid #fff;
}
.carousel-indicators .active { background: var(--away-orange); border-color: var(--away-orange); }
.carousel-control-prev-icon, .carousel-control-next-icon {
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.5));
}

/* ── Stats Bar ── */
.stats-bar {
  background: linear-gradient(90deg, var(--away-dark) 0%, var(--away-charcoal) 100%);
  padding: 28px 0; color: #fff;
}
.stats-bar .stat-item { text-align: center; }
.stats-bar .stat-number {
  font-size: 2.2rem; font-weight: 700;
  color: var(--away-orange); font-family: var(--font-heading);
  line-height: 1;
}
.stats-bar .stat-label { font-size: .85rem; text-transform: uppercase; letter-spacing: .8px; opacity: .8; }

/* ── Cards ── */
.card-away {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.card-away:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.card-away .card-img-top {
  height: 220px; object-fit: cover;
}
.card-away .card-body { padding: 1.5rem; }
.card-away .card-title {
  font-size: 1.1rem; font-family: var(--font-heading);
  color: var(--away-dark); margin-bottom: .5rem;
}
.card-away .card-text { color: var(--away-gray); font-size: .92rem; }
.card-away .card-meta {
  font-size: .8rem; color: var(--away-orange);
  text-transform: uppercase; letter-spacing: .5px;
  font-weight: 600;
}

/* ── Gallery Grid ── */
.gallery-item {
  overflow: hidden; border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  position: relative; cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 220px; object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(31,42,52,.6);
  opacity: 0; transition: opacity var(--transition);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ── Video Cards ── */
.video-card {
  border: none; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.video-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.video-thumb-wrap {
  position: relative; overflow: hidden;
  padding-top: 56.25%; /* 16:9 */
  background: #000;
}
.video-thumb-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .3s ease;
}
.video-card:hover .video-thumb-wrap img { transform: scale(1.04); }
.play-btn {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.play-btn span {
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(245,166,35,.92);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.35);
  transition: transform .2s ease, background .2s;
}
.video-card:hover .play-btn span { transform: scale(1.12); background: var(--away-orange); }

/* ── Mission / Feature Boxes ── */
.feature-box {
  text-align: center; padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-box:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-box .icon-wrap {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(245,166,35,.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem; color: var(--away-orange);
}
.feature-box h5 { color: var(--away-dark); font-size: 1.05rem; margin-bottom: .6rem; }
.feature-box p { color: var(--away-gray); font-size: .9rem; }

/* ── CTA Section ── */
.cta-section {
  background: linear-gradient(135deg, var(--away-orange) 0%, var(--away-gold) 100%);
  color: #fff; text-align: center; padding: 72px 0;
}
.cta-section h2 { color: #fff; font-size: 2.2rem; margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.9); font-size: 1.1rem; max-width: 560px; margin: 0 auto 1.5rem; }
.cta-section .btn-white {
  background: #fff; color: var(--away-orange);
  border: 2px solid #fff; padding: .7rem 2rem;
  border-radius: 40px; font-weight: 700; font-size: .95rem;
  transition: all var(--transition);
}
.cta-section .btn-white:hover { background: transparent; color: #fff; }

/* ── Filter Tabs ── */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.filter-tabs .filter-btn {
  padding: .4rem 1.2rem; border-radius: 30px;
  border: 2px solid var(--away-border);
  background: #fff; color: var(--away-gray);
  font-size: .88rem; font-weight: 600; cursor: pointer;
  transition: all var(--transition);
}
.filter-tabs .filter-btn.active,
.filter-tabs .filter-btn:hover {
  border-color: var(--away-orange);
  background: var(--away-orange); color: #fff;
}

/* ── Page Hero ── */
.page-hero {
  background: linear-gradient(135deg, var(--away-dark) 0%, var(--away-charcoal) 100%);
  color: #fff; padding: 55px 0 45px; text-align: center;
}
.page-hero h1 { color: #fff; font-size: 2.2rem; margin-bottom: .5rem; }
.page-hero .breadcrumb { justify-content: center; background: none; padding: 0; margin: 0; }
.page-hero .breadcrumb-item, .page-hero .breadcrumb-item a { color: rgba(255,255,255,.7); }
.page-hero .breadcrumb-item.active { color: var(--away-orange); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* ── Contact Form ── */
.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid var(--away-border);
  border-radius: var(--radius);
  padding: .7rem 1rem;
  font-size: .95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--away-orange);
  box-shadow: 0 0 0 3px rgba(245,166,35,.15);
  outline: none;
}
.contact-info-box {
  background: var(--away-dark); color: #fff;
  border-radius: var(--radius-lg); padding: 2rem;
}
.contact-info-box h5 { color: var(--away-orange); }
.contact-info-box .ci-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(245,166,35,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--away-orange); font-size: 1.1rem;
  flex-shrink: 0;
}

/* ── Newsletter strip ── */
.newsletter-strip {
  background: var(--away-dark); padding: 40px 0;
}
.newsletter-strip h4 { color: #fff; }
.newsletter-strip p { color: rgba(255,255,255,.7); }
.newsletter-strip .input-group .form-control {
  border-radius: 40px 0 0 40px; border: none;
  padding: .65rem 1.2rem;
}
.newsletter-strip .btn-subscribe {
  border-radius: 0 40px 40px 0;
  background: var(--away-orange); border: none; color: #fff;
  padding: .65rem 1.5rem; font-weight: 600;
}

/* ── Activities gallery + sliders ── */
.activity-card-swiper {
  position: relative;
}
.activity-card-swiper .swiper-button-prev,
.activity-card-swiper .swiper-button-next {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(31,42,52,.62);
  color: #fff;
  transform: scale(.88);
}
.activity-card-swiper .swiper-button-prev::after,
.activity-card-swiper .swiper-button-next::after {
  font-size: 12px;
  font-weight: 700;
}
.activity-card-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,.74);
  opacity: 1;
}
.activity-card-swiper .swiper-pagination-bullet-active {
  background: var(--away-orange);
}

.section-cards-swiper {
  position: relative;
  padding: 0 2px 30px;
}
.section-cards-swiper .swiper-slide {
  height: auto;
}
.section-cards-swiper .section-swiper-controls {
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.section-cards-swiper .section-swiper-prev,
.section-cards-swiper .section-swiper-next {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(31,42,52,.72);
  color: #fff;
  pointer-events: auto;
}
.section-cards-swiper .section-swiper-prev::after,
.section-cards-swiper .section-swiper-next::after {
  font-size: 14px;
  font-weight: 700;
}
.section-cards-swiper .section-swiper-pagination {
  bottom: 0 !important;
}
.section-cards-swiper .section-swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  opacity: 1;
  background: rgba(31,42,52,.22);
}
.section-cards-swiper .section-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--away-orange);
}

@media (min-width: 992px) {
  .section-cards-swiper {
    padding-bottom: 0;
  }
  .section-cards-swiper .section-swiper-controls,
  .section-cards-swiper .section-swiper-pagination {
    display: none;
  }
}

.activity-detail-panel {
  border: 1px solid var(--away-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  background: #fff;
  padding: 1rem;
}
.activity-detail-main-swiper {
  border-radius: 12px;
  overflow: hidden;
}
.activity-detail-main-swiper .swiper-slide img {
  width: 100%;
  min-height: 360px;
  max-height: 420px;
  object-fit: cover;
}
.activity-detail-main-swiper .swiper-button-prev,
.activity-detail-main-swiper .swiper-button-next {
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(31,42,52,.6);
}
.activity-detail-main-swiper .swiper-button-prev::after,
.activity-detail-main-swiper .swiper-button-next::after {
  font-size: 14px;
}
.activity-detail-thumb-swiper .swiper-slide {
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  opacity: .7;
  cursor: pointer;
}
.activity-detail-thumb-swiper .swiper-slide-thumb-active {
  border-color: var(--away-orange);
  opacity: 1;
}
.activity-detail-thumb-swiper img {
  width: 100%;
  height: 82px;
  object-fit: cover;
}
.activity-detail-copy {
  background: #fbfbfd;
  border: 1px solid #eceff4;
  border-radius: 12px;
  padding: 1rem;
}
.activity-detail-meta {
  display: inline-block;
  font-size: .78rem;
  color: var(--away-orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.activity-detail-content {
  margin-top: .85rem;
  border-top: 1px solid #eceff4;
  padding-top: .75rem;
}

.home-activities-swiper {
  position: relative;
  padding: .1rem .2rem 2rem;
}
.home-activities-swiper .swiper-slide {
  height: auto;
}
.home-activities-swiper .swiper-button-prev,
.home-activities-swiper .swiper-button-next {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(31,42,52,.6);
  color: #fff;
}
.home-activities-swiper .swiper-button-prev::after,
.home-activities-swiper .swiper-button-next::after {
  font-size: 13px;
  font-weight: 700;
}
.home-activities-swiper .swiper-pagination {
  bottom: 0;
}
.home-activities-swiper .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgba(31,42,52,.26);
  opacity: 1;
}
.home-activities-swiper .swiper-pagination-bullet-active {
  background: var(--away-orange);
}

@media (max-width: 767px) {
  .activity-detail-main-swiper .swiper-slide img {
    min-height: 250px;
    max-height: 310px;
  }
  .home-activities-swiper .swiper-button-prev,
  .home-activities-swiper .swiper-button-next {
    display: none;
  }
}
.newsletter-strip .btn-subscribe:hover { background: var(--away-gold); }

/* ── Footer ── */
.site-footer {
  background: #111820; color: rgba(255,255,255,.7);
  padding: 60px 0 0;
}
.site-footer h5 {
  color: #fff; font-size: .95rem;
  text-transform: uppercase; letter-spacing: .8px;
  margin-bottom: 1.2rem; position: relative; padding-bottom: .8rem;
}
.site-footer h5::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 36px; height: 3px; background: var(--away-orange);
  border-radius: 2px;
}
.site-footer a { color: rgba(255,255,255,.7); font-size: .9rem; }
.site-footer a:hover { color: var(--away-orange); }
.site-footer .footer-links li { margin-bottom: .45rem; }
.site-footer .footer-links li::before { content: '›'; color: var(--away-orange); margin-right: 6px; }
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 40px; padding: 18px 0;
  font-size: .83rem; color: rgba(255,255,255,.45);
}
.site-footer .social-links a {
  display: inline-flex; width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.65); margin-right: 6px;
  transition: all var(--transition);
}
.site-footer .social-links a:hover { background: var(--away-orange); border-color: var(--away-orange); color: #fff; }

/* ── Testimonials ── */
.testimonial-card {
  background: #fff; border-left: 4px solid var(--away-orange);
  border-radius: var(--radius); padding: 1.8rem;
  box-shadow: var(--shadow-sm); position: relative;
}
.testimonial-card .quote-icon {
  font-size: 2.5rem; color: var(--away-orange);
  opacity: .25; position: absolute; top: 12px; right: 20px;
  line-height: 1;
}

/* ── Scroll to top ── */
#scrollTop {
  position: fixed; bottom: 28px; right: 28px;
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--away-orange); color: #fff;
  border: none; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none;
  transform: translateY(10px);
  transition: all var(--transition);
  z-index: 999;
}
#scrollTop.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
#scrollTop:hover { background: var(--away-gold); }

/* ── Alert / Flash ── */
.flash-message { border-radius: var(--radius); padding: .9rem 1.2rem; margin-bottom: 1rem; }
.flash-success { background: #d1e7dd; color: #0a3622; border: 1px solid #a3cfbb; }
.flash-error   { background: #f8d7da; color: #58151c; border: 1px solid #f1aeb5; }
.flash-info    { background: #cff4fc; color: #055160; border: 1px solid #9eeaf9; }

/* ── Lightbox ── */
.lb-overlay {
  position: fixed; inset: 0; z-index: 1080;
  background: rgba(0,0,0,.88);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.lb-overlay img { max-height: 88vh; max-width: 96vw; border-radius: var(--radius); }
.lb-close {
  position: absolute; top: 20px; right: 24px;
  color: #fff; font-size: 2rem; cursor: pointer; line-height: 1;
  opacity: .8; transition: opacity .2s;
}
.lb-close:hover { opacity: 1; }

/* ── Responsive ── */
@media (max-width: 991px) {
  .navbar-away .container {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
  }
  .navbar-away .navbar-brand {
    min-width: 0;
    flex: 1 1 auto;
    margin-right: .5rem;
  }
  .navbar-away .navbar-brand img {
    height: 48px;
  }
  .navbar-away .navbar-brand .ms-2 {
    display: none !important;
  }
  .navbar-away .navbar-toggler {
    flex: 0 0 auto;
    margin-left: auto;
  }
  .navbar-away .navbar-collapse {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 1000;
    background: #fff;
    border-top: 1px solid rgba(31,42,52,.1);
    box-shadow: none;
    padding: .65rem .9rem .85rem;
  }
  .navbar-away .navbar-nav {
    gap: 4px;
  }
  .navbar-away .nav-donate-btn {
    display: inline-block;
    margin-left: .5rem;
    margin-top: .35rem;
  }
  .section { padding: 55px 0; }
  .hero-slider .slide-content { padding: 30px 24px; }
  .hero-slider .slide-content h1 { font-size: 1.8rem; }
  .stats-bar .stat-number { font-size: 1.7rem; }
}
@media (max-width: 767px) {
  .section { padding: 40px 0; }
  .section-header h2 { font-size: 1.6rem; }
  .hero-slider .slide-bg, .hero-slider .carousel-item { min-height: 340px; }
  .hero-slider .slide-content { padding: 24px 16px; }
  .cta-section { padding: 50px 0; }
  .cta-section h2 { font-size: 1.7rem; }
}
@media (max-width: 575px) {
  .hero-slider .slide-content p { display: none; }
}
