/* Social links strip */
.btc-social-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* Base link */
.btc-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  padding: 6px 2px; /* for non-card icons */
}

/* Icon size default */
.btc-social-link .ph { font-size: 18px; line-height: 1; }

/* Card style (when “Show as Card” is Yes) */
.btc-social-link.is-card {
  flex-direction: column;           /* icon on first line, label below */
  align-items: flex-start;
  gap: 8px;
  padding: 10px 8px;
  border: 1px solid #D8DEE8;        /* soft grey border */
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,.02) inset;
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.btc-social-link.is-card:hover {
  transform: translateY(-2px);
  border-color: #CBD5E1;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
}


/* Icon wrapper ring (uses currentColor for brand) */
.btc-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
                        /* space for ring */
}

/* Two-line bold label / count */
.btc-social-text {
  font-weight: 400;                  /* heavy like the mock */
  font-size: 14px;
  line-height: 1.25;
  color: #000;                       /* strong black text */
}

/* Brand colors per platform */
.platform-facebook .btc-social-icon, .platform-facebook .ph { color: #1877F2; }
.platform-instagram .btc-social-icon, .platform-instagram .ph { color: #E1306C; }  /* gradient approximated */
.platform-google .btc-social-icon, .platform-google .ph { color: #F4B400; }        /* star/orange */
.platform-youtube .btc-social-icon, .platform-youtube .ph { color: #FF0000; }
.platform-x .btc-social-icon, .platform-x .ph { color: #000000; }
.platform-tiktok .btc-social-icon, .platform-tiktok .ph { color: #000000; }


/* FAQ Section */
.btc-faqs { max-width: 1100px; margin: 0 auto; padding: 48px 20px;font-weight: 400; }
.btc-faqs__head { text-align: center; margin-bottom: 28px; }
.btc-faqs__title { font-size: 40px; line-height: 1.15;margin-bottom:4px !important;font-weight: 400; }
.btc-faqs__subtitle { color: #6B7B8C; margin: 0; font-size: 20px;}

.btc-faqs__list { display: grid; gap: 8px; }

.btc-faq {
  border-bottom: 1px solid #E4EAF2;
  padding: 16px 0;
}
.btc-faq[open] { background: #fff; }

.btc-faq__q {
  cursor: pointer;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  margin: 0;
  font-weight: 500;
  font-size: 22px;
  color: #0B3A5A; /* deep blue like your mock */
  line-height: 1.3;
}
.btc-faq__q::-webkit-details-marker { display: none; }

.btc-faq__icon {
  width: 20px; height: 20px; position: relative;
}
.btc-faq__icon::before,
.btc-faq__icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 16px; height: 2px; background: #0B3A5A; transform: translate(-50%,-50%);
  transition: transform .2s ease;
}
.btc-faq__icon::after { transform: translate(-50%,-50%) rotate(90deg); } /* plus */
.btc-faq[open] .btc-faq__icon::after { transform: translate(-50%,-50%) rotate(0deg); } /* minus */

.btc-faq__a { padding: 12px 0 4px; color: #2E3A46; }
.btc-faq__a p { margin: 0 0 10px; }
.btc-faq__a ol, .btc-faq__a ul { margin: 6px 0 10px 1.2em; }
/* FAQ Accordion Smooth Animation */
.btc-faq__a {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease;
}

.btc-faq[open] .btc-faq__a {
  max-height: 500px; /* adjust depending on expected content */
  opacity: 1;
}


/* Linked Tours (for Experiences) */
.exp-linked-tours {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 16px;
}
.exp-linked-tour {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 16px rgba(0,0,0,.05);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.exp-linked-tour:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,.07);
  border-color: rgba(0,0,0,.14);
}
.exp-linked-tour__image img { width: 100%; height: auto; display: block; border-radius: 10px; }
.exp-linked-tour__title { font-weight: 600; margin-top: 2px; }

/* Copyright shortcode center alignment */
.btc-copyright {
  text-align: center;
}

@media (max-width: 700px) {
  .btc-faqs__title { font-size: 28px; line-height: 1.3;}
  .btc-faqs__subtitle { color: #6B7B8C; margin: 0; font-size: 16px;}
  .btc-faq__q { font-size: 18px; }
}