* {
  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;
  }
}
