.detail-page {
  padding: 28px 0 75px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 17px;
  color: var(--muted);
  font-size: 9px;
}

.breadcrumbs a:hover {
  color: var(--primary);
}

.tour-heading {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 23px;
}

.tour-labels {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.tour-category,
.top-rated {
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
}

.tour-category {
  color: white;
  background: var(--primary);
}

.top-rated {
  color: var(--primary-dark);
  background: var(--gold);
}

.tour-heading h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(28px, 4vw, 45px);
  line-height: 1.2;
}

.heading-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 11px;
  color: var(--muted);
  font-size: 10px;
}

.heading-actions {
  display: flex;
  align-items: start;
  gap: 8px;
}

.heading-actions button {
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--dark);
  background: white;
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
}

.top-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 25px;
  align-items: start;
}

.gallery-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 8px;
  height: 450px;
}

.main-gallery-image,
.gallery-thumbnail {
  overflow: hidden;
  border-radius: 16px;
  background: var(--primary-light);
}

.main-gallery-image img,
.gallery-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-side {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.gallery-thumbnail {
  position: relative;
}

.gallery-placeholder,
.related-placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--primary);
  background: var(--primary-light);
}

.view-gallery-button {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 9px;
  border: 0;
  border-radius: 9px;
  color: var(--dark);
  background: rgba(255, 255, 255, 0.94);
  cursor: pointer;
  font-size: 8px;
  font-weight: 800;
}

.tour-introduction {
  margin: 19px 0;
  color: #34443f;
  font-size: 12px;
  line-height: 1.85;
}

.quick-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.quick-features article {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: white;
}

.feature-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  border-radius: 11px;
  color: var(--primary);
  background: var(--primary-light);
}

.quick-features strong {
  display: block;
  font-size: 10px;
}

.quick-features p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 8px;
}

.booking-card {
  position: sticky;
  top: 100px;
  padding: 23px;
  border: 1px solid var(--border);
  border-radius: 19px;
  background: white;
  box-shadow: var(--shadow);
}

.price-label {
  color: var(--muted);
  font-size: 9px;
}

.booking-price {
  margin-bottom: 7px;
}

.booking-price strong {
  color: #d72d4c;
  font-size: 25px;
}

.booking-price span {
  margin-left: 5px;
  color: var(--dark);
  font-size: 9px;
  font-weight: 600;
}

.couple-price-note {
  margin: 0 0 17px;
  color: var(--muted);
  font-size: 9px;
}

.booking-field {
  display: grid;
  gap: 6px;
  margin-bottom: 11px;
}

.booking-field label {
  color: var(--dark);
  font-size: 9px;
  font-weight: 700;
}

.booking-field select,
.booking-field input {
  width: 100%;
  height: 45px;
  padding: 0 13px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: #f4f7f6;
  outline: none;
  font-size: 10px;
}

.booking-field select:focus,
.booking-field input:focus {
  border-color: var(--primary);
}

.estimated-total {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin: 17px 0;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-size: 9px;
}

.estimated-total strong {
  color: var(--primary);
  font-size: 13px;
}

.book-tour-button,
.customize-tour-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 13px;
  border-radius: 11px;
  font-size: 10px;
  font-weight: 800;
}

.book-tour-button {
  border: 0;
  color: white;
  background: var(--primary);
  cursor: pointer;
}

.book-tour-button:hover {
  background: var(--primary-dark);
}

.customize-tour-button {
  margin-top: 8px;
  color: var(--primary);
  border: 1px solid var(--primary);
  background: white;
}

.booking-benefits {
  margin-top: 16px;
  padding-top: 13px;
  border-top: 1px solid var(--border);
}

.booking-benefits p {
  margin: 7px 0;
  color: var(--muted);
  font-size: 8px;
}

.detail-content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 26px;
  align-items: start;
  margin-top: 42px;
}

.detail-content {
  display: grid;
  gap: 22px;
}

.content-section {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: white;
}

.section-heading {
  margin-bottom: 21px;
}

.section-heading > span,
.related-heading > div > span {
  color: var(--gold-dark);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.section-heading h2,
.related-heading h2 {
  margin: 5px 0 0;
  font-size: 23px;
}

.rich-text {
  color: #42534d;
  font-size: 11px;
  line-height: 1.9;
}

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 11px;
}

.attraction-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px;
  border-radius: 11px;
  background: var(--primary-light);
}

.attraction-item span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  flex: 0 0 25px;
  border-radius: 50%;
  color: white;
  background: var(--primary);
  font-size: 9px;
}

.attraction-item strong {
  font-size: 10px;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.included-card,
.excluded-card {
  padding: 20px;
  border-radius: 15px;
}

.included-card {
  color: #075442;
  background: #eaf8f2;
}

.excluded-card {
  color: #842029;
  background: #fff0ee;
}

.included-card h3,
.excluded-card h3 {
  margin: 0 0 13px;
  font-size: 13px;
}

.included-card ul,
.excluded-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  font-size: 10px;
  line-height: 1.7;
}

.included-symbol,
.excluded-symbol {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  margin-right: 5px;
  border-radius: 50%;
  color: white;
}

.included-symbol {
  background: #079455;
}

.excluded-symbol {
  background: #d92d20;
}

.itinerary-list,
.faq-list {
  display: grid;
  gap: 10px;
}

.accordion-item {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 13px;
}

.accordion-trigger {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 15px;
  border: 0;
  color: var(--dark);
  background: white;
  cursor: pointer;
  text-align: left;
}

.day-number {
  padding: 7px 9px;
  border-radius: 8px;
  color: white;
  background: var(--primary);
  font-size: 8px;
  font-weight: 800;
}

.accordion-title {
  font-size: 11px;
  font-weight: 700;
}

.accordion-icon {
  color: var(--primary);
  font-size: 18px;
  transition: 0.2s ease;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  padding: 0 16px 16px;
  color: var(--muted);
  background: white;
  font-size: 10px;
  line-height: 1.8;
}

.day-details {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 13px;
}

.day-details span {
  padding: 7px 9px;
  border-radius: 8px;
  color: var(--dark);
  background: var(--primary-light);
  font-size: 8px;
  font-weight: 600;
}

.policy-card {
  display: flex;
  gap: 14px;
  padding: 22px;
  border: 1px solid #f5d18e;
  border-radius: 16px;
  background: #fff8e8;
}

.policy-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  border-radius: 12px;
  color: #8a5400;
  background: #fde7b8;
  font-size: 20px;
}

.policy-card h2 {
  margin: 0 0 6px;
  font-size: 14px;
}

.policy-card p {
  margin: 0;
  color: #765b2d;
  font-size: 9px;
  line-height: 1.8;
}

.help-card {
  position: sticky;
  top: 100px;
  padding: 23px;
  border-radius: 18px;
  color: white;
  background:
    linear-gradient(
      rgba(3, 60, 49, 0.9),
      rgba(3, 60, 49, 0.95)
    ),
    url("https://images.unsplash.com/photo-1519681393784-d120267933ba?auto=format&fit=crop&w=900&q=80")
    center / cover;
}

.help-card > span {
  color: var(--gold);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.help-card h3 {
  margin: 8px 0;
  font-size: 19px;
}

.help-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  line-height: 1.8;
}

.help-card a {
  display: flex;
  justify-content: center;
  margin-top: 9px;
  padding: 11px;
  border-radius: 10px;
  color: var(--primary-dark);
  background: var(--gold);
  font-size: 9px;
  font-weight: 800;
}

.help-card .whatsapp-button {
  color: white;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.related-tours {
  padding: 65px 0;
  background: white;
}

.related-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.related-heading > a {
  color: var(--primary);
  font-size: 9px;
  font-weight: 800;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.related-card > a {
  display: block;
  height: 180px;
}

.related-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-card > div {
  padding: 16px;
}

.related-card span {
  color: var(--gold-dark);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.related-card h3 {
  margin: 6px 0;
  font-size: 14px;
}

.related-card p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
}

@media (max-width: 1000px) {
  .top-layout,
  .detail-content-layout {
    grid-template-columns: 1fr;
  }

  .booking-card,
  .help-card {
    position: static;
  }

  .quick-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .tour-heading {
    flex-direction: column;
  }

  .gallery-layout {
    height: auto;
    grid-template-columns: 1fr;
  }

  .main-gallery-image {
    height: 330px;
  }

  .gallery-side {
    height: 240px;
  }

  .quick-features,
  .attractions-grid,
  .included-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .heading-actions {
    display: none;
  }

  .content-section {
    padding: 21px;
  }
}

/* =========================================================
   PREMIUM DETAIL PAGE REFINEMENT
   Larger readable type, balanced title and trust benefits
========================================================= */

.detail-page {
  padding-top: 34px;
}

.breadcrumbs {
  margin-bottom: 20px;
  font-size: 12px;
}

.tour-heading {
  align-items: flex-end;
  margin-bottom: 28px;
}

.tour-labels {
  margin-bottom: 13px;
}

.tour-category,
.top-rated {
  padding: 7px 11px;
  font-size: 10px;
}

.tour-heading h1 {
  max-width: 880px;
  font-size: clamp(30px, 2.8vw, 42px);
  line-height: 1.14;
  letter-spacing: -0.8px;
}

.heading-meta {
  gap: 18px;
  margin-top: 14px;
  font-size: 13px;
}

.heading-actions button {
  padding: 11px 15px;
  font-size: 12px;
}

.top-layout {
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 30px;
}

.gallery-layout {
  height: 500px;
  gap: 10px;
}

.gallery-side {
  gap: 10px;
}

.main-gallery-image,
.gallery-thumbnail {
  border-radius: 18px;
}

.view-gallery-button {
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 11px;
  font-size: 10px;
}

.tour-introduction {
  max-width: 900px;
  margin: 24px 0 20px;
  color: #34443f;
  font-size: 15px;
  line-height: 1.85;
}

.tour-promise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0 0 18px;
}

.tour-promise-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: white;
  box-shadow: 0 8px 26px rgba(16, 34, 29, 0.04);
}

.promise-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  border-radius: 50%;
  color: #087a55;
  background: #e6f7ef;
  font-size: 17px;
  font-weight: 800;
}

.tour-promise-card strong {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.tour-promise-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.quick-features {
  gap: 14px;
}

.quick-features article {
  min-height: 86px;
  gap: 13px;
  padding: 17px;
  border-radius: 16px;
}

.feature-icon {
  width: 42px;
  height: 42px;
  flex-basis: 42px;
  border-radius: 13px;
  font-size: 17px;
}

.quick-features strong {
  font-size: 13px;
}

.quick-features p {
  margin-top: 4px;
  font-size: 11px;
  line-height: 1.45;
}

.booking-card {
  top: 96px;
  padding: 27px;
  border-radius: 21px;
}

.price-label {
  font-size: 12px;
}

.booking-price {
  margin: 3px 0 9px;
}

.booking-price strong {
  font-size: 30px;
  letter-spacing: -0.6px;
}

.booking-price span {
  font-size: 11px;
}

.couple-price-note {
  margin-bottom: 20px;
  font-size: 12px;
}

.booking-field {
  gap: 8px;
  margin-bottom: 14px;
}

.booking-field label {
  font-size: 12px;
}

.booking-field select,
.booking-field input {
  height: 50px;
  padding: 0 15px;
  border-radius: 13px;
  font-size: 13px;
}

.estimated-total {
  margin: 20px 0;
  padding: 17px 0;
  font-size: 12px;
}

.estimated-total strong {
  font-size: 16px;
}

.book-tour-button,
.customize-tour-button {
  min-height: 49px;
  border-radius: 13px;
  font-size: 12px;
}

.booking-benefits {
  display: grid;
  gap: 15px;
  margin-top: 20px;
  padding-top: 20px;
}

.booking-benefit-row {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.booking-benefit-row > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 28px;
  border-radius: 50%;
  color: #087a55;
  border: 2px solid #0a9b6a;
  font-size: 12px;
  font-weight: 800;
}

.booking-benefit-row strong {
  display: block;
  margin-bottom: 3px;
  font-size: 12px;
}

.booking-benefit-row p {
  margin: 0;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.55;
}

.detail-content-layout {
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 30px;
  margin-top: 48px;
}

.detail-content {
  gap: 26px;
}

.content-section {
  padding: 32px;
  border-radius: 22px;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading > span,
.related-heading > div > span {
  font-size: 10px;
}

.section-heading h2,
.related-heading h2 {
  margin-top: 7px;
  font-size: 27px;
}

.rich-text {
  font-size: 14px;
  line-height: 1.95;
}

.attractions-grid {
  gap: 13px;
}

.attraction-item {
  gap: 11px;
  padding: 15px;
  border-radius: 13px;
}

.attraction-item span {
  width: 29px;
  height: 29px;
  flex-basis: 29px;
  font-size: 11px;
}

.attraction-item strong {
  font-size: 13px;
}

.included-card,
.excluded-card {
  padding: 23px;
  border-radius: 17px;
}

.included-card h3,
.excluded-card h3 {
  margin-bottom: 16px;
  font-size: 15px;
}

.included-card ul,
.excluded-card ul {
  gap: 10px;
  font-size: 13px;
}

.accordion-trigger {
  gap: 13px;
  padding: 18px;
}

.day-number {
  padding: 8px 11px;
  font-size: 10px;
}

.accordion-title {
  font-size: 14px;
}

.accordion-content {
  padding: 0 18px 18px;
  font-size: 13px;
  line-height: 1.85;
}

.day-details span {
  padding: 8px 11px;
  font-size: 10px;
}

.policy-card {
  padding: 25px;
}

.policy-card h2 {
  font-size: 17px;
}

.policy-card p {
  font-size: 12px;
}

.help-card {
  padding: 26px;
}

.help-card > span {
  font-size: 10px;
}

.help-card h3 {
  font-size: 22px;
}

.help-card p,
.help-card a {
  font-size: 11px;
}

.related-card span {
  font-size: 10px;
}

.related-card h3 {
  font-size: 16px;
}

.related-card p {
  font-size: 11px;
}

@media (max-width: 1000px) {
  .top-layout,
  .detail-content-layout {
    grid-template-columns: 1fr;
  }

  .booking-card,
  .help-card {
    position: static;
  }
}

@media (max-width: 720px) {
  .tour-heading h1 {
    font-size: clamp(28px, 8vw, 36px);
  }

  .heading-meta {
    font-size: 11px;
  }

  .gallery-layout {
    height: auto;
  }

  .main-gallery-image {
    height: 340px;
  }

  .tour-promise-grid,
  .quick-features,
  .attractions-grid,
  .included-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .content-section {
    padding: 23px;
  }

  .section-heading h2,
  .related-heading h2 {
    font-size: 23px;
  }
}

.rich-text.ql-editor {
  min-height: auto;
  padding: 0;
  overflow: visible;
  color: #42534d;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  line-height: 1.9;
  white-space: normal;
}

.rich-text.ql-editor p {
  margin: 0 0 15px;
}

.rich-text.ql-editor h2 {
  margin: 28px 0 12px;
  color: var(--dark);
  font-size: 24px;
  line-height: 1.35;
}

.rich-text.ql-editor h3 {
  margin: 23px 0 10px;
  color: var(--dark);
  font-size: 19px;
  line-height: 1.4;
}

.rich-text.ql-editor h4 {
  margin: 20px 0 9px;
  color: var(--dark);
  font-size: 16px;
}

.rich-text.ql-editor ul,
.rich-text.ql-editor ol {
  margin: 14px 0 20px;
  padding-left: 25px;
}

.rich-text.ql-editor li {
  margin-bottom: 8px;
}

.rich-text.ql-editor blockquote {
  margin: 20px 0;
  padding: 15px 18px;
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  color: #34443f;
  background: #fff8e8;
}

.rich-text.ql-editor a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.itinerary-description {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
  white-space: pre-line;
}

/* =========================================
   COMPACT ATTRACTIONS GRID
========================================= */

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.attraction-item {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid #dcece5;
  border-radius: 11px;
  background: #edf8f3;
}

.attraction-item span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  flex: 0 0 25px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--primary);
  font-size: 9px;
  font-weight: 800;
}

.attraction-item strong {
  color: var(--dark);
  font-size: 11px;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .attractions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .attractions-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   BOOKING CARD TABS
========================================= */

.booking-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin: -7px -7px 24px;
  padding: 5px;
  border-radius: 13px;
  background: #eef4f1;
}

.booking-tab {
  min-height: 42px;
  padding: 8px 6px;
  border: none;
  border-radius: 10px;
  color: #667085;
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  transition: 0.2s ease;
}

.booking-tab:hover {
  color: var(--primary);
  background: rgba(255, 255, 255, 0.65);
}

.booking-tab.active {
  color: #ffffff;
  background: var(--primary);
  box-shadow: 0 5px 15px rgba(7, 84, 66, 0.18);
}

.booking-tab-panel {
  animation: bookingTabFade 0.25s ease;
}

.booking-tab-panel[hidden] {
  display: none;
}

@keyframes bookingTabFade {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Private and inquiry content */

.contact-tab-content {
  text-align: center;
}

.contact-tab-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin: 2px auto 14px;
  border-radius: 17px;
  color: #ffffff;
  background: var(--primary);
  font-size: 23px;
  font-weight: 800;
}

.contact-tab-label {
  display: block;
  color: var(--gold-dark);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.contact-tab-content h3 {
  margin: 7px 0 9px;
  color: var(--dark);
  font-size: 20px;
  line-height: 1.35;
}

.contact-tab-content > p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.75;
}

.private-tour-points {
  display: grid;
  gap: 8px;
  margin: 19px 0;
  text-align: left;
}

.private-tour-points div {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 11px;
  border-radius: 10px;
  color: #34443f;
  background: var(--primary-light);
  font-size: 10px;
  font-weight: 600;
}

.private-tour-points span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex: 0 0 22px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--primary);
  font-size: 8px;
}

.contact-action {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 9px;
  padding: 12px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 800;
  transition: 0.2s ease;
}

.contact-action:hover {
  transform: translateY(-2px);
}

.whatsapp-action {
  color: #ffffff;
  background: #159b62;
  box-shadow: 0 8px 20px rgba(21, 155, 98, 0.18);
}

.whatsapp-action:hover {
  background: #0c7e4d;
}

.email-action {
  color: var(--primary);
  border: 1px solid var(--primary);
  background: #ffffff;
}

.email-action:hover {
  color: #ffffff;
  background: var(--primary);
}

.contact-action > span {
  font-size: 15px;
}

.contact-details-box {
  margin-top: 17px;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: #f8fbf9;
  text-align: left;
}

.contact-details-box p {
  margin: 5px 0;
  color: var(--muted);
  font-size: 9px;
}

.contact-details-box strong {
  color: var(--dark);
}

/* Inquiry tab */

.inquiry-content .contact-tab-icon {
  color: var(--primary-dark);
  background: var(--gold);
}

.inquiry-examples {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin: 18px 0;
}

.inquiry-examples span {
  padding: 7px 9px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #42534d;
  background: #f7faf8;
  font-size: 8px;
  font-weight: 600;
}

.response-note {
  margin-top: 14px !important;
  font-size: 9px !important;
  font-style: italic;
}

/* Mobile tabs */

@media (max-width: 420px) {
  .booking-tabs {
    grid-template-columns: 1fr;
  }

  .booking-tab {
    min-height: 39px;
  }
}