/* PAGE BANNER */
.page-banner {
  position: relative;
  height: 380px;
  background: url('../images/hero.jpg') no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.58);
}

.banner-content {
  position: relative;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.banner-content h1 {
  font-size: 54px;
  font-weight: 600;
  margin: 0;
  color: #F4B400;
}

.banner-content p {
  font-size: 18px;
  color: #eee;
  margin: 0;
}

.banner-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #F4B400;
  color: white;
  padding: 13px 28px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  margin-top: 6px;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(255,107,53,0.40);
}

.banner-cta-btn:hover {
  background: #b98801;
  transform: translateY(-3px);
}

/* IMPACT STRIP */
.vol-impact-strip {
  display: flex;
  justify-content: space-around;
  background: #1d3557;
  padding: 28px 80px;
  flex-wrap: wrap;
  gap: 20px;
}

.vol-impact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: white;
  text-align: center;
}

.vol-impact-item i {
  font-size: 26px;
  color: #F4B400;
  margin-bottom: 4px;
}

.impact-num {
  font-size: 28px;
  font-weight: 700;
  color: white;
}

.impact-label {
  font-size: 12px;
  color: #aac4e0;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* VOLUNTEER SECTION */
.vol-section {
  padding: 80px 80px 60px;
  background: #f9f9f9;
}

.vol-section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.vol-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #5c7aa5;
  color: #F4B400;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 25px;
  margin-bottom: 14px;
}

.vol-badge-dark {
  background: #1d3557;
  color: white;
}

.vol-section-heading h2 {
  font-size: 36px;
  color: #1d3557;
  margin: 0 0 10px;
}

.vol-section-heading p {
  font-size: 15px;
  color: #777;
}

/* FILTER TABS */
.vol-filter-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-tab {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border: 2px solid #e8e8e8;
  border-radius: 25px;
  background: white;
  font-size: 13px;
  font-weight: 600;
  color: #666;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.25s;
}

.filter-tab:hover {
  border-color: #F4B400;
  color: #F4B400;
}

.filter-tab.active-tab {
  background: #F4B400;
  border-color: #F4B400;
  color: white;
}

/* VOL GRID */
.vol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* VOLUNTEER TILE */
.vol-tile {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.vol-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(255,107,53,0.13);
}

.vol-tile.hidden {
  display: none;
}

/* TILE SLIDER */
.vol-tile-slider {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #eee;
}

.vol-slide-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
}

.vol-slide-track img {
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

.vol-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.75);
  color: #1d3557;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 5;
}

.vol-arrow:hover { background: #F4B400; color: white; }
.vol-prev { left: 10px; }
.vol-next { right: 10px; }

.vol-slide-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 5;
}

.vs-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  padding: 0;
}

.vs-dot.active {
  background: #F4B400;
  width: 16px;
  border-radius: 3px;
}

/* TILE TYPE BADGE */
.vol-tile-type {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 5;
}

.school-type     { background: #eafaf1; color: #27ae60; }
.company-type    { background: #e8f4fd; color: #2980b9; }
.individual-type { background: #fff0ea; color: #ff6b35; }
.college-type    { background: #f4ecf7; color: #8e44ad; }

/* TILE BODY */
.vol-tile-body {
  padding: 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vol-tile-body h3 {
  font-size: 17px;
  color: #1d3557;
  margin: 0;
}

.vol-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.vol-meta span {
  font-size: 12px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 5px;
}

.vol-meta i { color: #F4B400; font-size: 11px; }

.vol-tile-body p {
  font-size: 13px;
  color: #666;
  line-height: 1.8;
  margin: 0;
  flex: 1;
}

.vol-skills-taught {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.vol-skills-taught span {
  font-size: 11px;
  font-weight: 600;
  background: #f5f7fa;
  color: #1d3557;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid #e8e8e8;
}

/* ADD TILE */
.vol-tile-add {
  border: 2.5px dashed #e0e0e0;
  background: #fafafa;
  box-shadow: none;
  cursor: default;
  justify-content: center;
}

.vol-tile-add:hover {
  border-color: #F4B400;
  box-shadow: none;
  transform: none;
}

.vol-add-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 28px;
  gap: 12px;
}

.vol-add-icon {
  font-size: 48px;
  color: #ddd;
}

.vol-add-inner h3 {
  font-size: 18px;
  color: #1d3557;
  margin: 0;
}

.vol-add-inner p {
  font-size: 13px;
  color: #888;
  line-height: 1.7;
  margin: 0;
}

.vol-add-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F4B400;
  color: rgb(0, 0, 0);
  padding: 11px 24px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  transition: all 0.3s;
  margin-top: 6px;
}

.vol-add-btn:hover {
  background: #775907;
  transform: translateY(-2px);
  color: rgb(255, 255, 255);
}

/* WHAT YOU CAN DO */
.vol-what-section {
  padding: 80px 80px 70px;
  background: white;
}

.vol-what-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.vol-what-card {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.vol-what-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(255,107,53,0.12);
}

.vol-what-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 14px;
}

.vol-what-card h4 {
  font-size: 15px;
  color: #1d3557;
  margin: 0 0 8px;
}

.vol-what-card p {
  font-size: 13px;
  color: #777;
  line-height: 1.7;
  margin: 0;
}

/* FORM SECTION */
.vol-form-section {
  padding: 80px 80px 90px;
  background: #f5f7fa;
}

.vol-form-container {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* CSR PANEL */
.vol-csr-panel h2 {
  font-size: 28px;
  color: #1d3557;
  margin: 0 0 12px;
}

.vol-csr-panel > p {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
  margin: 0 0 28px;
}

.vol-team-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vol-team-card {
  background: white;
  border-radius: 16px;
  padding: 18px 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s;
}

.vol-team-card:hover { transform: translateY(-3px); }

.vol-team-avatar {
  width: 48px;
  height: 48px;
  background: #1d3557;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  flex-shrink: 0;
  border: 3px solid #F4B400;
}

.vol-team-info h4 {
  font-size: 14px;
  color: #1d3557;
  margin: 0 0 3px;
}

.vol-team-info > span {
  font-size: 12px;
  color: #aaa;
  display: block;
  margin-bottom: 10px;
}

.vol-team-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vtl {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  transition: all 0.2s;
}

.vtl.phone { background: #e8f4fd; color: #2980b9; }
.vtl.phone:hover { background: #2980b9; color: white; }

.vtl.email { background: #fff0ea; color: #F4B400; }
.vtl.email:hover { background: #F4B400; color: white; }

.vtl.wa { background: #eafaf1; color: #27ae60; }
.vtl.wa:hover { background: #25d366; color: white; }

/* FORM CARD */
.vol-form-card {
  background: white;
  border-radius: 22px;
  padding: 36px 32px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.07);
}

.vol-form-card h3 {
  font-size: 22px;
  color: #1d3557;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vol-form-card h3 i { color: #F4B400; }

.vol-form-card > p {
  font-size: 14px;
  color: #777;
  margin: 0 0 24px;
}

.vol-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.vf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.vf-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vf-group.full { grid-column: 1 / -1; }

.vf-group label {
  font-size: 12px;
  font-weight: 700;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.req { color: #F4B400; }

.vf-group input,
.vf-group select,
.vf-group textarea {
  padding: 11px 14px;
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  font-size: 13px;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  color: #333;
  background: #fafafa;
}

.vf-group input:focus,
.vf-group select:focus,
.vf-group textarea:focus {
  border-color: #F4B400;
  box-shadow: 0 0 0 3px rgba(255,107,53,0.10);
  background: white;
}

.vf-group textarea { resize: none; }

/* PHONE INPUT */
.vf-phone-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  background: #fafafa;
  transition: border-color 0.25s;
}

.vf-phone-wrap:focus-within {
  border-color: #F4B400;
  box-shadow: 0 0 0 3px rgba(255,107,53,0.10);
}

.vf-prefix {
  padding: 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: #F4B400;
  background: #fff0ea;
  height: 42px;
  display: flex;
  align-items: center;
  border-right: 1.5px solid #e8e8e8;
}

.vf-phone-wrap input {
  flex: 1;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  background: transparent !important;
}

/* SKILL CHECKBOXES */
.vf-skill-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.vf-skill-check {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: #555;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1.5px solid #e8e8e8;
  background: #fafafa;
  transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
}

.vf-skill-check:hover {
  border-color: #F4B400;
  background: #fff8f5;
  color: #F4B400;
}

.vf-skill-check input[type="checkbox"] {
  accent-color: #F4B400;
  width: 14px;
  height: 14px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

/* SUBMIT BUTTON */
.vol-submit-btn {
  background: #F4B400;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(255,107,53,0.30);
}

.vol-submit-btn:hover {
  background: #9c7300;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,53,0.40);
}

/* SUCCESS */
.vol-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 44px 20px;
  gap: 12px;
}

.vol-success i {
  font-size: 56px;
  color: #F4B400;
  animation: hb 1s ease infinite;
}

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

.vol-success h4 {
  font-size: 22px;
  color: #1d3557;
  margin: 0;
}

.vol-success p {
  font-size: 14px;
  color: #777;
  max-width: 360px;
  line-height: 1.7;
  margin: 0;
}

.vol-home-btn {
  background: #1d3557;
  color: white;
  text-decoration: none;
  padding: 12px 26px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s;
  margin-top: 6px;
}

.vol-home-btn:hover { background: #F4B400; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .vol-grid        { grid-template-columns: repeat(2, 1fr); }
  .vol-what-grid   { grid-template-columns: repeat(2, 1fr); }
  .vol-form-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .vol-section,
  .vol-what-section,
  .vol-form-section { padding: 60px 20px; }
  .vol-impact-strip { padding: 24px 20px; }
  .vol-grid         { grid-template-columns: 1fr; }
  .vf-row           { grid-template-columns: 1fr; }
  .vf-skill-grid    { grid-template-columns: repeat(2, 1fr); }
  .banner-content h1 { font-size: 36px; }
}

/* =========================================
   GLOBAL MOBILE RESPONSIVE SYSTEM
========================================= */

@media(max-width:900px){

  html,
  body{
    overflow-x:hidden;
  }

  /* SECTION SPACING */
  section,
  .section,
  .page-section{
    padding-left:24px !important;
    padding-right:24px !important;
  }

  /* HERO SECTIONS */
  .hero,
  .page-banner,
  .about-hero,
  .children-hero,
  .csr-hero,
  .ach-hero,
  .contact-hero,
  .donate-hero{
    min-height:auto !important;
    padding:140px 24px 80px !important;
    text-align:center;
  }

  .hero h1,
  .page-banner h1,
  .about-hero h1,
  .children-hero h1,
  .csr-hero h1,
  .ach-hero h1,
  .contact-hero h1,
  .donate-hero h1{
    font-size:clamp(2.3rem,9vw,4rem) !important;
    line-height:1 !important;
  }

  .hero p,
  .page-banner p{
    font-size:.95rem !important;
    line-height:1.8 !important;
  }

  /* NAVBAR */
  .navbar{
    padding:18px 24px !important;
    flex-wrap:wrap !important;
    gap:18px !important;
  }

  .logo-container{
    width:100% !important;
    justify-content:center !important;
  }

  .logo-container span{
    font-size:1rem !important;
  }

  .nav-links{
    width:100% !important;
    overflow-x:auto !important;
    gap:18px !important;
    justify-content:flex-start !important;
    padding-bottom:8px !important;
    scrollbar-width:none;
  }

  .nav-links::-webkit-scrollbar{
    display:none;
  }

  .nav-links a{
    white-space:nowrap;
    font-size:.9rem !important;
  }

  .donate-container{
    width:100%;
  }

  .donate-btn{
    width:100%;
    text-align:center;
  }

  /* ALL GRIDS */
  .tiles-grid,
  .children-grid,
  .ach-grid,
  .csr-grid,
  .projects-grid,
  .footer-container,
  .contact-container,
  .vol-grid,
  .other-projects-grid,
  .detail-four-tiles,
  .detail-three-cta,
  .vol-what-grid,
  .team-grid,
  .donate-grid,
  .impact,
  .stats-grid{
    grid-template-columns:1fr !important;
  }

  /* COMMON CARDS */
  .tile,
  .child-card,
  .ach-card,
  .project-card,
  .vol-tile,
  .contact-card,
  .detail-tile,
  .donate-card,
  .stat-card{
    padding:24px !important;
    border-radius:24px !important;
  }

  /* INTRO / FLEX SECTIONS */
  .intro,
  .about-intro,
  .founder-intro,
  .mission-section,
  .contact-wrap{
    flex-direction:column !important;
    gap:40px !important;
  }

  .intro-content,
  .intro-slider,
  .founder-photo,
  .founder-story,
  .mission-left,
  .mission-right{
    width:100% !important;
  }

  /* FORMS */
  .form-row,
  .vf-row{
    flex-direction:column !important;
  }

  .vf-group,
  .form-group{
    width:100% !important;
  }

  /* FILTER TABS */
  .vol-filter-tabs,
  .filter-tabs{
    overflow-x:auto;
    justify-content:flex-start;
    gap:10px;
    padding-bottom:10px;
    scrollbar-width:none;
  }

  .vol-filter-tabs::-webkit-scrollbar,
  .filter-tabs::-webkit-scrollbar{
    display:none;
  }

  .filter-tab{
    white-space:nowrap;
  }

  /* DETAIL PAGE */
  .detail-title-overlay{
    padding:24px !important;
  }

  .detail-title-overlay h1{
    font-size:2rem !important;
  }

  .detail-img-viewer{
    height:70vh !important;
  }

  /* FOOTER */
  .footer{
    padding:70px 24px 30px !important;
  }

  .footer-container{
    gap:40px !important;
  }

  .footer-section{
    text-align:center !important;
  }

  .social-icons{
    justify-content:center !important;
  }

  .footer-bottom{
    text-align:center !important;
    flex-direction:column !important;
    gap:10px !important;
  }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width:600px){

  .hero,
  .page-banner{
    padding:120px 18px 70px !important;
  }

  .hero h1,
  .page-banner h1{
    font-size:2rem !important;
  }

  .hero p,
  .page-banner p{
    font-size:.88rem !important;
  }

  .buttons,
  .banner-buttons,
  .cta-buttons{
    flex-direction:column !important;
    width:100% !important;
    gap:12px !important;
  }

  .btn,
  .banner-btn,
  .cta-btn{
    width:100% !important;
    justify-content:center !important;
  }

  section,
  .section{
    padding-left:18px !important;
    padding-right:18px !important;
  }

  .intro-content h2,
  .section-title{
    font-size:1.8rem !important;
  }

  .impact .stat h2{
    font-size:2rem !important;
  }

  .detail-title-overlay h1{
    font-size:1.7rem !important;
  }

  .detail-img-arrow{
    width:42px !important;
    height:42px !important;
  }

}

/* MOBILE NAV OVERLAY */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
}

.mobile-overlay.open {
  transform: translateX(0);
}

.mobile-overlay a {
  font-size: 1.6rem;
  color: #fff;
  text-decoration: none;
}

.mob-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  font-size: 2.4rem;
  color: #fff;
  cursor: pointer;
}

.burger {
  display: none; /* only show on mobile */
  background: none;
  border: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.burger span {
  width: 28px;
  height: 3px;
  background: #fff;
  display: block;
  border-radius: 2px;
}

/* SHOW BURGER ON SMALL SCREENS */
@media(max-width:900px){
  .burger { display: flex; }
  .nav-links, .nav-pill { display: none; }

  @media(max-width:900px){

  .navbar{
    width:100%;
    padding:14px 14px;

    display:flex;
    align-items:center;

    position:relative;
    overflow:hidden;
  }

  /* LOGO SIDE */
  .logo-container{
    display:flex;
    align-items:center;
    gap:8px;

    flex:1;
    min-width:0;
  }

  .logo-container img{
    height:38px;
    width:auto;
    flex-shrink:0;
  }

  .logo-container span{
    font-size:.82rem;
    font-weight:700;

    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;

    max-width:140px;
  }

  /* HIDE DESKTOP LINKS */
  .nav-links{
    display:none !important;
  }

  /* DONATE BUTTON */
  .donate-container{
    margin-left:auto;
    margin-right:46px;

    flex-shrink:0;
  }

  .donate-btn{
    padding:8px 14px;
    font-size:.78rem;

    border-radius:40px;

    white-space:nowrap;
  }

  /* BURGER */
  .burger{
    display:flex;
    flex-direction:column;
    gap:4px;

    position:absolute;
    right:14px;
    top:50%;

    transform:translateY(-50%);

    background:none;
    border:none;

    cursor:pointer;
    z-index:9999;

    flex-shrink:0;
  }

  .burger span{
    width:22px;
    height:2.5px;

    border-radius:10px;
    background:#fff;
  }

}


}

/* FIX MOBILE NAVBAR */

@media(max-width:900px){

  html,
  body{
    overflow-x:hidden;
    width:100%;
  }

  .navbar{
    width:100%;
    padding:16px 18px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    position:relative;
    overflow:hidden;
  }

  /* LOGO */
  .logo-container{
    display:flex;
    align-items:center;
    gap:10px;
    width:auto;
    flex:1;
  }

  .logo-container img{
    height:42px;
    width:auto;
  }

  .logo-container span{
    font-size:1rem;
    white-space:nowrap;
  }

  /* HIDE DESKTOP LINKS */
  .nav-links{
    display:none !important;
  }

  /* DONATE BUTTON */
  .donate-container{
    width:auto;
    margin-right:55px; /* leaves space for burger */
  }

  .donate-btn{
    padding:12px 22px;
    font-size:.95rem;
    border-radius:40px;
    white-space:nowrap;
  }

  /* BURGER ICON */
  .burger{
    display:flex;
    flex-direction:column;
    gap:5px;

    position:absolute;
    right:18px;   /* MOVED TO RIGHT */
    top:50%;
    transform:translateY(-50%);

    background:none;
    border:none;
    cursor:pointer;
    z-index:9999;
  }

  .burger span{
    width:26px;
    height:3px;
    border-radius:10px;
    background:#fff;
  }

  /* MOBILE MENU */
  .mobile-overlay{
    position:fixed;
    inset:0;
    background:#000;
    z-index:99999;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:28px;

    transform:translateX(100%);
    transition:.35s ease;
  }

  .mobile-overlay.open{
    transform:translateX(0);
  }

  .mobile-overlay a{
    color:#fff;
    text-decoration:none;
    font-size:1.5rem;
    font-weight:600;
  }

  .mob-close{
    position:absolute;
    top:24px;
    right:24px;

    background:none;
    border:none;

    color:#fff;
    font-size:2rem;
    cursor:pointer;
  }

}
.hidden{
  display:none !important;
}

.vf-skill-grid{
    width:100%;
}

.vf-skill-check{
    box-sizing:border-box;
    min-width:0;
    width:100%;
}
.vf-group,
.vf-group input,
.vf-group select,
.vf-group textarea,
.vf-phone-wrap{
    width:100%;
    box-sizing:border-box;
    min-width:0;
}

@media(max-width:900px){

.vol-form-container{
    display:grid;
    grid-template-columns:1fr;
    width:100%;
    max-width:100%;
    gap:24px;
}

}

.vol-team-card{
    width:100%;
    box-sizing:border-box;
    min-width:0;
}

.vol-form-card{
    width:100%;
    max-width:100%;
    box-sizing:border-box;
    overflow:hidden;
}


.vol-team-links{
    display:flex;
    flex-direction:column;
    width:100%;
}

.vtl{
    width:100%;
    box-sizing:border-box;
    overflow-wrap:anywhere;
}

*,
*::before,
*::after{
    box-sizing:border-box;
}

@media(max-width:900px){

.vol-form-section,
.vol-form-container,
.vol-csr-panel,
.vol-form-card,
.vol-team-cards,
.vol-team-card,
.vf-group,
.vf-phone-wrap,
.vf-skill-grid,
.vf-skill-check{
    width:100%;
    max-width:100%;
    min-width:0;
    box-sizing:border-box;
}

}

