.tp-contact {
  margin: 40px auto 0 auto;
  text-align: center;
  max-width: 600px;
}
.tp-contact-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--tp-text);
}
.tp-contact-btns {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.tp-btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 22px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background .18s, box-shadow .18s, transform .18s;
  box-shadow: 0 2px 8px rgba(39,174,96,0.08);
  flex-wrap: wrap;
  word-break: break-word;
}
.tp-btn-green {
  background: #27ae60;
  color: #fff;
}
.tp-btn-green:hover,
.tp-btn-green:focus {
  background: #219150;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(39,174,96,0.14);
}
.tp-btn svg {
  flex-shrink: 0;
  min-width: 20px;
  min-height: 20px;
}
.tp-contact-phone,
.tp-contact-email {
  font-weight: 500;
  margin-left: 4px;
  word-break: break-all;
}
@media (max-width: 575.98px) {
  .tp-contact-btns { flex-direction: column; gap: 12px; }
  .tp-btn { width: 100%; font-size: 0.98rem; padding: 12px 10px; }
  .tp-btn svg { margin-right: 6px !important; }
  .tp-contact-phone, .tp-contact-email { display: block; margin-left: 0; margin-top: 2px; }
}
.tp-video-large {
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 991.98px) {
  .tp-video-large { max-width: 100%; }
}
/* Trip Planning extra sections */
:root {
  --tp-bg: #f8f9fa;
  --tp-primary: #27ae60; /* brand green */
  --tp-text: #2f2f2f;
  --tp-muted: #6c757d;
  --tp-card-bg: #ffffff;
  --tp-shadow: 0 8px 24px rgba(16, 24, 40, 0.06);
  --tp-shadow-hover: 0 14px 32px rgba(16, 24, 40, 0.10);
  --tp-radius: 0;
}

.tp-extra {
  background: var(--tp-bg);
  border-radius: 0;
  padding: 48px 28px;
  margin-top: 32px;
}

.tp-extra.tp-why {
  background: transparent;
  padding-top: 8px;
}

/* Typography */
.tp-heading {
  font-size: clamp(1.35rem, 1.1rem + 1.2vw, 2rem);
  line-height: 1.25;
  color: var(--tp-text);
  margin: 0 0 14px;
}
.tp-heading-desc {
  border-radius: 0;
  color: var(--tp-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* Bullets */
.tp-bullets {
  color: #27ae60; /* brand green */
  list-style: none;
  padding: 0;
  margin: 0;
}
.tp-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 0;
  color: var(--tp-text);
}
.tp-icon {
  color: var(--tp-primary);
  display: inline-flex;
}

/* Video */
.video-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: var(--tp-radius);
  overflow: hidden;
  box-shadow: var(--tp-shadow);
  background: #000;
}
.video-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Section 2 */
.tp-header-center {
  text-align: center;
  margin: 32px 0 18px;
}
.tp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tp-card {
  background: var(--tp-card-bg);
  border-radius: var(--tp-radius);
  padding: 24px 22px;
  box-shadow: var(--tp-shadow);
  transition: transform .25s ease, box-shadow .25s ease;
  will-change: transform, box-shadow;
}
.tp-card:hover,
.tp-card.is-hover {
  transform: translateY(-4px);
  box-shadow: var(--tp-shadow-hover);
}
.tp-card-icon { color: var(--tp-primary); margin-bottom: 10px; }
.tp-card-title { font-weight: 700; font-size: 1.05rem; margin: 6px 0 8px; color: var(--tp-text); }
.tp-card-text { color: var(--tp-muted); margin: 0; }

/* Responsive */
@media (max-width: 991.98px) {
  .tp-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
  .tp-extra { padding: 28px 18px; }
  .tp-cards { grid-template-columns: 1fr; }
}
