

:root {
  --tr-navy: #0F2A3D;
  --tr-navy-soft: #16384F;
  --tr-orange: #F96D00;
  --tr-orange-dark: #D95E00;
  --tr-mist: #EAF3EF;
  --tr-cream: #FDF8F2;
  --tr-ink: #22241F;
  --tr-ink-soft: #5B6260;
  --tr-gold: #F5B54C;
  --tr-line: #E7DFD2;
  --tr-radius: 14px;
}

/* =========================
   HERO (existing markup)
========================= */
.reviews-hero {
  position: relative;
 
  min-height: 380px;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--tr-navy) 0%, var(--tr-navy-soft) 100%);
  padding: 140px 0 90px;
  overflow: hidden;
}

.reviews-hero::after {
  content: "";
  position: absolute;
  
  right: -80px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 109, 0, 0.22) 0%, rgba(249, 109, 0, 0) 70%);
  pointer-events: none;
}

.reviews-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.05), transparent 55%);
}

.reviews-hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.reviews-hero-eyebrow {
  display: inline-block;
  color: var(--tr-orange);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  margin-bottom: 14px;
}

.reviews-hero-content h1 {
  color: #fff;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 16px;
}

.reviews-hero-description {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 22px;
}

.reviews-breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
}

.reviews-breadcrumb a:hover { color: #fff; }

.reviews-breadcrumb span[aria-hidden] {
  color: rgba(255, 255, 255, 0.4);
  margin: 0 8px;
}

.reviews-breadcrumb > span:last-child { color: #fff; }

/* =========================
   SHARED
========================= */
.tr-script {
  font-family: 'Arizonia', cursive;
  font-size: 1.9rem;
  color: var(--tr-orange);
  margin-bottom: 2px;
  line-height: 1;
}

.tr-btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s ease, background-color 0.15s ease, color 0.15s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.tr-btn:hover { transform: translateY(-2px); text-decoration: none; }

.tr-btn-solid {
  background: var(--tr-orange);
  color: #fff;
}

.tr-btn-solid:hover { background: var(--tr-orange-dark); color: #fff; }

.tr-btn-outline {
  background: transparent;
  border-color: var(--tr-navy);
  color: var(--tr-navy);
}

.tr-btn-outline:hover { background: var(--tr-navy); color: #fff; }

.tr-stars { color: var(--tr-gold); font-size: 1.05rem; letter-spacing: 2px; }
.tr-stars.sm { font-size: 0.9rem; margin-bottom: 12px; }

section h2 {
  font-weight: 700;
  color: var(--tr-navy);
  font-size: 2rem;
}

/* =========================
   TRUST STRIP
========================= */
.tr-stats {
  background: var(--tr-cream);
  padding: 46px 0;
  border-bottom: 1px solid var(--tr-line);
}

.tr-stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.tr-stat { flex: 1 1 auto; min-width: 140px; }

.tr-stat-num {
  display: block;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--tr-navy);
  line-height: 1;
}

.tr-stat-label {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--tr-ink-soft);
  line-height: 1.4;
}

.tr-stat-divider {
  width: 1px;
  height: 46px;
  background: var(--tr-line);
  flex: 0 0 auto;
}

@media (max-width: 767px) {
  .tr-stat-divider { display: none; }
  .tr-stat { min-width: 45%; text-align: center; }
  .tr-stats-row { justify-content: center; }
}

/* =========================
   RATING SUMMARY + FEATURE
========================= */
.tr-summary { background: #fff; padding: 90px 0; }

.tr-summary-card {
  background: var(--tr-mist);
  border-radius: var(--tr-radius);
  padding: 42px 38px;
}

.tr-summary-card h2 { margin-bottom: 26px; }

.tr-score-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.tr-score {
  font-size: 3.4rem;
  font-weight: 700;
  color: var(--tr-navy);
  line-height: 1;
}

.tr-score-sub {
  color: var(--tr-ink-soft);
  font-size: 0.85rem;
  margin: 6px 0 0;
}

.tr-bars { margin-bottom: 32px; }

.tr-bar-row {
  display: grid;
  grid-template-columns: 58px 1fr 40px;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  color: var(--tr-ink-soft);
  margin-bottom: 9px;
}

.tr-bar {
  height: 7px;
  background: rgba(15, 42, 61, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.tr-bar-fill {
  height: 100%;
  background: var(--tr-orange);
  border-radius: 999px;
}

.tr-feature-card {
  background: var(--tr-navy);
  border-radius: var(--tr-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.tr-feature-media {
  position: relative;
  aspect-ratio: 16 / 10;
}

.tr-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tr-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  color: var(--tr-navy);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.tr-play-btn:hover { transform: translate(-50%, -50%) scale(1.08); }

.tr-feature-quote {
  padding: 30px 32px 34px;
}

.tr-feature-quote p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.12rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.tr-feature-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tr-feature-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.tr-feature-author strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
}

.tr-feature-author span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

/* =========================
   REVIEW GRID
========================= */
.tr-reviews { background: var(--tr-cream); padding: 90px 0; }

.tr-reviews-head { max-width: 560px; margin-bottom: 36px; }

.tr-reviews-head p { color: var(--tr-ink-soft); margin-top: 10px; }

.tr-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.tr-filter {
  border: 1px solid var(--tr-line);
  background: #fff;
  color: var(--tr-ink);
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
}

.tr-filter:hover { border-color: var(--tr-orange); color: var(--tr-orange); }

.tr-filter.active {
  background: var(--tr-navy);
  border-color: var(--tr-navy);
  color: #fff;
}

.tr-review-grid { row-gap: 26px; }

.tr-review-card {
  background: #fff;
  border: 1px solid var(--tr-line);
  border-radius: var(--tr-radius);
  padding: 28px 26px;
  height: 100%;
}

.tr-review-card p {
  color: var(--tr-ink);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 22px;
}

.tr-review-foot {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tr-review-foot img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.tr-review-foot strong {
  display: block;
  font-size: 0.9rem;
  color: var(--tr-navy);
}

.tr-review-foot span {
  font-size: 0.78rem;
  color: var(--tr-ink-soft);
}

.tr-no-results {
  text-align: center;
  color: var(--tr-ink-soft);
  padding: 30px 0 0;
}

/* =========================
   SHARE YOUR EXPERIENCE
========================= */
.tr-write { background: #fff; padding: 90px 0; }

.tr-write-img {
  width: 100%;
  border-radius: var(--tr-radius);
  object-fit: cover;
  max-height: 560px;
}

.tr-write-sub {
  color: var(--tr-ink-soft);
  margin: 12px 0 30px;
  max-width: 520px;
}

.tr-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--tr-navy);
}

.tr-form .form-control {
  border-radius: 9px;
  border: 1px solid var(--tr-line);
  padding: 11px 14px;
  height: auto;
}

.tr-form .form-control:focus {
  border-color: var(--tr-orange);
  box-shadow: 0 0 0 3px rgba(249, 109, 0, 0.15);
}

.tr-rating-input { display: flex; gap: 6px; padding-top: 6px; }

.tr-rating-star {
  border: none;
  background: none;
  font-size: 1.35rem;
  color: var(--tr-gold);
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.tr-form-note {
  margin-top: 14px;
  font-size: 0.85rem;
  color: #1e7a4c;
}

.tr-form-note--error { color: #c0392b; }

/* =========================
   FAQ
========================= */
.tr-faq { background: var(--tr-mist); padding: 90px 0; }

.tr-faq h2 { margin-bottom: 30px; }

.tr-accordion-item {
  border-bottom: 1px solid var(--tr-line);
}

.tr-accordion-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 4px;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--tr-navy);
  cursor: pointer;
  position: relative;
}

.tr-accordion-btn::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 18px;
  font-size: 1.3rem;
  color: var(--tr-orange);
  transition: transform 0.2s ease;
}

.tr-accordion-btn[aria-expanded="true"]::after {
  content: "\2212";
}

.tr-accordion-item p {
  color: var(--tr-ink-soft);
  padding: 0 4px 20px;
  margin: 0;
  line-height: 1.65;
}

/* =========================
   CTA
========================= */
.tr-cta {
  background: var(--tr-navy);
  padding: 80px 0;
  text-align: center;
}

.tr-cta h2 { color: #fff; margin-bottom: 12px; }

.tr-cta p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 480px;
  margin: 0 auto 28px;
}

/* =========================
   VIDEO MODAL
========================= */
.tr-modal-content {
  background: var(--tr-navy);
  border: none;
  border-radius: var(--tr-radius);
  overflow: hidden;
}

.tr-modal-close {
  position: absolute;
  top: 10px;
  right: 16px;
  z-index: 2;
  color: #fff;
  opacity: 0.8;
  text-shadow: none;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
  .reviews-hero { padding: 120px 0 70px; }
  .reviews-hero-content h1 { font-size: 2.1rem; }
  .tr-summary, .tr-reviews, .tr-write, .tr-faq { padding: 64px 0; }
}

@media (max-width: 575px) {
  .tr-summary-card { padding: 30px 24px; }
  .tr-score { font-size: 2.6rem; }
}


  /* Main Section */
  .tr-write {
    padding: 80px 0;
    background: #f8fafc;
  }


  /* Heading */
  .tr-review-heading {
    max-width: 780px;
    margin: 0 auto 40px;
  }

  .tr-script {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 8px;
    color: #20a464;
    font-family: cursive;
  }

  .tr-review-heading h2 {
    font-size: 40px;
    font-weight: 700;
    color: #172033;
    margin-bottom: 15px;
  }

  .tr-write-sub {
    font-size: 16px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0 auto;
  }


  /* =========================
     REVIEW CARD
  ========================= */

  .tr-review-card {
    height: 100%;
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid #e5e7eb;

    box-shadow:
      0 10px 35px rgba(0, 0, 0, 0.07);

    transition:
      transform 0.3s ease,
      box-shadow 0.3s ease;
  }


  .tr-review-card:hover {
    transform: translateY(-8px);

    box-shadow:
      0 20px 45px rgba(0, 0, 0, 0.12);
  }


  /* =========================
     IMAGE
  ========================= */

  .tr-review-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #e5e7eb;
  }


  .tr-review-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;

    transition:
      transform 0.5s ease;
  }


  .tr-review-card:hover .tr-review-image img {
    transform: scale(1.06);
  }


  /* Image Overlay */
  .tr-review-image-overlay {
    position: absolute;
    inset: 0;

    background:
      linear-gradient(
        to top,
        rgba(0,0,0,0.55),
        transparent 60%
      );
  }


  /* =========================
     PLATFORM BADGE
  ========================= */

  .tr-platform-badge {
    position: absolute;
    left: 20px;
    bottom: 18px;

    display: flex;
    align-items: center;
    gap: 9px;

    padding: 9px 15px;

    border-radius: 50px;

    background: rgba(255,255,255,0.96);

    font-size: 15px;
    font-weight: 700;

    box-shadow: 0 5px 18px rgba(0,0,0,0.15);
  }


  .google-badge i {
    font-size: 18px;
  }


  .justdial-badge {
    color: #222;
  }


  .jd-logo,
  .jd-btn-logo {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 28px;
    height: 28px;

    border-radius: 50%;

    background: #e4002b;

    color: #ffffff;

    font-size: 12px;
    font-weight: 800;

    text-transform: lowercase;
  }


  /* =========================
     CONTENT
  ========================= */

  .tr-review-content {
    padding: 28px 28px 30px;
  }


  .tr-review-stars {
    margin-bottom: 12px;
  }


  .tr-review-stars i {
    font-size: 16px;
    margin-right: 2px;
  }


  .tr-review-content h3 {
    font-size: 23px;
    font-weight: 700;

    color: #172033;

    margin: 0 0 10px;
  }


  .tr-review-content p {
    color: #6b7280;

    font-size: 15px;
    line-height: 1.7;

    min-height: 75px;

    margin-bottom: 22px;
  }


  /* =========================
     BUTTON
  ========================= */

  .tr-review-btn {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 52px;

    border-radius: 12px;

    text-decoration: none !important;

    font-size: 15px;
    font-weight: 700;

    transition:
      transform 0.25s ease,
      box-shadow 0.25s ease;
  }


  .tr-review-btn:hover {
    transform: translateY(-2px);
  }


  .tr-review-btn i:last-child {
    margin-left: 4px;

    transition:
      transform 0.25s ease;
  }


  .tr-review-btn:hover i:last-child {
    transform: translateX(5px);
  }


  /* Google Button */
  .google-btn {
    background: #ffffff;

    color: #202124;

    border: 1px solid #dadce0;

    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
  }


  .google-btn:hover {
    color: #202124;

    box-shadow:
      0 8px 22px rgba(0,0,0,0.12);
  }


  .google-btn > i:first-child {
    font-size: 18px;
  }


  /* Justdial Button */
  .justdial-btn {
    background: #e4002b;

    color: #ffffff;

    box-shadow:
      0 7px 18px rgba(228, 0, 43, 0.22);
  }


  .justdial-btn:hover {
    color: #ffffff;

    box-shadow:
      0 10px 25px rgba(228, 0, 43, 0.30);
  }


  /* =========================
     RESPONSIVE
  ========================= */

  @media (max-width: 991px) {

    .tr-write {
      padding: 65px 0;
    }

    .tr-review-heading h2 {
      font-size: 34px;
    }

    .tr-review-image {
      height: 230px;
    }

  }


  @media (max-width: 767px) {

    .tr-write {
      padding: 55px 0;
    }

    .tr-review-heading {
      padding: 0 10px;
      margin-bottom: 25px;
    }

    .tr-review-heading h2 {
      font-size: 29px;
      line-height: 1.25;
    }

    .tr-write-sub {
      font-size: 15px;
    }

    .tr-review-card {
      border-radius: 18px;
    }

    .tr-review-image {
      height: 220px;
    }

    .tr-review-content {
      padding: 23px 20px 24px;
    }

    .tr-review-content h3 {
      font-size: 21px;
    }

    .tr-review-content p {
      min-height: auto;
      margin-bottom: 20px;
    }

  }


  @media (max-width: 480px) {

    .tr-review-heading h2 {
      font-size: 26px;
    }

    .tr-review-image {
      height: 200px;
    }

    .tr-platform-badge {
      left: 14px;
      bottom: 14px;
      padding: 8px 13px;
      font-size: 14px;
    }

    .tr-review-btn {
      min-height: 50px;
      font-size: 14px;
    }

  }
  
  
  @media (min-width: 992px) {
  .tr-feature-media video {
    height: 480px;
    object-fit: cover;
  }
}