* {
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  margin: 0;
  background: #f8f9fb;
  color: #1f2937;
}

.container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 14px;
  color: #01050e;
  margin-bottom: 16px;
}

.breadcrumb a {

  color: #01050e;
  font-size: 25px;


}

.breadcrumb a:hover {
  color: #16a34a;
}



/* Title */
.title {
  font-size: 32px;
  font-weight: 700;
  margin: 10px 0 16px;
  line-height: 1.3;
}

/* Location badge */
.location-badge {
  display: inline-block;
  background: #fff3c4;
  color: #92400e;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}

/* Info bar */
.info-bar {
  display: flex;
  gap: 30px;
  padding-top: 16px;
  border-top: 1px solid #e5e7eb;
  font-size: 15px;
}

.info-item strong {
  font-weight: 600;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f6f7;
}

/* ===== GALLERY ===== */
.gallery-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
  max-width: 1100px;
  margin: 30px auto;
}

.gallery-left img,
.gallery-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
}

.gallery-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* +1 more */
.more-box {
  position: relative;
  cursor: pointer;
}

.more-box span {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
}

/* ===== LIGHTBOX ===== */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
}

#lightbox-img {
  max-width: 85%;
  max-height: 70vh;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}

.nav {
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  user-select: none;
}

.nav.left {
  left: 30px;
}

.nav.right {
  right: 30px;
}

/* Thumbnails */
.thumbs {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.thumbs img {
  width: 70px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.6;
}

.thumbs img.active {
  opacity: 1;
  outline: 2px solid #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .gallery-wrapper {
    grid-template-columns: 1fr;
  }
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/*======================= Footer ========================*/
.footer-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  z-index: 999;
}

.footer-left span {
  margin-right: 20px;
}

.apply-btn {
  background: #ffd400;
  border: none;
  padding: 10px 18px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
}

.chat-fab {
  background: #ffd400;
  border-radius: 50%;
  border: none;
  color: #1e3a8a;
  padding: 15px;
  margin: 0 10px;
  cursor: pointer;
}

/* Chat Panel */
#chatPanel {
  position: fixed;
  bottom: 70px;
  right: -350px;
  width: 320px;
  height: 480px;
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  z-index: 1000;
}

#chatPanel.active {
  right: 20px;
}

.chat-header {
  background: #ffd400;
  padding: 10px;
  display: flex;
  justify-content: space-between;
}

.chat-body {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
}

.bot {
  background: #e9f7fb;
  padding: 8px;
  border-radius: 6px;
  margin-bottom: 8px;
}

.user {
  background: #d4f4d2;
  padding: 8px;
  border-radius: 6px;
  text-align: right;
  margin-bottom: 8px;
}

.options button {
  width: 100%;
  margin-bottom: 6px;
  padding: 8px;
}

/* Input */
.chat-input {
  display: flex;
  border-top: 1px solid #ddd;
}

.chat-input input {
  flex: 1;
  padding: 8px;
  border: none;
}

.chat-input button {
  background: #ffd400;
  border: none;
  padding: 10px;
}

/* Modals */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
}

.modal-box {
  background: #fff;
  padding: 20px;
  max-width: 350px;
  margin: 150px auto;
  border-radius: 8px;
}

.modal-box.center {
  text-align: center;
}

.danger {
  background: #e74c3c;
  color: #fff;
  border: none;
  padding: 10px;
}

/*======================= About section =================*/
/* MAIN GRID */
.page-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

/* LEFT SIDE */
.left-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* COMMON CARD */
.card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 0 0 1px #e5e7eb;
}

.card h2,
.card h3 {
  margin-top: 0;
}

/* OFFER TAGS */
.offer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.offer-tags span {
  background: #fff3c4;
  border: 1px solid #facc15;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
}

/* RIGHT SIDE */
.right-column {
  display: block;
}

.host-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 0 0 1px #e5e7eb;
  width: 350px;
}

.host-card.is-fixed {
  position: fixed;
  top: 100px;
}

/* HOST PROFILE */
.host-profile {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.host-profile img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid #facc15;
  object-fit: cover;
}

.verified {
  font-size: 13px;
  color: #16a34a;
}

.host-desc {
  font-size: 14px;
  color: #4b5563;
  margin: 16px 0;
}

/* STATS */
.host-stats {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #e5e7eb;
  padding-top: 16px;
}

.host-stats div {
  text-align: center;
}

.host-stats strong {
  display: block;
  font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .page-container {
    grid-template-columns: 1fr;
  }
}

/*=============about form================*/
/* GRID */
.experience-grid {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

.exp-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 0 0 1px #e5e7eb;
  margin-bottom: 24px;
}


.card-title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 600;
}

/* PILLS */
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

/* Yellow pills */
.pill-group.yellow .pill {
  background: #fff3c4;
  border: 1px solid #facc15;
  color: #92400e;
}

/* Blue pills */
.pill-group.blue .pill {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e3a8a;
}

/* HOST CARD */
.host-header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.host-header img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid #facc15;
  object-fit: cover;
}

.verified {
  display: block;
  font-size: 13px;
  color: #16a34a;
  margin-bottom: 4px;
}

.excellent {
  display: inline-block;
  background: #dcfce7;
  color: #15803d;
  font-size: 13px;
  padding: 4px 10px;
  border-radius: 999px;
  margin-top: 6px;
}

.host-text {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .experience-grid {
    grid-template-columns: 1fr;
  }
}

/* ========= WHAT'S INCLUDED (LEFT CARD) ========= */

.included-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 0 0 1px #e5e7eb;
}

.included-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
}

.included-section {
  margin-bottom: 28px;
}

.included-heading {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.included-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.included-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #92400e;
  background: #fff3c4;
  border: 1px solid #facc15;
  border-radius: 999px;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 900px) {
  .included-card {
    padding: 20px;
  }
}

/* ========= EXPECTATIONS FROM VOLUNTEER ========= */

.expectation-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 0 0 1px #e5e7eb;
  margin-top: 24px;
}

.expectation-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.expectation-text {
  font-size: 15px;
  line-height: 1.7;
  color: #374151;
  margin-bottom: 14px;
}

/* Responsive */
@media (max-width: 900px) {
  .expectation-card {
    padding: 20px;
  }
}

/* ========= REVIEWS ========= */

.reviews-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 0 0 1px #e5e7eb;
  margin-top: 24px;
}

.reviews-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 32px;
}

.reviews-empty {
  text-align: center;
  padding: 40px 20px;
}

.reviews-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #9ca3af;
}

.reviews-empty-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.reviews-empty-text {
  font-size: 14px;
  color: #6b7280;
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .reviews-card {
    padding: 20px;
  }
}

/* ========= RECENT REVIEWS ========= */

.recent-reviews-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 0 0 1px #e5e7eb;
  margin-top: 24px;
}

.recent-reviews-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 32px;
}

.recent-reviews-empty {
  text-align: center;
  padding: 40px 20px;
}

.recent-reviews-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #9ca3af;
}

.recent-reviews-empty-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.recent-reviews-empty-text {
  font-size: 14px;
  color: #6b7280;
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .recent-reviews-card {
    padding: 20px;
  }
}

/* ===== MODAL ===== */
.vy-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .4);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.vy-modal-box {
  background: #fff;
  width: 420px;
  padding: 28px;
  border-radius: 12px;
  text-align: center;
  position: relative;
}

.vy-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #22c55e;
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vy-modal-box h3 {
  margin: 10px 0;
}

.vy-modal-box p {
  font-size: 14px;
  color: #555;
}

.vy-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.vy-btn {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
}

.vy-btn.primary {
  background: #0f172a;
  color: #fff;
  border: none;
}

.vy-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

/* ===== PARTNER CAROUSEL ===== */
.initiatives {
  padding-bottom: 60px;
  background-color: #ffffff;
}

.initiatives-header {
  text-align: center;
  margin-bottom: 50px;
  padding-top: 50px;
}

.initiatives-header .section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #0b1e3e;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 3px solid #0b1e3e;
}

.partner-carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  gap: 0;
  padding: 0;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  font-size: 24px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 20;
}

.carousel-nav:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
  left: 30px;
}

.carousel-next {
  right: 30px;
}

.carousel-nav.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}


.partnerSwiper {
  width: 100%;
  overflow: hidden;
  padding-bottom: 0px;
}

.carousel-slide {
  height: 220px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 0;
  padding: 0;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  transition: none;
}

.carousel-slide:hover img {
  filter: none;
}

/* Swiper pagination override */
.partnerSwiper .swiper-pagination {
  bottom: 20px !important;
}

.partnerSwiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #ccc;
  opacity: 1;
  transition: all 0.3s;
}

.partnerSwiper .swiper-pagination-bullet-active {
  background: #333;
  transform: scale(1.2);
}

/* ----- RESPONSIVE ----- */
@media (max-width: 900px) {
  .carousel-slide {
    height: 140px;
  }
}

@media (max-width: 600px) {
  .initiatives-header .section-title {
    font-size: 26px;
  }

  .carousel-nav {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .carousel-prev {
    left: 15px;
  }

  .carousel-next {
    right: 15px;
  }
}