/* ══════════════════════════════════════════════════════════════
   COMPONENTS — Reusable UI Components
   ══════════════════════════════════════════════════════════════ */

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px 28px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1.4;
  white-space: nowrap;
  min-height: 44px;
}

.btn--primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn--primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(17, 168, 160, 0.3);
}

.btn--outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}

.btn--outline:hover {
  background: var(--teal);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn--white:hover {
  background: var(--ivory);
  border-color: var(--ivory);
  color: var(--navy);
  transform: translateY(-1px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  color: var(--white);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: #c4922e;
  border-color: #c4922e;
  color: var(--white);
  transform: translateY(-1px);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}

.btn--whatsapp:hover {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  color: var(--white);
  transform: translateY(-1px);
}

.btn--sm {
  padding: 8px 18px;
  font-size: var(--fs-xs);
  min-height: 36px;
}

.btn--lg {
  padding: 16px 36px;
  font-size: var(--fs-base);
}

.btn--full {
  width: 100%;
}

.btn--loading {
  pointer-events: none;
  opacity: 0.7;
}

.btn--loading::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: var(--radius-full);
  animation: spin 0.6s linear infinite;
}

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

/* ── Service Cards ──────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: all var(--duration-normal) var(--ease-out);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--teal);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
}

.service-card__icon i {
  font-size: var(--fs-xl);
  color: var(--teal);
}

.service-card h4 {
  font-family: var(--font-body);
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-sm);
}

.service-card p {
  font-size: var(--fs-sm);
  flex-grow: 1;
}

.service-card__actions {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

/* ── Tour Cards ─────────────────────────────────────────────── */
.tour-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: all var(--duration-normal) var(--ease-out);
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.tour-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.tour-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.tour-card:hover .tour-card__img {
  transform: scale(1.05);
}

.tour-card__badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--gold);
  color: var(--white);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tour-card__body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-card__meta {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-sm);
  flex-wrap: wrap;
}

.tour-card__meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: var(--fs-xs);
  color: var(--muted-text);
}

.tour-card__meta-item i {
  color: var(--teal);
}

.tour-card__title {
  font-family: var(--font-body);
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-sm);
  color: var(--navy);
  line-height: 1.35;
}

.tour-card__desc {
  font-size: var(--fs-sm);
  color: var(--muted-text);
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: var(--space-md);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-card__footer {
  display: flex;
  gap: var(--space-sm);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

/* ── Fleet Cards ────────────────────────────────────────────── */
.fleet-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: all var(--duration-normal) var(--ease-out);
}

.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.fleet-card__img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--soft-grey);
}

.km-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #0f172a;
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.4);
  backdrop-filter: blur(4px);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 2;
}

.price-km-tag {
  display: inline-block;
  background: #fef3c7;
  color: #92400e;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 4px;
}

.fleet-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-card__body {
  padding: var(--space-lg);
}

.fleet-card__category {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--teal);
  margin-bottom: var(--space-xs);
}

.fleet-card__name {
  font-family: var(--font-body);
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--navy);
  margin-bottom: var(--space-md);
}

.fleet-card__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  padding: var(--space-md);
  background: var(--soft-grey);
  border-radius: var(--radius-md);
}

.fleet-spec {
  text-align: center;
}

.fleet-spec i {
  color: var(--teal);
  font-size: var(--fs-md);
  margin-bottom: 2px;
  display: block;
}

.fleet-spec span {
  font-size: var(--fs-xs);
  color: var(--muted-text);
}

.fleet-card__ideal {
  font-size: var(--fs-sm);
  color: var(--muted-text);
  margin-bottom: var(--space-md);
}

.fleet-card__ideal strong {
  color: var(--charcoal);
}

.fleet-card__price {
  font-size: var(--fs-sm);
  color: var(--gold);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-md);
}

.fleet-card__actions {
  display: flex;
  gap: var(--space-sm);
}

/* ── Fleet Card — Starting Price Tag ───────────────────────── */
.fleet-card__starting-price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #92400e;
  font-weight: 700;
  font-size: var(--fs-sm);
  padding: 6px 14px;
  border-radius: 8px;
  margin-bottom: var(--space-md);
  border: 1px solid rgba(217, 164, 65, 0.25);
}

.fleet-card__starting-price i {
  font-size: var(--fs-xs);
  color: #b45309;
}

.fleet-card__book-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: var(--white);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--duration-normal) var(--ease-out);
  box-shadow: 0 2px 8px rgba(17, 168, 160, 0.25);
}

.fleet-card__book-btn:hover {
  background: linear-gradient(135deg, var(--teal-dark) 0%, #065f5b 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(17, 168, 160, 0.35);
  color: var(--white);
}

.fleet-card__capacity-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: var(--space-sm);
}

.fleet-card__capacity-badge i {
  font-size: 10px;
}

.fleet-grid-responsive {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-xl);
}

.fleet-card__actions-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-sm);
  align-items: center;
  margin-top: var(--space-sm);
}

@media (max-width: 640px) {
  .fleet-grid-responsive {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

/* ── Form Group ─────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--navy);
  margin-bottom: var(--space-xs);
}

.form-label .required {
  color: var(--error);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  color: var(--charcoal);
  background: var(--white);
  transition: border-color var(--duration-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(17, 168, 160, 0.1);
}

.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: var(--error);
  background: var(--error-light);
}

.form-error {
  font-size: var(--fs-xs);
  color: var(--error);
  margin-top: var(--space-xs);
  display: none;
}

.form-input.error ~ .form-error,
.form-select.error ~ .form-error,
.form-textarea.error ~ .form-error {
  display: block;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23667479' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

/* Checkbox */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--teal);
  flex-shrink: 0;
}

.form-check label {
  font-size: var(--fs-sm);
  color: var(--muted-text);
  line-height: 1.5;
}

/* Honeypot */
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* ── Badges ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge--teal {
  background: var(--teal-light);
  color: var(--teal-dark);
}

.badge--gold {
  background: var(--gold-light);
  color: #8B6914;
}

.badge--success {
  background: rgba(20, 128, 74, 0.1);
  color: var(--success);
}

/* ── Gallery ────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: var(--space-md);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 29, 40, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration-normal);
}

.gallery-item:hover .gallery-item__overlay {
  background: rgba(4, 29, 40, 0.4);
}

.gallery-item__overlay i {
  color: var(--white);
  font-size: var(--fs-2xl);
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--duration-normal);
}

.gallery-item:hover .gallery-item__overlay i {
  opacity: 1;
  transform: scale(1);
}

/* ── Lightbox ───────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-normal);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: absolute;
  color: var(--white);
  font-size: var(--fs-xl);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: background var(--duration-fast);
}

.lightbox__close { top: 20px; right: 20px; }
.lightbox__prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 20px; top: 50%; transform: translateY(-50%); }

.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ── Tour Filters ───────────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
  justify-content: center;
}

.filter-btn {
  padding: 8px 20px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--muted-text);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--duration-fast);
}

.filter-btn:hover,
.filter-btn.active {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

/* ── Tour Detail Sections ───────────────────────────────────── */
.detail-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  overflow: hidden;
}

.detail-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.detail-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(4,29,40,0.3), rgba(4,29,40,0.7));
}

.detail-hero__content {
  position: relative;
  z-index: 2;
  color: var(--white);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: var(--space-2xl);
}

.detail-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-2xl);
  margin-top: calc(-1 * var(--space-2xl));
  position: relative;
  z-index: 3;
}

.detail-main {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
}

.detail-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + var(--space-lg));
  align-self: start;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--space-lg);
}

.sidebar-card h4 {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  margin-bottom: var(--space-md);
}

/* Itinerary */
.itinerary-list {
  position: relative;
  padding-left: var(--space-xl);
}

.itinerary-list::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.itinerary-item {
  position: relative;
  margin-bottom: var(--space-xl);
}

.itinerary-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-xl) + 4px);
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--teal);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--teal);
}

.itinerary-item h5 {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-xs);
}

.itinerary-item p {
  font-size: var(--fs-sm);
  margin-bottom: 0;
}

/* Inclusion Lists */
.inclusion-list {
  list-style: none;
}

.inclusion-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  font-size: var(--fs-sm);
  border-bottom: 1px solid var(--border);
}

.inclusion-list li:last-child {
  border-bottom: none;
}

.inclusion-list li i {
  margin-top: 3px;
  flex-shrink: 0;
}

.inclusion-list--included li i { color: var(--success); }
.inclusion-list--optional li i { color: var(--gold); }
.inclusion-list--excluded li i { color: var(--error); }

/* ── Alert / Form Messages ──────────────────────────────────── */
.form-message {
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  display: none;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.form-message.show {
  display: flex;
}

.form-message--success {
  background: rgba(20, 128, 74, 0.08);
  color: var(--success);
  border: 1px solid rgba(20, 128, 74, 0.2);
}

.form-message--error {
  background: var(--error-light);
  color: var(--error);
  border: 1px solid rgba(200, 59, 59, 0.2);
}

/* ══════════════════════════════════════════════════════════════
   TRUSTINDEX "SLIDER II" GOOGLE REVIEWS WIDGET (PIXEL-PERFECT)
   ══════════════════════════════════════════════════════════════ */
.ti-reviews-widget {
  padding: 50px 0;
  background-color: #f8fafc;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow: hidden;
}

.ti-widget-wrapper {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 28px;
}

/* ── Left Overall Trust Badge (EXCELLENT ★★★★★ Based on 173 reviews Google) ── */
.ti-overall-badge {
  flex: 0 0 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
  user-select: none;
}

.ti-overall-badge:hover {
  transform: scale(1.03);
}

.ti-badge-rating-text {
  font-size: 1.45rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.ti-badge-stars {
  display: flex;
  color: #f59e0b;
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 6px;
  gap: 2px;
}

.ti-badge-subtext {
  font-size: 0.88rem;
  color: #475569;
  margin-bottom: 8px;
}

.ti-badge-subtext strong {
  color: #0f172a;
  text-decoration: underline;
}

.ti-google-logo {
  font-family: 'Product Sans', 'Inter', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1;
}

.ti-g-blue { color: #4285F4; }
.ti-g-red { color: #EA4335; }
.ti-g-yellow { color: #FBBC05; }
.ti-g-green { color: #34A853; }

/* ── Right Slider Area ── */
.ti-slider-container {
  flex: 1;
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
}

.ti-viewport {
  width: 100%;
  overflow: hidden;
  padding: 12px 4px 18px;
}

.ti-track {
  display: flex;
  transition: none;
  will-change: transform;
}

/* ── Individual Review Card (White Elevated Rounded Card) ── */
.ti-card-slide {
  flex: 0 0 33.3333%;
  padding: 0 10px;
  box-sizing: border-box;
}

.ti-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px 20px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
  border: 1px solid #edf2f7;
  display: flex;
  flex-direction: column;
  min-height: 200px;
  height: 100%;
  box-sizing: border-box;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ti-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
}

/* Card Header */
.ti-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.ti-user-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.ti-avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ti-user-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.ti-user-name {
  font-size: 0.96rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ti-review-time {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 1px;
}

.ti-google-g-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Star Row + Verified Badge */
.ti-stars-row {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #f59e0b;
  font-size: 1.08rem;
  margin-bottom: 10px;
}

.ti-verified-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background-color: #1d9bf0;
  color: #ffffff;
  border-radius: 50%;
  font-size: 9px;
  margin-left: 6px;
  font-weight: 800;
  flex-shrink: 0;
}

/* Review Text */
.ti-review-body {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #334155;
  margin: 0 0 6px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ti-read-more {
  font-size: 0.82rem;
  color: #94a3b8;
  text-decoration: none;
  font-weight: 500;
}

.ti-read-more:hover {
  color: #0284c7;
  text-decoration: underline;
}

/* ── Arrow Nav Buttons (Floating Style) ── */
.ti-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  color: #334155;
  transition: all 0.2s ease;
}

.ti-nav-arrow:hover {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}

.ti-nav-prev {
  left: -16px;
}

.ti-nav-next {
  right: -16px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .ti-widget-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .ti-overall-badge {
    flex: 0 0 auto;
  }
  .ti-card-slide {
    flex: 0 0 50%; /* 2 cards on tablet */
  }
}

@media (max-width: 640px) {
  .ti-card-slide {
    flex: 0 0 100%; /* 1 card on mobile */
    padding: 0 4px;
  }
  .ti-nav-prev { left: -6px; }
  .ti-nav-next { right: -6px; }
}


.gmb-review-date {
  font-size: 0.78rem;
  color: #94a3b8;
  margin-top: 2px;
}

.gmb-google-badge-small {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.gmb-card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 12px;
}

.gmb-card-rating .gmb-star {
  color: #fbbf24;
  font-size: 1rem;
}

.gmb-verified-tag {
  font-size: 0.72rem;
  color: #059669;
  background: #ecfdf5;
  padding: 2px 7px;
  border-radius: 20px;
  font-weight: 600;
  margin-left: 6px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.gmb-card-text {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #334155;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gmb-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.gmb-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  padding: 0;
}

.gmb-dot.active {
  background: #0284c7;
  width: 24px;
  border-radius: 10px;
}

@media (max-width: 1024px) {
  .gmb-card-slide {
    flex: 0 0 50%;
  }
}

@media (max-width: 640px) {
  .gmb-card-slide {
    flex: 0 0 100%;
    padding: 0 4px;
  }
  .gmb-rating-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .gmb-controls {
    align-self: flex-end;
  }
}

/* ══════════════════════════════════════════════════════════════
   TRUST BADGES / PROMOTIONAL BRANDS MARQUEE (PURE CSS ANIMATION)
   ══════════════════════════════════════════════════════════════ */
.trust-marquee-section {
  padding: 36px 0 42px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  overflow: hidden;
  position: relative;
}

.trust-marquee-header {
  text-align: center;
  margin-bottom: 22px;
}

.trust-marquee-title {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #64748b;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.trust-marquee-title::before,
.trust-marquee-title::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: #cbd5e1;
}

.trust-marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.trust-marquee-track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  -webkit-animation: trustMarqueeScroll 24s linear infinite !important;
  animation: trustMarqueeScroll 24s linear infinite !important;
  will-change: transform;
}

.trust-marquee-container:hover .trust-marquee-track {
  animation-play-state: paused;
}

@-webkit-keyframes trustMarqueeScroll {
  0% { -webkit-transform: translateX(0); transform: translateX(0); }
  100% { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
}

@keyframes trustMarqueeScroll {
  0% { -webkit-transform: translateX(0); transform: translateX(0); }
  100% { -webkit-transform: translateX(-50%); transform: translateX(-50%); }
}

/* Individual Brand Badge Item */
.trust-brand-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  color: #64748b;
  fill: #64748b;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s ease;
  user-select: none;
}

.trust-brand-item svg.brand-svg-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.trust-brand-item:hover svg.brand-svg-icon {
  transform: scale(1.1);
}

.trust-brand-item:hover {
  color: #0f172a;
  border-color: #cbd5e1;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

/* Specific Brand Accent Colors */
.trust-brand-item.brand-msme {
  border-left: 3px solid #0284c7;
}

.trust-brand-item.brand-google {
  border-left: 3px solid #4285f4;
}

.trust-brand-item.brand-tripadvisor {
  border-left: 3px solid #00aa6c;
}

.trust-brand-item.brand-justdial {
  border-left: 3px solid #f26522;
}

.trust-brand-item.brand-gttaa {
  border-left: 3px solid #d97706;
}

.trust-brand-item.brand-safe {
  border-left: 3px solid #10b981;
}

/* Justdial Logo Styling */
.brand-jd-logo-wrap {
  display: flex;
  align-items: center;
}

.jd-pill-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #0284c7 0%, #f26522 100%);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 900;
  border-radius: 8px;
  letter-spacing: -0.5px;
  box-shadow: 0 2px 6px rgba(242, 101, 34, 0.3);
  transition: transform 0.25s ease;
}

.trust-brand-item:hover .jd-pill-icon {
  transform: scale(1.1);
}

.trust-brand-meta {
  display: flex;
  flex-direction: column;
}

.trust-brand-label {
  font-size: 0.94rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}

.trust-brand-sub {
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.3px;
}

/* ── Google Business Profile (GMB) Button ── */
.btn--google-gmb {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff !important;
  border: 2px solid #f59e0b;
  border-radius: var(--radius-full);
  padding: 12px 28px;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.25);
  transition: all var(--duration-normal) ease;
  text-decoration: none;
}

.btn--google-gmb:hover {
  background: #f59e0b;
  color: #0f172a !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}



