
html {
  scroll-behavior: smooth;
}

/* ---- Package cards (horizontal layout) ---- */
.pkg-card {
  background: #FFFFFF;
  border: 1.5px solid rgba(36, 28, 21, 0.1);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 14px 28px -18px rgba(36, 28, 21, 0.18);
  display: flex;
  gap: 24px;
  align-items: center;
}

.pkg-card.featured {
  border-color: #F97316;
}

.pkg-image {
  flex-shrink: 0;
  width: 220px;
  border-radius: 14px;
  overflow: hidden;
  align-self: center;
}

.pkg-image img {
  width: 100%;
  height: auto;
  display: block;
}

.pkg-body {
  flex: 1;
  min-width: 0;
}

.pkg-tag {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #EA580C;
  margin-bottom: 6px;
}

.pkg-name {
  font-weight: 800;
  font-size: 19px;
  margin-bottom: 16px;
}

.pkg-price {
  color: #F97316;
  font-weight: 800;
}

.pkg-whatwedo {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #F97316;
  margin-bottom: 10px;
  margin-top: 16px;
}

.pkg-keypoints {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 14px;
  background: rgba(249, 115, 22, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(249, 115, 22, 0.12);
}

.pkg-keypoint {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.pkg-keypoint img {
  width: 26px;
  height: 26px;
}

.pkg-keypoint span {
  font-size: 11px;
  font-weight: 600;
  color: #52453A;
  line-height: 1.3;
}

.pkg-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pkg-list li {
  font-size: 13.5px;
  padding: 3px 0;
  color: #52453A;
}

.pkg-hidden-items div {
  font-size: 13.5px;
  padding: 3px 0;
  color: #52453A;
}

.pkg-readmore {
  background: none;
  border: none;
  color: #F97316;
  font-weight: 700;
  font-size: 13px;
  padding: 6px 0 0;
  cursor: pointer;
}

.pkg-actions {
  flex-shrink: 0;
  width: 150px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.pkg-btn {
  text-align: center;
  font-weight: 700;
  font-size: 13.5px;
  padding: 12px 10px;
  border-radius: 100px;
  transition: all .18s ease;
}

.pkg-btn-outline {
  background: #F97316;
  color: #fff;
}

.pkg-btn-outline:hover {
  background: #EA580C;
}

.pkg-btn-solid {
  background: #F97316;
  color: #fff;
}

.pkg-btn-solid:hover {
  background: #EA580C;
}

@media (max-width: 768px) {
  .pkg-card {
    flex-direction: column;
  }
  .pkg-image {
    width: 100%;
    height: auto;
  }
  .pkg-actions {
    width: 100%;
    flex-direction: row;
  }
  .pkg-keypoints {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial-card {
  background: #fff;
  border: 1px solid rgba(36, 28, 21, 0.1);
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.testimonial-stars {
  color: #F97316;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-text {
  font-size: 14px;
  color: rgba(36, 28, 21, 0.75);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 18px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F97316;
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 700;
  font-size: 14px;
}

.testimonial-meta {
  font-size: 12px;
  color: rgba(36, 28, 21, 0.5);
}

/* ---- FAQ accordion ---- */
.faq-item {
  border-bottom: 1px solid rgba(36, 28, 21, 0.12);
  padding: 20px 0;
  cursor: pointer;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  gap: 20px;
}

.faq-q .plus {
  font-size: 22px;
  color: #F97316;
  transition: transform .25s ease;
  flex-shrink: 0;
}

.faq-item.open .plus {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  font-size: 14.5px;
  color: rgba(36, 28, 21, 0.7);
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding-top: 10px;
}

.action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: #fff;
  border-top: 1px solid rgba(36, 28, 21, 0.12);
  display: none;
  box-shadow: 0 -8px 24px rgba(36, 28, 21, 0.12);
}

.action-bar-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 6px;
  font-size: 11px;
  font-weight: 700;
  color: #241C15;
  border-right: 1px solid rgba(36, 28, 21, 0.08);
}

.action-bar-btn:last-child {
  border-right: none;
}

.action-bar-btn-accent {
  background: #F97316;
  color: #fff;
}

@media (max-width: 720px) {
  .action-bar {
    display: flex;
  }
  body {
    padding-bottom: 0;
  }
  .pkg-card.featured {
    transform: none;
  }
}

.locality-chip {
  background: #fff;
  border: 1px solid rgba(36, 28, 21, 0.12);
  color: #52453A;
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
}