/* ==========================================================================
   Garuda Taxi — Transfer Destination Template Page  (e.g. "Адлер — Гагра")
   Breakpoints: Desktop ≥1200px | Tablet 768–1199px | Mobile <768px
   ========================================================================== */

/* ──────────────────────────────────────────────────────────────────────────
   ANNOUNCEMENT BAR
   ────────────────────────────────────────────────────────────────────────── */
.announcement-bar {
  background-color: var(--color-red-48);
  color: var(--color-white);
  height: 40px;
  overflow: hidden;
  white-space: nowrap;
}

.announcement-bar__track {
  display: inline-flex;
  align-items: center;
  height: 100%;
  animation: trdest-ticker 32s linear infinite;
  will-change: transform;
}

.announcement-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding-inline: 20px;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-regular);
  line-height: 40px;
  white-space: nowrap;
}

.announcement-bar__link {
  color: var(--color-white);
  text-decoration: underline;
  font-weight: var(--font-weight-medium);
  white-space: nowrap;
}

.announcement-bar__link:hover { opacity: 0.85; }

@keyframes trdest-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ──────────────────────────────────────────────────────────────────────────
   HERO  —  Black left panel (720px) + destination photo (640px)
   Subtitle is 26px SemiBold (different from main transfer page!)
   ────────────────────────────────────────────────────────────────────────── */
.trdest-hero {
  padding: 40px;
  max-width: 1440px;
  margin-inline: auto;
}

.trdest-hero__inner {
  display: flex;
  align-items: stretch;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 634px;
}

.trdest-hero__card {
  flex: 0 0 52.9%;                         /* ~720/1360 */
  background-color: var(--color-black);
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.trdest-hero__breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.trdest-hero__crumb {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-regular);
  color: var(--color-white);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.15s;
}
.trdest-hero__crumb:hover { opacity: 1; }
.trdest-hero__crumb--current { opacity: 1; }

.trdest-hero__sep {
  font-size: var(--font-size-xs);
  color: var(--color-white);
  opacity: 0.5;
}

.trdest-hero__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trdest-hero__title {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-xl);          /* 60px */
  font-weight: var(--font-weight-bold);
  line-height: var(--font-size-xl);
  color: var(--color-white);
  margin: 0;
  letter-spacing: -0.5px;
}

.trdest-hero__subtitle {
  font-family: var(--font-family-base);
  font-size: 26px;                         /* per Figma: font-size/26 */
  font-weight: var(--font-weight-semibold);
  line-height: 36.4px;                     /* line-height/36_4 */
  color: var(--color-white);
  letter-spacing: -1.04px;
  margin: 0;
}

/* Yellow CTA */
.trdest-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  width: 198px;
  background-color: var(--color-primary);
  color: var(--color-black);
  font-family: var(--font-family-base);
  font-size: var(--font-size-15);
  font-weight: var(--font-weight-medium);
  line-height: 1;
  border-radius: 16px;
  text-decoration: none;
  transition: background-color 0.15s;
  white-space: nowrap;
}
.trdest-hero__cta:hover { background-color: var(--color-primary-dark); }

.trdest-hero__image {
  flex: 1;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  overflow: hidden;
  position: relative;
}
.trdest-hero__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ──────────────────────────────────────────────────────────────────────────
   ARTICLE + BOOKING FORM
   Desktop: centered 960px within 1440px (240px gutters)
   ────────────────────────────────────────────────────────────────────────── */
.trdest-content {
  padding: 80px 240px;
  max-width: 1440px;
  margin-inline: auto;
}

.trdest-content__inner {
  max-width: 960px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Article text */
.trdest-article {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trdest-article p {
  font-family: var(--font-family-base);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-md);
  color: var(--color-black);
  margin: 0;
}

/* Booking block */
.trdest-booking {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
}

/* Tab row */
.trdest-tabs {
  display: flex;
  gap: 0;
}

.trdest-tab {
  flex: 1;
  padding: 24px 16px;
  font-family: var(--font-family-base);
  font-size: var(--font-size-15);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid var(--color-black);
  transition: background-color 0.15s, color 0.15s;
  line-height: 1;
  background: var(--color-white);
  color: var(--color-black);
}

.trdest-tab--active {
  background-color: var(--color-black);
  color: var(--color-white);
}

.trdest-tab:not(.trdest-tab--active):hover {
  background-color: var(--color-grey-97);
}

/* Panel */
.trdest-panel {
  background-color: var(--color-white);
  padding: 40px;
}

.trdest-panel--hidden { display: none; }

.trdest-panel__title {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  line-height: 1.25;
  color: var(--color-black);
  margin: 0 0 32px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Form */
.trdest-form__section-label {
  font-family: var(--font-family-base);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-primary);
  margin: 0 0 20px;
}

.trdest-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
}

.trdest-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.trdest-form__field--full {
  grid-column: 1 / -1;
}

.trdest-form__label {
  font-family: var(--font-family-base);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-primary);
  line-height: 1;
}

.trdest-form__req {
  color: var(--color-error);
}

.trdest-form__input,
.trdest-form__select,
.trdest-form__textarea {
  font-family: var(--font-family-base);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-regular);
  color: var(--color-black);
  background-color: var(--color-white);
  border: 1.5px solid var(--color-border-light);
  border-radius: 8px;
  padding: 12px 13px;
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
  box-sizing: border-box;
  appearance: none;
}

.trdest-form__input::placeholder,
.trdest-form__textarea::placeholder {
  color: var(--color-text-disabled);
}

.trdest-form__input:focus,
.trdest-form__select:focus,
.trdest-form__textarea:focus {
  border-color: var(--color-black);
}

.trdest-form__select-wrap {
  position: relative;
}

.trdest-form__select-wrap::after {
  content: '';
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23222' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.trdest-form__select {
  cursor: pointer;
  padding-right: 36px;
}

.trdest-form__textarea {
  resize: vertical;
  min-height: 106px;
}

/* Consent / acceptance checkbox — CF7 native rendering */
.trdest-form__field--consent .wpcf7-list-item {
  margin: 0;
  padding: 0;
}

.trdest-form__field--consent .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.trdest-form__field--consent .wpcf7-list-item-label {
  font-family: var(--font-family-base);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-primary);
  line-height: 1.5;
}

.trdest-form__checkbox {
  -webkit-appearance: none;
  appearance: none;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border: 1.5px solid var(--color-border);
  border-radius: 3px;
  background-color: var(--color-white);
  margin-top: 2px;
  cursor: pointer;
  position: relative;
  transition: background-color 0.15s, border-color 0.15s;
}

.trdest-form__checkbox:checked {
  background-color: var(--color-black);
  border-color: var(--color-black);
}

.trdest-form__checkbox:checked::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 1px;
  width: 7px;
  height: 4px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
}

.trdest-form__link {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

/* Submit button — override global yellow .wpcf7-form .wpcf7-submit rule */
.wpcf7-form .trdest-form__submit {
  width: 100%;
  padding: 16px;
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.15s, opacity 0.15s;
  line-height: 1;
}

.wpcf7-form .trdest-form__submit:hover:not(:disabled) {
  background-color: var(--color-grey-13);
}

.wpcf7-form .trdest-form__submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

/* Section divider between Прибытие and Отъезд blocks */
.trdest-form__divider {
  grid-column: 1 / -1;
  height: 1px;
  background-color: var(--color-border-light);
  margin: 8px 0;
}

/* Secondary section label (Отъезд heading) */
.trdest-form__section-label--secondary {
  font-weight: var(--font-weight-regular);
  color: var(--color-text-secondary);
  margin-bottom: 8px;
}

/* Fallback notice when CF7 form ID is not yet set */
.trdest-form__notice {
  padding: 20px;
  font-family: var(--font-family-base);
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
}

/* ── CF7 structural resets ─────────────────────────────────────────── */

/* CF7 wraps each form in .wpcf7 > form.wpcf7-form; remove any default margin */
.trdest-panel .wpcf7 {
  margin: 0;
}

.trdest-panel .wpcf7-form {
  margin: 0;
  padding: 0;
}

/* CF7 wraps each field in .wpcf7-form-control-wrap — make it display block so it
   fills the field container without breaking the label/input stack */
.trdest-panel .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* Acceptance field: reset the global input-box styles that would otherwise
   make .wpcf7-acceptance look like a text input */
.trdest-panel .wpcf7-form-control.wpcf7-acceptance {
  display: block;
  width: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.trdest-panel .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
  padding: 0;
}

/* ── CF7 validation messages ──────────────────────────────────────────── */

/* Inline "field is required / invalid" tip */
.trdest-panel .wpcf7-not-valid-tip {
  display: block;
  margin-top: 4px;
  font-family: var(--font-family-base);
  font-size: var(--font-size-xs);
  color: var(--color-error);
  line-height: 1.3;
}

/* Red border on invalid fields */
.trdest-panel .wpcf7-form-control.wpcf7-not-valid {
  border-color: var(--color-error);
}

/* Global response output (success / error banner) */
.trdest-panel .wpcf7-response-output {
  grid-column: 1 / -1;
  margin: 16px 0 0;
  padding: 12px 16px;
  border-radius: 8px;
  font-family: var(--font-family-base);
  font-size: var(--font-size-sm);
  line-height: 1.5;
  border: 1.5px solid var(--color-border-light);
}

.trdest-panel .wpcf7-form.sent .wpcf7-response-output {
  border-color: #34a853;
  background-color: #f0faf3;
  color: #1e6b38;
}

.trdest-panel .wpcf7-form.failed .wpcf7-response-output,
.trdest-panel .wpcf7-form.aborted .wpcf7-response-output,
.trdest-panel .wpcf7-form.spam .wpcf7-response-output {
  border-color: var(--color-error);
  background-color: #fff5f5;
  color: var(--color-error);
}

.trdest-panel .wpcf7-form.invalid .wpcf7-response-output {
  border-color: #f59e0b;
  background-color: #fffbeb;
  color: #92400e;
}

/* Spinner during submission */
.trdest-panel .wpcf7-spinner {
  display: none;
}

/* ──────────────────────────────────────────────────────────────────────────
   PRICING CARDS  —  2-column, each with vehicle photo + comparison table
   ────────────────────────────────────────────────────────────────────────── */
.trdest-pricing {
  padding: 80px 40px;
  max-width: 1440px;
  margin-inline: auto;
}

.trdest-pricing__intro {
  font-family: var(--font-family-base);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-md);
  color: var(--color-text-secondary);
  text-align: center;
  max-width: 952px;
  margin: 0 auto 40px;
}

.trdest-pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.trdest-price-card {
  background-color: var(--color-white);
  border-radius: 32px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
  border: 1.5px solid var(--color-border-light);
}

/* Vehicle photo — yellow bg, 275px */
.trdest-price-card__photo {
  background-color: var(--color-primary);
  border-radius: 24px;
  height: 275px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trdest-price-card__photo img {
  max-width: 80%;
  max-height: 85%;
  object-fit: contain;
  display: block;
}

.trdest-price-card__head {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trdest-price-card__title {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  line-height: 1.25;
  color: var(--color-black);
  margin: 0;
}

.trdest-price-card__desc {
  font-family: var(--font-family-base);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: 0;
}

.trdest-price-card__table-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.trdest-price-card__route {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-semibold);
  line-height: 36px;
  color: var(--color-black);
  margin: 0;
}

/* Comparison table — grid with 4 cols (label + 3 options) */
.trdest-compare-table {
  display: grid;
  grid-template-columns: auto 1fr 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--color-border-light);
}

.trdest-compare-table--2col {
  grid-template-columns: auto 1fr 1fr;
}

.trdest-compare-table__header,
.trdest-compare-table__row {
  display: contents;
}

.trdest-compare-table__header > span,
.trdest-compare-table__row > span {
  padding: 10px 8px;
  font-family: var(--font-family-base);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-regular);
  color: var(--color-text-secondary);
  line-height: 1;
  border-bottom: 1px solid var(--color-border-light);
  text-align: center;
}

.trdest-compare-table__header > span:first-child,
.trdest-compare-table__row > span:first-child {
  text-align: left;
  padding-left: 0;
}

.trdest-compare-table__header > span {
  font-weight: var(--font-weight-semibold);
  color: var(--color-black);
}

.trdest-compare-table__label {
  font-weight: var(--font-weight-regular) !important;
  color: var(--color-text-secondary) !important;
}

.trdest-compare-table__price {
  font-weight: var(--font-weight-bold) !important;
  color: var(--color-black) !important;
}

/* Notes */
.trdest-price-card__notes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.trdest-price-card__notes p {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-regular);
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin: 0;
}

.trdest-price-card__note--bold {
  font-weight: var(--font-weight-semibold);
  font-style: italic;
  color: var(--color-black);
}

/* CTA */
.trdest-price-card__cta {
  margin-top: auto;
  display: flex;
  justify-content: center;
  margin-bottom: 0;
}

.trdest-price-card__notes {
  margin-top: 0;
}

.trdest-price-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 24px 32px;
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: var(--font-size-15);
  font-weight: var(--font-weight-medium);
  line-height: 1;
  border-radius: 16px;
  text-decoration: none;
  border: 2px solid var(--color-black);
  transition: background-color 0.15s, border-color 0.15s;
  white-space: nowrap;
  cursor: pointer;
}
.trdest-price-card__btn:hover {
  background-color: var(--color-grey-13);
  border-color: var(--color-grey-13);
}

/* ──────────────────────────────────────────────────────────────────────────
   WHY GARUDA  —  2-column benefit cards
   ────────────────────────────────────────────────────────────────────────── */
.trdest-why {
  padding: 80px 40px;
  max-width: 1440px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.trdest-why__header {
  text-align: center;
  max-width: 900px;
}

.trdest-why__title {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-48);
  font-weight: var(--font-weight-bold);
  line-height: 1.1;
  color: var(--color-black);
  margin: 0 0 20px;
  letter-spacing: -0.5px;
}

.trdest-why__subtitle {
  font-family: var(--font-family-base);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-regular);
  line-height: 1.4;
  color: var(--color-text-secondary);
  margin: 0;
}

.trdest-why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: 100%;
}

.trdest-why-card {
  background-color: var(--color-grey-97);
  border-radius: 24px;
  padding: 24px;
}

.trdest-why-card--wide { grid-column: 1 / -1; }

.trdest-why-card__num {
  width: 48px;
  height: 48px;
  background-color: var(--color-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-heading);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
  margin-bottom: 24px;
  flex-shrink: 0;
}

.trdest-why-card__title {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  color: var(--color-black);
  margin: 0 0 16px;
  letter-spacing: -0.48px;
}

.trdest-why-card__text {
  font-family: var(--font-family-base);
  font-size: var(--font-size-20);
  font-weight: var(--font-weight-regular);
  line-height: 1.4;
  color: var(--color-text-primary);
  margin: 0;
  letter-spacing: -0.4px;
}

.trdest-why__footer {
  text-align: center;
  max-width: 952px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.trdest-why__footer-text {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-regular);
  line-height: var(--line-height-md);
  color: var(--color-text-primary);
  margin: 0;
}

.trdest-why__footer-text a {
  color: var(--color-primary-dark);
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
}

.trdest-why__footer-text a:hover { text-decoration: underline; }

.trdest-why__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 24px 32px;
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: var(--font-family-base);
  font-size: var(--font-size-15);
  font-weight: var(--font-weight-medium);
  line-height: 1;
  border-radius: 16px;
  text-decoration: none;
  border: 2px solid var(--color-black);
  transition: background-color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.trdest-why__btn:hover {
  background-color: var(--color-grey-13);
  border-color: var(--color-grey-13);
}

/* ──────────────────────────────────────────────────────────────────────────
   DIRECTIONS GRID  —  2-col, 554px cards, 120px inner margins
   ────────────────────────────────────────────────────────────────────────── */
.trdest-directions {
  padding: 40px;
  max-width: 1440px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trdest-directions__head {
  padding: 80px 40px 28px;
  text-align: center;
}

.trdest-directions__title {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-48);
  font-weight: var(--font-weight-bold);
  line-height: var(--font-size-48);
  color: var(--color-black);
  margin: 0;
}

.trdest-directions__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-inline: 120px;
}

.trdest-dir-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: var(--color-grey-97);
  border-radius: var(--radius-md);
  padding: 24px;
  overflow: hidden;
  text-decoration: none;
  transition: opacity 0.15s;
}
.trdest-dir-card:hover { opacity: 0.9; }

.trdest-dir-card__img {
  height: 240px;
  border-radius: 24px;
  overflow: hidden;
}
.trdest-dir-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.trdest-dir-card__title {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-medium);
  line-height: 36px;
  color: var(--color-black);
  margin: 0;
}

/* Last odd card — centered */
.trdest-dir-card--last {
  grid-column: 1 / -1;
  max-width: calc(50% - 6px);
  justify-self: center;
  width: 100%;
}

/* ──────────────────────────────────────────────────────────────────────────
   FAQ
   ────────────────────────────────────────────────────────────────────────── */
.trdest-faq {
  padding: 40px;
  max-width: 1440px;
  margin-inline: auto;
}

.trdest-faq__title {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-48);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-48);
  color: var(--color-black);
  text-align: center;
  margin: 40px 0 40px;
}

.trdest-faq__list {
  max-width: 1000px;
  margin-inline: auto;
  background-color: var(--color-white);
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
}

/* Reuse .faq-item, .faq-item__q, .faq-item__a, .faq-item__icon from destination.css */
.faq-item {
  border-bottom: 1px solid var(--color-border-light);
}
.faq-item:last-child { border-bottom: none; }

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-family-base);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-black);
  line-height: 1.5;
  transition: color 0.15s;
  user-select: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q::marker { display: none; }
.faq-item__q:hover { color: var(--color-text-secondary); }

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  border-radius: 50%;
  background-color: var(--color-grey-93);
  transition: background-color 0.15s;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--color-text-secondary);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.faq-item__icon::before { width: 12px; height: 2px; transform: translate(-50%, -50%); }
.faq-item__icon::after  { width: 2px; height: 12px; transform: translate(-50%, -50%); }

.faq-item[open] .faq-item__icon { background-color: var(--color-primary); }
.faq-item[open] .faq-item__icon::before,
.faq-item[open] .faq-item__icon::after { background-color: var(--color-black); }
.faq-item[open] .faq-item__icon::after { opacity: 0; }

.faq-item__a { padding: 0 20px 20px; }
.faq-item__a p {
  font-size: var(--font-size-sm);
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin: 0 0 8px;
}
.faq-item__a p:last-child { margin-bottom: 0; }
.faq-item__a a { color: var(--color-primary-dark); text-decoration: none; }
.faq-item__a a:hover { text-decoration: underline; }


/* ==========================================================================
   TABLET  768px – 1199px
   ========================================================================== */
@media (max-width: 1199px) {

  /* Hero */
  .trdest-hero { padding: 24px; }
  .trdest-hero__inner { min-height: auto; }
  .trdest-hero__card {
    flex: 0 0 54%;
    padding: 48px 32px;
    gap: 28px;
  }
  .trdest-hero__title { font-size: 44px; line-height: 1.1; }
  .trdest-hero__subtitle { font-size: 20px; line-height: 1.4; }

  /* Content / form */
  .trdest-content { padding: 48px 40px; }
  .trdest-panel { padding: 24px; }
  .trdest-tabs { flex-direction: column; }

  /* Pricing */
  .trdest-pricing { padding: 48px 24px; }
  .trdest-pricing__grid { grid-template-columns: 1fr; gap: 16px; }
  .trdest-price-card__photo { height: 220px; }
  .trdest-compare-table { font-size: var(--font-size-xs); }

  /* Why */
  .trdest-why { padding: 48px 24px; gap: 32px; }
  .trdest-why__title { font-size: 32px; }
  .trdest-why__grid { grid-template-columns: 1fr 1fr; }
  .trdest-why-card__text { font-size: var(--font-size-sm); }

  /* Directions */
  .trdest-directions { padding: 24px; }
  .trdest-directions__head { padding: 48px 0 20px; }
  .trdest-directions__title { font-size: 32px; }
  .trdest-directions__grid { padding-inline: 0; gap: 10px; }
  .trdest-dir-card__img { height: 190px; }
  .trdest-dir-card__title { font-size: 20px; line-height: 1.4; }
  .trdest-dir-card--last { max-width: calc(50% - 5px); }

  /* FAQ */
  .trdest-faq { padding: 24px; }
  .trdest-faq__title { font-size: 32px; margin: 24px 0 28px; }
  .trdest-faq__list { padding: 24px; }
}


/* ==========================================================================
   MOBILE  < 768px
   ========================================================================== */
@media (max-width: 767px) {

  .announcement-bar__item { font-size: 11px; }

  /* Hero */
  .trdest-hero { padding: 16px; }
  .trdest-hero__inner { flex-direction: column; border-radius: 40px; }
  .trdest-hero__card {
    flex: none;
    width: 100%;
    padding: 32px 24px;
    gap: 20px;
    border-radius: 40px 40px 0 0;
  }
  .trdest-hero__title { font-size: 36px; line-height: 1.1; }
  .trdest-hero__subtitle { font-size: 17px; line-height: 1.4; letter-spacing: -0.5px; }
  .trdest-hero__cta { width: 100%; justify-content: center; }
  .trdest-hero__image {
    height: 280px;
    border-radius: 0 0 40px 40px;
    position: relative;
  }
  .trdest-hero__image img {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Content */
  .trdest-content { padding: 40px 16px; }
  .trdest-article p { font-size: 14px; }
  .trdest-tabs { flex-direction: column; }
  .trdest-tab { font-size: 12px; padding: 16px 12px; }
  .trdest-panel { padding: 20px 16px; }
  .trdest-form__grid { grid-template-columns: 1fr; }
  .trdest-form__field--full { grid-column: 1; }

  /* Pricing */
  .trdest-pricing { padding: 40px 16px; }
  .trdest-pricing__grid { grid-template-columns: 1fr; gap: 16px; }
  .trdest-price-card { border-radius: 24px; padding: 16px; gap: 20px; }
  .trdest-price-card__photo { height: 180px; }
  .trdest-compare-table,
  .trdest-compare-table--2col {
    font-size: 11px;
  }
  .trdest-compare-table > *,
  .trdest-compare-table__header > span,
  .trdest-compare-table__row > span {
    padding: 8px 4px;
  }
  .trdest-price-card__btn {
    width: 100%;
    justify-content: center;
  }

  /* Why */
  .trdest-why { padding: 40px 16px; gap: 24px; }
  .trdest-why__title { font-size: 24px; }
  .trdest-why__subtitle { font-size: 14px; }
  .trdest-why__grid { grid-template-columns: 1fr; }
  .trdest-why-card--wide { grid-column: 1; }
  .trdest-why-card { border-radius: 16px; padding: 20px; }
  .trdest-why-card__num { width: 40px; height: 40px; font-size: 18px; margin-bottom: 16px; }
  .trdest-why-card__title { font-size: 18px; }
  .trdest-why-card__text { font-size: 14px; }
  .trdest-why__footer { max-width: 100%; gap: 20px; }
  .trdest-why__footer-text { font-size: 13px; text-align: left; }
  .trdest-why__btn { width: 100%; justify-content: center; }

  /* Directions */
  .trdest-directions { padding: 16px; gap: 10px; }
  .trdest-directions__head { padding: 32px 0 16px; }
  .trdest-directions__title { font-size: 24px; }
  .trdest-directions__grid { padding-inline: 0; grid-template-columns: 1fr; }
  .trdest-dir-card { border-radius: 24px; padding: 16px; }
  .trdest-dir-card__img { height: 180px; border-radius: 16px; }
  .trdest-dir-card__title { font-size: 16px; line-height: 1.4; }
  .trdest-dir-card--last { grid-column: 1; max-width: 100%; justify-self: stretch; }

  /* FAQ */
  .trdest-faq { padding: 16px; }
  .trdest-faq__title { font-size: 24px; margin: 16px 0 20px; }
  .trdest-faq__list { padding: 16px; border-radius: 24px; }
  .faq-item__q { padding: 16px 0; font-size: 13px; }
  .faq-item__a { padding: 0 0 16px; }
  .faq-item__a p { font-size: 13px; }
}
