/* =============================================================================
   TGH COMPONENTS.CSS — Herbruikbare componentenbibliotheek
   Project : Zelfstandig taxibedrijf Gent
   Prefix  : tgh_
   Scope   : .tgh_site
   Requires: tgh-globals-v1.0.css
   Aanpak  : Mobile first vanaf 360px
   Versie  : 1.0
   ============================================================================= */

/* =============================================================================
   01. BUTTONS & ACTIONS
   ============================================================================= */

.tgh_site .tgh_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--tgh_space-2);
  min-block-size: var(--tgh_button-height);
  padding: 0.75rem 1.125rem;
  border: 1px solid transparent;
  border-radius: var(--tgh_radius-pill);
  font-weight: var(--tgh_weight-semibold);
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform var(--tgh_transition-fast),
    background-color var(--tgh_transition-fast),
    border-color var(--tgh_transition-fast),
    color var(--tgh_transition-fast),
    box-shadow var(--tgh_transition-fast),
    opacity var(--tgh_transition-fast);
}

.tgh_site .tgh_btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.tgh_site .tgh_btn:active {
  transform: translateY(0);
}

.tgh_site .tgh_btn--primary {
  background: var(--tgh_color-button-primary-bg);
  color: var(--tgh_color-button-primary-text);
  border-color: var(--tgh_color-button-primary-bg);
}

.tgh_site .tgh_btn--primary:hover {
  background: var(--tgh_color-button-primary-bg-hover);
  border-color: var(--tgh_color-button-primary-bg-hover);
}

.tgh_site .tgh_btn--secondary {
  background: var(--tgh_color-button-secondary-bg);
  color: var(--tgh_color-button-secondary-text);
  border-color: var(--tgh_color-button-secondary-bg);
}

.tgh_site .tgh_btn--accent {
  background: var(--tgh_color-button-accent-bg);
  color: var(--tgh_color-button-accent-text);
  border-color: var(--tgh_color-button-accent-bg);
}

.tgh_site .tgh_btn--outline {
  background: transparent;
  color: var(--tgh_color-heading);
  border-color: var(--tgh_color-border-strong);
}

.tgh_site .tgh_btn--outline:hover {
  background: var(--tgh_color-bg-soft);
  border-color: var(--tgh_color-primary);
}

.tgh_site .tgh_btn--ghost {
  background: transparent;
  color: inherit;
  border-color: color-mix(in srgb, currentColor 35%, transparent);
  box-shadow: none;
}

.tgh_site .tgh_btn--soft {
  background: var(--tgh_color-bg-soft);
  color: var(--tgh_color-heading);
  border-color: var(--tgh_color-border);
}

.tgh_site .tgh_btn--whatsapp {
  background: var(--tgh_color-success);
  color: var(--tgh_color-text-inverse);
  border-color: var(--tgh_color-success);
}

.tgh_site .tgh_btn--call {
  background: var(--tgh_color-secondary);
  color: var(--tgh_color-text-inverse);
  border-color: var(--tgh_color-secondary);
}

.tgh_site .tgh_btn--sm {
  min-block-size: var(--tgh_touch-target);
  padding: 0.625rem 0.875rem;
  font-size: var(--tgh_text-sm);
}

.tgh_site .tgh_btn--lg {
  min-block-size: var(--tgh_button-height-lg);
  padding: 0.875rem 1.375rem;
}

.tgh_site .tgh_btn--block {
  inline-size: 100%;
}

.tgh_site .tgh_btn--icon {
  inline-size: var(--tgh_button-height);
  padding: 0;
  flex: 0 0 var(--tgh_button-height);
}

.tgh_site .tgh_btn[disabled],
.tgh_site .tgh_btn.is-disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
}

.tgh_site .tgh_btn.is-loading {
  position: relative;
  pointer-events: none;
}

.tgh_site .tgh_btn.is-loading > * {
  opacity: 0;
}

.tgh_site .tgh_btn.is-loading::after {
  content: "";
  position: absolute;
  inline-size: 1.1rem;
  block-size: 1.1rem;
  border: 2px solid currentColor;
  border-inline-end-color: transparent;
  border-radius: var(--tgh_radius-round);
  animation: tgh_spin 700ms linear infinite;
}

.tgh_site .tgh_text-link,
.tgh_site .tgh_micro-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--tgh_space-2);
  color: var(--tgh_color-link);
  font-weight: var(--tgh_weight-semibold);
  text-decoration: none;
}

.tgh_site .tgh_text-link:hover,
.tgh_site .tgh_micro-cta:hover {
  color: var(--tgh_color-link-hover);
  text-decoration: underline;
}

/* =============================================================================
   02. ICON SYSTEM
   ============================================================================= */

.tgh_site .tgh_icon {
  inline-size: 1.25rem;
  block-size: 1.25rem;
  flex: 0 0 auto;
  color: currentColor;
}

.tgh_site .tgh_icon > svg {
  inline-size: 100%;
  block-size: 100%;
  stroke: currentColor;
}

/* Standalone <svg class="tgh_icon"> keeps the size from .tgh_icon. */
.tgh_site svg.tgh_icon {
  inline-size: 1.25rem;
  block-size: 1.25rem;
  max-inline-size: 1.25rem;
  max-block-size: 1.25rem;
  flex: 0 0 1.25rem;
  stroke: currentColor;
}

.tgh_site .tgh_icon--xs { inline-size: 0.875rem; block-size: 0.875rem; }
.tgh_site .tgh_icon--sm { inline-size: 1rem; block-size: 1rem; }
.tgh_site .tgh_icon--md { inline-size: 1.25rem; block-size: 1.25rem; }
.tgh_site .tgh_icon--lg { inline-size: 1.5rem; block-size: 1.5rem; }
.tgh_site .tgh_icon--xl { inline-size: 2rem; block-size: 2rem; }

.tgh_site .tgh_icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 3rem;
  block-size: 3rem;
  flex: 0 0 3rem;
  border-radius: var(--tgh_radius-lg);
  background: var(--tgh_color-bg-soft);
  color: var(--tgh_color-primary);
}

.tgh_site .tgh_icon-box--round {
  border-radius: var(--tgh_radius-round);
}

.tgh_site .tgh_icon-box--accent {
  background: var(--tgh_color-primary);
  color: var(--tgh_color-button-primary-text);
}

/* =============================================================================
   03. FORMS
   ============================================================================= */

.tgh_site .tgh_form {
  display: grid;
  gap: var(--tgh_gap-form);
}

.tgh_site .tgh_form-row,
.tgh_site .tgh_form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--tgh_gap-form);
}

.tgh_site .tgh_field {
  display: grid;
  gap: var(--tgh_space-2);
  min-inline-size: 0;
}

.tgh_site .tgh_label {
  color: var(--tgh_color-heading);
  font-size: var(--tgh_text-sm);
  font-weight: var(--tgh_weight-semibold);
}

.tgh_site .tgh_required {
  color: var(--tgh_color-error);
}

.tgh_site .tgh_input,
.tgh_site .tgh_select,
.tgh_site .tgh_textarea {
  inline-size: 100%;
  min-block-size: var(--tgh_input-height);
  padding: 0.75rem 0.875rem;
  border: 1px solid var(--tgh_color-input-border);
  border-radius: var(--tgh_radius-md);
  background: var(--tgh_color-input-bg);
  color: var(--tgh_color-input-text);
  transition:
    border-color var(--tgh_transition-fast),
    box-shadow var(--tgh_transition-fast),
    background-color var(--tgh_transition-fast);
}

.tgh_site .tgh_input:hover,
.tgh_site .tgh_select:hover,
.tgh_site .tgh_textarea:hover {
  border-color: var(--tgh_color-input-border-hover);
}

.tgh_site .tgh_input:focus,
.tgh_site .tgh_select:focus,
.tgh_site .tgh_textarea:focus {
  outline: none;
  border-color: var(--tgh_color-input-border-focus);
  box-shadow: var(--tgh_shadow-focus);
}

.tgh_site .tgh_input::placeholder,
.tgh_site .tgh_textarea::placeholder {
  color: var(--tgh_color-input-placeholder);
  opacity: 1;
}

.tgh_site .tgh_textarea {
  min-block-size: 8.75rem;
  resize: vertical;
}

.tgh_site .tgh_input-wrap {
  position: relative;
}

.tgh_site .tgh_input-wrap .tgh_icon {
  position: absolute;
  inset-inline-start: 0.875rem;
  inset-block-start: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--tgh_color-text-muted);
}

.tgh_site .tgh_input-wrap > .tgh_input {
  padding-inline-start: 2.75rem;
}

.tgh_site .tgh_help,
.tgh_site .tgh_form-microcopy {
  color: var(--tgh_color-text-muted);
  font-size: var(--tgh_text-sm);
  line-height: var(--tgh_line-normal);
}

.tgh_site .tgh_field-error {
  color: var(--tgh_color-error);
  font-size: var(--tgh_text-sm);
}

.tgh_site .tgh_field.is-error :where(.tgh_input, .tgh_select, .tgh_textarea) {
  border-color: var(--tgh_color-error-border);
  background: var(--tgh_color-error-bg);
}

.tgh_site .tgh_field.is-success :where(.tgh_input, .tgh_select, .tgh_textarea) {
  border-color: var(--tgh_color-success-border);
  background: var(--tgh_color-success-bg);
}

.tgh_site .tgh_field :where(input, select, textarea):disabled {
  opacity: 0.62;
  cursor: not-allowed;
}

.tgh_site .tgh_check,
.tgh_site .tgh_radio {
  display: flex;
  align-items: flex-start;
  gap: var(--tgh_space-2);
  min-block-size: var(--tgh_touch-target);
  color: var(--tgh_color-text);
}

.tgh_site .tgh_check input,
.tgh_site .tgh_radio input {
  margin-block-start: 0.2rem;
  inline-size: 1.125rem;
  block-size: 1.125rem;
  accent-color: var(--tgh_color-primary);
}

/* Dark form variant */
.tgh_site .tgh_form--dark :where(.tgh_label, .tgh_help, .tgh_form-microcopy) {
  color: var(--tgh_color-text-inverse);
}

.tgh_site .tgh_form--dark :where(.tgh_input, .tgh_select, .tgh_textarea) {
  background: var(--tgh_color-input-dark-bg);
  color: var(--tgh_color-input-dark-text);
  border-color: var(--tgh_color-input-dark-border);
}

/* =============================================================================
   04. CARDS
   ============================================================================= */

.tgh_site .tgh_card {
  position: relative;
  display: grid;
  gap: var(--tgh_space-4);
  padding: var(--tgh_space-5);
  border: 1px solid var(--tgh_color-border);
  border-radius: var(--tgh_radius-lg);
  background: var(--tgh_color-surface);
  color: var(--tgh_color-text);
  box-shadow: var(--tgh_shadow-sm);
}

.tgh_site .tgh_card--soft {
  background: var(--tgh_color-surface-soft);
  box-shadow: none;
}

.tgh_site .tgh_card--outline {
  background: transparent;
  border-color: var(--tgh_color-border-strong);
  box-shadow: none;
}

.tgh_site .tgh_card--elevated {
  box-shadow: var(--tgh_shadow-md);
}

.tgh_site .tgh_card--feature {
  border-inline-start: 4px solid var(--tgh_color-primary);
}

.tgh_site .tgh_card--clickable {
  transition:
    transform var(--tgh_transition-base),
    box-shadow var(--tgh_transition-base),
    border-color var(--tgh_transition-base);
}

.tgh_site .tgh_card--clickable:hover {
  transform: translateY(-2px);
  box-shadow: var(--tgh_shadow-md);
  border-color: var(--tgh_color-primary);
}

.tgh_site .tgh_card__header,
.tgh_site .tgh_card__body,
.tgh_site .tgh_card__footer {
  display: grid;
  gap: var(--tgh_space-3);
}

.tgh_site .tgh_card__title {
  color: var(--tgh_color-heading);
  font-size: var(--tgh_text-xl);
  font-weight: var(--tgh_weight-bold);
}

.tgh_site .tgh_card__text {
  color: var(--tgh_color-text-soft);
}

.tgh_site .tgh_card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--tgh_space-3);
}

/* Specialized card compositions */
.tgh_site :where(
  .tgh_service-card,
  .tgh_usp-card,
  .tgh_benefit-card,
  .tgh_trust-card,
  .tgh_review-card,
  .tgh_pricing-card,
  .tgh_airport-card,
  .tgh_location-card,
  .tgh_contact-card,
  .tgh_payment-card,
  .tgh_driver-card,
  .tgh_business-card,
  .tgh_booking-card,
  .tgh_calculator-card,
  .tgh_reassurance-card
) {
  min-inline-size: 0;
}

.tgh_site .tgh_service-card__icon,
.tgh_site .tgh_benefit-card__icon,
.tgh_site .tgh_contact-card__icon {
  margin-block-end: var(--tgh_space-1);
}

.tgh_site .tgh_pricing-card__price,
.tgh_site .tgh_airport-card__price {
  color: var(--tgh_color-accent);
  font-size: var(--tgh_text-3xl);
  font-weight: var(--tgh_weight-extrabold);
  line-height: var(--tgh_line-tight);
}

.tgh_site .tgh_location-card__meta,
.tgh_site .tgh_payment-card__meta {
  color: var(--tgh_color-text-muted);
  font-size: var(--tgh_text-sm);
}

/* =============================================================================
   05. BADGES, PILLS & LABELS
   ============================================================================= */

.tgh_site .tgh_badge,
.tgh_site .tgh_pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--tgh_space-2);
  min-block-size: 2rem;
  padding: 0.375rem 0.75rem;
  border: 1px solid var(--tgh_color-border);
  border-radius: var(--tgh_radius-pill);
  background: var(--tgh_color-bg-soft);
  color: var(--tgh_color-heading);
  font-size: var(--tgh_text-sm);
  font-weight: var(--tgh_weight-semibold);
  line-height: 1;
}

.tgh_site .tgh_badge--primary {
  background: var(--tgh_color-primary);
  color: var(--tgh_color-button-primary-text);
  border-color: var(--tgh_color-primary);
}

.tgh_site .tgh_badge--accent {
  background: var(--tgh_color-accent);
  color: var(--tgh_color-button-accent-text);
  border-color: var(--tgh_color-accent);
}

.tgh_site .tgh_badge--outline {
  background: transparent;
  border-color: var(--tgh_color-border-strong);
}

.tgh_site .tgh_badge--success {
  background: var(--tgh_color-success-bg);
  color: var(--tgh_color-success);
  border-color: var(--tgh_color-success-border);
}

.tgh_site .tgh_badge--warning {
  background: var(--tgh_color-warning-bg);
  color: var(--tgh_color-warning);
  border-color: var(--tgh_color-warning-border);
}

.tgh_site .tgh_badge--info {
  background: var(--tgh_color-info-bg);
  color: var(--tgh_color-info);
  border-color: var(--tgh_color-info-border);
}

/* =============================================================================
   06. ALERTS & FEEDBACK
   ============================================================================= */

.tgh_site .tgh_alert {
  display: grid;
  gap: var(--tgh_space-2);
  padding: var(--tgh_space-4);
  border: 1px solid var(--tgh_color-border);
  border-radius: var(--tgh_radius-md);
  background: var(--tgh_color-surface);
}

.tgh_site .tgh_alert__title {
  font-weight: var(--tgh_weight-bold);
}

.tgh_site .tgh_alert__text {
  font-size: var(--tgh_text-sm);
}

.tgh_site .tgh_alert--success {
  background: var(--tgh_color-success-bg);
  border-color: var(--tgh_color-success-border);
  color: var(--tgh_color-success);
}

.tgh_site .tgh_alert--error {
  background: var(--tgh_color-error-bg);
  border-color: var(--tgh_color-error-border);
  color: var(--tgh_color-error);
}

.tgh_site .tgh_alert--warning {
  background: var(--tgh_color-warning-bg);
  border-color: var(--tgh_color-warning-border);
  color: var(--tgh_color-warning);
}

.tgh_site .tgh_alert--info {
  background: var(--tgh_color-info-bg);
  border-color: var(--tgh_color-info-border);
  color: var(--tgh_color-info);
}

/* =============================================================================
   07. TRUST COMPONENTS
   ============================================================================= */

.tgh_site .tgh_trust-strip,
.tgh_site .tgh_usp-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--tgh_space-3);
  padding: var(--tgh_space-4);
  border: 1px solid var(--tgh_color-border);
  border-radius: var(--tgh_radius-lg);
  background: var(--tgh_color-surface);
}

.tgh_site .tgh_trust-item {
  display: flex;
  align-items: flex-start;
  gap: var(--tgh_space-3);
  min-inline-size: 0;
}

.tgh_site .tgh_trust-item__icon {
  color: var(--tgh_color-trust);
}

.tgh_site .tgh_trust-item__title {
  color: var(--tgh_color-heading);
  font-weight: var(--tgh_weight-bold);
}

.tgh_site .tgh_trust-item__text {
  color: var(--tgh_color-text-muted);
  font-size: var(--tgh_text-sm);
}

.tgh_site .tgh_review-score {
  display: inline-flex;
  align-items: center;
  gap: var(--tgh_space-2);
  font-weight: var(--tgh_weight-bold);
}

.tgh_site .tgh_stars {
  display: inline-flex;
  gap: var(--tgh_space-1);
  color: var(--tgh_color-rating);
}

.tgh_site .tgh_secure-note,
.tgh_site .tgh_confirmation-note,
.tgh_site .tgh_response-note {
  display: flex;
  align-items: flex-start;
  gap: var(--tgh_space-2);
  color: var(--tgh_color-text-muted);
  font-size: var(--tgh_text-sm);
}

/* =============================================================================
   08. REVIEWS & TESTIMONIALS
   ============================================================================= */

.tgh_site .tgh_review {
  display: grid;
  gap: var(--tgh_space-4);
  padding: var(--tgh_space-5);
  border: 1px solid var(--tgh_color-border);
  border-inline-start: 4px solid var(--tgh_color-primary);
  border-radius: var(--tgh_radius-lg);
  background: var(--tgh_color-surface);
  box-shadow: var(--tgh_shadow-sm);
}

.tgh_site .tgh_review__quote {
  color: var(--tgh_color-text);
  font-size: var(--tgh_text-lg);
  line-height: var(--tgh_line-relaxed);
}

.tgh_site .tgh_review__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--tgh_space-3);
}

.tgh_site .tgh_review__author {
  font-weight: var(--tgh_weight-bold);
}

.tgh_site .tgh_review__meta {
  color: var(--tgh_color-text-muted);
  font-size: var(--tgh_text-sm);
}

/* =============================================================================
   09. PRICING
   ============================================================================= */

.tgh_site .tgh_price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: var(--tgh_space-2);
}

.tgh_site .tgh_price__value {
  color: var(--tgh_color-accent);
  font-size: var(--tgh_text-3xl);
  font-weight: var(--tgh_weight-extrabold);
  line-height: 1;
}

.tgh_site .tgh_price__prefix,
.tgh_site .tgh_price__suffix {
  color: var(--tgh_color-text-muted);
  font-size: var(--tgh_text-sm);
}

.tgh_site .tgh_price-list {
  display: grid;
  gap: var(--tgh_space-3);
  list-style: none;
}

.tgh_site .tgh_price-list__item {
  display: flex;
  justify-content: space-between;
  gap: var(--tgh_space-4);
  padding-block: var(--tgh_space-3);
  border-block-end: 1px solid var(--tgh_color-divider);
}

/* =============================================================================
   10. MEDIA
   ============================================================================= */

.tgh_site .tgh_media {
  position: relative;
  overflow: hidden;
  border-radius: var(--tgh_radius-lg);
  background: var(--tgh_color-bg-soft);
}

.tgh_site .tgh_media :where(img, picture, video) {
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
}

.tgh_site .tgh_media--4x3 { aspect-ratio: 4 / 3; }
.tgh_site .tgh_media--16x9 { aspect-ratio: 16 / 9; }
.tgh_site .tgh_media--square { aspect-ratio: 1 / 1; }
.tgh_site .tgh_media--portrait { aspect-ratio: 4 / 5; }

.tgh_site .tgh_media__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: var(--tgh_space-5);
  background: linear-gradient(to top, var(--tgh_overlay-soft), transparent);
  color: var(--tgh_color-text-inverse);
}

.tgh_site .tgh_media__caption {
  margin-block-start: var(--tgh_space-2);
  color: var(--tgh_color-text-muted);
  font-size: var(--tgh_text-sm);
}

/* =============================================================================
   11. TABLES
   ============================================================================= */

.tgh_site .tgh_table-wrap {
  inline-size: 100%;
  overflow-x: auto;
  border: 1px solid var(--tgh_color-border);
  border-radius: var(--tgh_radius-lg);
  background: var(--tgh_color-surface);
}

.tgh_site .tgh_table {
  inline-size: 100%;
  min-inline-size: 40rem;
  border-collapse: collapse;
}

.tgh_site .tgh_table :where(th, td) {
  padding: 0.875rem 1rem;
  text-align: start;
  vertical-align: top;
  border-block-end: 1px solid var(--tgh_color-divider);
}

.tgh_site .tgh_table th {
  background: var(--tgh_color-bg-soft);
  color: var(--tgh_color-heading);
  font-weight: var(--tgh_weight-semibold);
}

.tgh_site .tgh_table tbody tr:last-child td {
  border-block-end: 0;
}

.tgh_site .tgh_table--zebra tbody tr:nth-child(even) {
  background: var(--tgh_color-surface-soft);
}

/* =============================================================================
   12. FAQ / ACCORDION
   ============================================================================= */

.tgh_site .tgh_accordion {
  display: grid;
  gap: var(--tgh_space-3);
}

.tgh_site .tgh_faq {
  overflow: clip;
  border: 1px solid var(--tgh_color-border);
  border-radius: var(--tgh_radius-md);
  background: var(--tgh_color-surface);
}

.tgh_site .tgh_faq > summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--tgh_space-4);
  min-block-size: var(--tgh_touch-target);
  padding: var(--tgh_space-4);
  color: var(--tgh_color-heading);
  font-weight: var(--tgh_weight-semibold);
  cursor: pointer;
  list-style: none;
}

.tgh_site .tgh_faq > summary::-webkit-details-marker {
  display: none;
}

.tgh_site .tgh_faq > summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 1.75rem;
  block-size: 1.75rem;
  flex: 0 0 1.75rem;
  border-radius: var(--tgh_radius-round);
  background: var(--tgh_color-bg-soft);
  color: var(--tgh_color-heading);
  font-size: var(--tgh_text-lg);
  line-height: 1;
}

.tgh_site .tgh_faq[open] > summary::after {
  content: "−";
}

.tgh_site .tgh_faq__answer {
  padding: 0 var(--tgh_space-4) var(--tgh_space-4);
  color: var(--tgh_color-text-soft);
}

/* =============================================================================
   13. TOPBAR
   ============================================================================= */

.tgh_site .tgh_topbar {
  background: var(--tgh_color-secondary);
  color: var(--tgh_color-text-inverse);
  font-size: var(--tgh_text-sm);
}

.tgh_site .tgh_topbar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--tgh_space-3);
  min-block-size: 2.5rem;
  padding-block: var(--tgh_space-2);
}

.tgh_site .tgh_topbar__items {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--tgh_space-3) var(--tgh_space-5);
}

.tgh_site .tgh_topbar__item {
  display: inline-flex;
  align-items: center;
  gap: var(--tgh_space-2);
  color: inherit;
  text-decoration: none;
}

.tgh_site .tgh_topbar__secondary {
  display: none;
}

/* =============================================================================
   14. HEADER & NAVIGATION
   ============================================================================= */

.tgh_site .tgh_header {
  position: sticky;
  inset-block-start: 0;
  z-index: var(--tgh_z-header);
  border-block-end: 1px solid var(--tgh_color-border);
  background: color-mix(in srgb, var(--tgh_color-bg-light) 96%, transparent);
  backdrop-filter: blur(10px);
}

.tgh_site .tgh_header--dark {
  background: var(--tgh_overlay-header);
  color: var(--tgh_color-text-inverse);
  border-color: var(--tgh_overlay-gold-border);
}

.tgh_site .tgh_header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--tgh_space-4);
  min-block-size: var(--tgh_header-height);
}

.tgh_site .tgh_brand {
  display: inline-flex;
  align-items: center;
  gap: var(--tgh_space-3);
  color: inherit;
  text-decoration: none;
}

.tgh_site .tgh_brand__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 2.5rem;
  block-size: 2.5rem;
  border-radius: var(--tgh_radius-round);
  background: var(--tgh_color-primary);
  color: var(--tgh_color-button-primary-text);
  font-weight: var(--tgh_weight-extrabold);
}

.tgh_site .tgh_brand__name {
  font-weight: var(--tgh_weight-bold);
  line-height: 1;
}

.tgh_site .tgh_nav {
  display: none;
}

.tgh_site .tgh_nav__list,
.tgh_site .tgh_mobile-nav__list {
  list-style: none;
}

.tgh_site .tgh_nav__list {
  display: flex;
  align-items: center;
  gap: var(--tgh_space-5);
}

.tgh_site .tgh_nav__link {
  display: inline-flex;
  align-items: center;
  min-block-size: var(--tgh_touch-target);
  color: inherit;
  font-weight: var(--tgh_weight-medium);
  text-decoration: none;
}

.tgh_site .tgh_nav__link:hover,
.tgh_site .tgh_nav__link[aria-current="page"] {
  color: var(--tgh_color-primary);
}

.tgh_site .tgh_header__actions {
  display: flex;
  align-items: center;
  gap: var(--tgh_space-2);
}

.tgh_site .tgh_menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: var(--tgh_touch-target);
  block-size: var(--tgh_touch-target);
  padding: 0;
  border: 1px solid var(--tgh_color-border);
  border-radius: var(--tgh_radius-md);
  background: var(--tgh_color-surface);
  color: var(--tgh_color-heading);
  cursor: pointer;
}

.tgh_site .tgh_mobile-nav {
  display: grid;
  gap: var(--tgh_space-2);
  padding-block: var(--tgh_space-3) var(--tgh_space-4);
  border-block-start: 1px solid var(--tgh_color-border);
}

.tgh_site .tgh_mobile-nav[hidden] {
  display: none;
}

.tgh_site .tgh_mobile-nav__link {
  display: flex;
  align-items: center;
  min-block-size: var(--tgh_touch-target);
  padding-block: var(--tgh_space-3);
  color: inherit;
  text-decoration: none;
  border-block-end: 1px solid var(--tgh_color-divider);
}

/* =============================================================================
   15. FOOTER
   ============================================================================= */

.tgh_site .tgh_footer {
  background: var(--tgh_color-secondary);
  color: var(--tgh_color-text-inverse);
}

.tgh_site .tgh_footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--tgh_space-8);
  padding-block: var(--tgh_space-10);
}

.tgh_site .tgh_footer__column {
  display: grid;
  align-content: start;
  gap: var(--tgh_space-3);
}

.tgh_site .tgh_footer__title {
  color: inherit;
  font-size: var(--tgh_text-lg);
  font-weight: var(--tgh_weight-bold);
}

.tgh_site .tgh_footer__list {
  display: grid;
  gap: var(--tgh_space-2);
  list-style: none;
}

.tgh_site .tgh_footer a {
  color: inherit;
}

.tgh_site .tgh_footer__bottom {
  padding-block: var(--tgh_space-4);
  border-block-start: 1px solid var(--tgh_color-divider-dark);
  color: color-mix(in srgb, currentColor 72%, transparent);
  font-size: var(--tgh_text-sm);
}

/* =============================================================================
   16. MICRO CTA
   ============================================================================= */

.tgh_site .tgh_micro-cta {
  min-block-size: var(--tgh_touch-target);
}

.tgh_site .tgh_micro-cta__icon {
  transition: transform var(--tgh_transition-fast);
}

.tgh_site .tgh_micro-cta:hover .tgh_micro-cta__icon {
  transform: translateX(0.2rem);
}

/* =============================================================================
   17. CTA BLOCKS
   ============================================================================= */

.tgh_site .tgh_cta {
  display: grid;
  gap: var(--tgh_space-5);
  padding: var(--tgh_space-6);
  border-radius: var(--tgh_radius-xl);
  background: var(--tgh_color-bg-soft);
}

.tgh_site .tgh_cta--accent {
  background: var(--tgh_color-primary);
  color: var(--tgh_color-button-primary-text);
}

.tgh_site .tgh_cta--dark {
  background: var(--tgh_color-secondary);
  color: var(--tgh_color-text-inverse);
}

.tgh_site .tgh_cta--outline {
  background: transparent;
  border: 1px solid var(--tgh_color-border-strong);
}

.tgh_site .tgh_cta__copy {
  display: grid;
  gap: var(--tgh_space-3);
}

.tgh_site .tgh_cta__title {
  color: inherit;
}

.tgh_site .tgh_cta__actions {
  display: flex;
  flex-direction: column;
  gap: var(--tgh_space-3);
}

/* =============================================================================
   18. BOOKING WIZARD
   ============================================================================= */

.tgh_site .tgh_booking {
  --tgh_booking-progress: 50%;
  display: grid;
  gap: var(--tgh_space-5);
  padding: var(--tgh_space-5);
  border: 1px solid var(--tgh_color-border);
  border-radius: var(--tgh_radius-xl);
  background: var(--tgh_color-surface);
  box-shadow: var(--tgh_shadow-md);
}

.tgh_site .tgh_booking__header {
  display: grid;
  gap: var(--tgh_space-3);
}

.tgh_site .tgh_booking__steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--tgh_space-2);
}

.tgh_site .tgh_booking__step {
  display: flex;
  align-items: center;
  gap: var(--tgh_space-2);
  color: var(--tgh_color-text-muted);
  font-size: var(--tgh_text-sm);
  font-weight: var(--tgh_weight-semibold);
}

.tgh_site .tgh_booking__step::before {
  content: "";
  inline-size: 0.75rem;
  block-size: 0.75rem;
  flex: 0 0 0.75rem;
  border: 2px solid var(--tgh_color-border-strong);
  border-radius: var(--tgh_radius-round);
  background: var(--tgh_color-surface);
}

.tgh_site .tgh_booking__step.is-active {
  color: var(--tgh_color-heading);
}

.tgh_site .tgh_booking__step.is-active::before,
.tgh_site .tgh_booking__step.is-completed::before {
  border-color: var(--tgh_color-primary);
  background: var(--tgh_color-primary);
}

.tgh_site .tgh_booking__progress {
  block-size: 0.375rem;
  overflow: hidden;
  border-radius: var(--tgh_radius-pill);
  background: var(--tgh_color-bg-soft);
}

.tgh_site .tgh_booking__progress-bar {
  inline-size: var(--tgh_booking-progress, 50%);
  block-size: 100%;
  border-radius: inherit;
  background: var(--tgh_color-primary);
  transition: inline-size var(--tgh_transition-base);
}

.tgh_site .tgh_booking__panel {
  display: grid;
  gap: var(--tgh_space-4);
}

.tgh_site .tgh_booking__panel[hidden] {
  display: none;
}

.tgh_site .tgh_booking__actions {
  display: flex;
  flex-direction: column;
  gap: var(--tgh_space-3);
}

.tgh_site .tgh_booking__confirmation {
  display: grid;
  gap: var(--tgh_space-3);
  padding: var(--tgh_space-5);
  border: 1px solid var(--tgh_color-success-border);
  border-radius: var(--tgh_radius-lg);
  background: var(--tgh_color-success-bg);
  color: var(--tgh_color-success);
}

/* =============================================================================
   19. TAXI CALCULATOR
   ============================================================================= */

.tgh_site .tgh_calculator {
  display: grid;
  gap: var(--tgh_space-5);
  padding: var(--tgh_space-5);
  border: 1px solid var(--tgh_color-border);
  border-radius: var(--tgh_radius-xl);
  background: var(--tgh_color-surface);
  box-shadow: var(--tgh_shadow-md);
}

.tgh_site .tgh_calculator__form,
.tgh_site .tgh_calculator__route {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--tgh_space-4);
}

.tgh_site .tgh_calculator__result {
  display: grid;
  gap: var(--tgh_space-3);
  padding: var(--tgh_space-5);
  border: 1px solid var(--tgh_color-highlight-border);
  border-radius: var(--tgh_radius-lg);
  background: var(--tgh_color-highlight);
}

.tgh_site .tgh_calculator__price {
  color: var(--tgh_color-heading);
  font-size: var(--tgh_text-4xl);
  font-weight: var(--tgh_weight-extrabold);
  line-height: 1;
}

.tgh_site .tgh_calculator__meta,
.tgh_site .tgh_calculator__microcopy {
  color: var(--tgh_color-text-muted);
  font-size: var(--tgh_text-sm);
}

.tgh_site .tgh_calculator__actions {
  display: flex;
  flex-direction: column;
  gap: var(--tgh_space-3);
}

/* =============================================================================
   20. CONTACT / CALL / WHATSAPP CARDS
   ============================================================================= */

.tgh_site .tgh_contact-option {
  display: grid;
  gap: var(--tgh_space-4);
  padding: var(--tgh_space-5);
  border: 1px solid var(--tgh_color-border);
  border-radius: var(--tgh_radius-lg);
  background: var(--tgh_color-surface);
}

.tgh_site .tgh_contact-option--whatsapp {
  border-color: var(--tgh_color-success-border);
}

.tgh_site .tgh_contact-option__header {
  display: flex;
  align-items: center;
  gap: var(--tgh_space-3);
}

.tgh_site .tgh_contact-option__title {
  color: var(--tgh_color-heading);
  font-weight: var(--tgh_weight-bold);
}

.tgh_site .tgh_contact-option__text {
  color: var(--tgh_color-text-soft);
}

/* =============================================================================
   21. CHOICE CARDS
   ============================================================================= */

.tgh_site .tgh_choice {
  position: relative;
  display: grid;
  gap: var(--tgh_space-3);
  min-block-size: var(--tgh_touch-target);
  padding: var(--tgh_space-4);
  border: 1px solid var(--tgh_color-border);
  border-radius: var(--tgh_radius-lg);
  background: var(--tgh_color-surface);
  cursor: pointer;
  transition:
    border-color var(--tgh_transition-fast),
    box-shadow var(--tgh_transition-fast),
    background-color var(--tgh_transition-fast);
}

.tgh_site .tgh_choice:hover {
  border-color: var(--tgh_color-primary);
}

.tgh_site .tgh_choice.is-selected {
  border-color: var(--tgh_color-primary);
  box-shadow: var(--tgh_shadow-focus);
}

/* =============================================================================
   22. PAYMENT METHODS
   ============================================================================= */

.tgh_site .tgh_payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: var(--tgh_space-2);
  align-items: center;
}

.tgh_site .tgh_payment-method {
  display: inline-flex;
  align-items: center;
  gap: var(--tgh_space-2);
  min-block-size: 2.25rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid var(--tgh_color-border);
  border-radius: var(--tgh_radius-pill);
  background: var(--tgh_color-surface);
  color: var(--tgh_color-text);
  font-size: var(--tgh_text-sm);
}

/* =============================================================================
   23. TIMELINE / PROCESS STEPS
   ============================================================================= */

.tgh_site .tgh_steps {
  display: grid;
  gap: var(--tgh_space-4);
  list-style: none;
  counter-reset: tgh-step;
}

.tgh_site .tgh_step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--tgh_space-3);
  align-items: start;
  counter-increment: tgh-step;
}

.tgh_site .tgh_step::before {
  content: counter(tgh-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  inline-size: 2rem;
  block-size: 2rem;
  border-radius: var(--tgh_radius-round);
  background: var(--tgh_color-primary);
  color: var(--tgh_color-button-primary-text);
  font-weight: var(--tgh_weight-bold);
}

/* =============================================================================
   24. STICKY MOBILE CTA
   ============================================================================= */

.tgh_site .tgh_sticky-cta {
  position: fixed;
  inset-inline: 0;
  inset-block-end: 0;
  z-index: var(--tgh_z-sticky);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-block-end: env(safe-area-inset-bottom);
  background: var(--tgh_color-secondary);
  border-block-start: 1px solid var(--tgh_color-divider-dark);
  box-shadow: var(--tgh_shadow-lg);
}

.tgh_site .tgh_sticky-cta__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--tgh_space-1);
  min-block-size: 3.75rem;
  padding: var(--tgh_space-2);
  color: var(--tgh_color-text-inverse);
  font-size: var(--tgh_text-xs);
  font-weight: var(--tgh_weight-semibold);
  text-align: center;
  text-decoration: none;
}

.tgh_site .tgh_sticky-cta__link + .tgh_sticky-cta__link {
  border-inline-start: 1px solid var(--tgh_color-divider-dark);
}

.tgh_site .tgh_sticky-cta__link--primary {
  background: var(--tgh_color-primary);
  color: var(--tgh_color-button-primary-text);
}

/* =============================================================================
   25. GENERIC STATES
   ============================================================================= */

.tgh_site .is-hidden {
  display: none !important;
}

.tgh_site .is-disabled {
  opacity: 0.55;
  pointer-events: none;
}

.tgh_site .is-loading {
  cursor: progress;
}

.tgh_site .is-success {
  border-color: var(--tgh_color-success-border);
}

.tgh_site .is-error {
  border-color: var(--tgh_color-error-border);
}

.tgh_site .is-open,
.tgh_site .is-active,
.tgh_site .is-selected {
  --tgh_state-accent: var(--tgh_color-primary);
}

/* =============================================================================
   26. RESPONSIVE COMPONENT RULES — MOBILE FIRST
   ============================================================================= */

/* Small tablet */
@media (min-width: 600px) {
  .tgh_site .tgh_form-row--2,
  .tgh_site .tgh_form-grid--2,
  .tgh_site .tgh_calculator__route {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tgh_site .tgh_cta__actions,
  .tgh_site .tgh_booking__actions,
  .tgh_site .tgh_calculator__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .tgh_site .tgh_topbar__secondary {
    display: inline-flex;
  }
}

/* Large tablet */
@media (min-width: 768px) {
  .tgh_site .tgh_trust-strip,
  .tgh_site .tgh_usp-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tgh_site .tgh_footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tgh_site .tgh_form-grid--tablet-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Laptop */
@media (min-width: 1024px) {
  .tgh_site .tgh_nav {
    display: flex;
    align-items: center;
  }

  .tgh_site .tgh_menu-toggle,
  .tgh_site .tgh_mobile-nav {
    display: none;
  }

  .tgh_site .tgh_footer__grid {
    grid-template-columns: 1.25fr repeat(2, minmax(0, 1fr));
  }

  .tgh_site .tgh_trust-strip,
  .tgh_site .tgh_usp-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tgh_site .tgh_form-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tgh_site .tgh_cta {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
  }

  .tgh_site .tgh_sticky-cta {
    display: none;
  }
}

/* Desktop */
@media (min-width: 1280px) {
  .tgh_site .tgh_card,
  .tgh_site .tgh_booking,
  .tgh_site .tgh_calculator {
    padding: var(--tgh_space-6);
  }
}

/* =============================================================================
   27. REDUCED MOTION
   ============================================================================= */

@media (prefers-reduced-motion: reduce) {
  .tgh_site .tgh_btn,
  .tgh_site .tgh_card--clickable,
  .tgh_site .tgh_micro-cta__icon,
  .tgh_site .tgh_booking__progress-bar {
    transition: none;
  }

  .tgh_site .tgh_btn:hover,
  .tgh_site .tgh_card--clickable:hover,
  .tgh_site .tgh_micro-cta:hover .tgh_micro-cta__icon {
    transform: none;
  }
}

/* =============================================================================
   28. KEYFRAMES
   ============================================================================= */

@keyframes tgh_spin {
  to { transform: rotate(360deg); }
}


/* Standalone SVG size variants — specificity-safe */
.tgh_site svg.tgh_icon.tgh_icon--xs { inline-size:.875rem; block-size:.875rem; max-inline-size:.875rem; max-block-size:.875rem; flex-basis:.875rem; }
.tgh_site svg.tgh_icon.tgh_icon--sm { inline-size:1rem; block-size:1rem; max-inline-size:1rem; max-block-size:1rem; flex-basis:1rem; }
.tgh_site svg.tgh_icon.tgh_icon--md { inline-size:1.25rem; block-size:1.25rem; max-inline-size:1.25rem; max-block-size:1.25rem; flex-basis:1.25rem; }
.tgh_site svg.tgh_icon.tgh_icon--lg { inline-size:1.5rem; block-size:1.5rem; max-inline-size:1.5rem; max-block-size:1.5rem; flex-basis:1.5rem; }
.tgh_site svg.tgh_icon.tgh_icon--xl { inline-size:2rem; block-size:2rem; max-inline-size:2rem; max-block-size:2rem; flex-basis:2rem; }
