/* ============================================================
   TAXI ROUTE PAGES MODULE — Om Taxi Service
   Includes: Route Breadcrumb, Hero Banner, Destination Highlights,
   Route Pricing Cards, FAQs, Related Routes
   ============================================================ */

/* ── BREADCRUMB ── */
.rtp-breadcrumb {
    background: #ffffff;
    border-bottom: 1px solid var(--border, #e2e8f0);
    padding: 14px 0;
}

.rtp-breadcrumb h1,
.rtp-breadcrumb .rtp-bc-title {
    font-size: 24px;
    font-weight: 800;
    color: #170F2F;
    margin: 0 0 4px;
    line-height: 1.3;
    display: block;
}

.rtp-bc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 12.5px;
}

.rtp-bc-item a {
    color: var(--theme, #5F2DED);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.rtp-bc-sep {
    color: #94a3b8;
    font-size: 11px;
}

.rtp-bc-current {
    color: #64748b;
    font-weight: 600;
}

/* ── MAIN ROUTE SECTION ── */
.rtp-main-sec {
    padding: 30px 0 60px;
    background: #fdfdfd;
}

.rtp-h1 {
    font-size: 24px;
    font-weight: 800;
    color: #170F2F;
    margin: 0 0 6px;
    line-height: 1.3;
}

.rtp-meta-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.rtp-sec-title {
    font-size: 19px;
    font-weight: 800;
    color: #170F2F;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rtp-sec-title i {
    color: var(--theme, #5F2DED);
    font-size: 17px;
}

.rtp-sec-sub {
    font-size: 13.5px;
    color: #64748b;
    margin: 4px 0 0 0;
    font-weight: 500;
}

/* ── GALLERY & HERO WRAPPER ── */
.rtp-gallery-wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 24px;
    background: #f1f5f9;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.rtp-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.5) 0%, rgba(15, 23, 42, 0.15) 50%, transparent 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.25s;
    font-size: 28px;
    color: #fff;
}

.rtp-gallery-swiper .swiper-slide:hover .rtp-gallery-overlay {
    opacity: 1;
}

/* ── DESTINATION PLACES / SIGHTSEEING ── */
.rtp-dest-places-block {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    border: 1px solid var(--border, #e2e8f0);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    margin-bottom: 30px;
    position: relative;
}

.rtp-sec-head-flex {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 16px;
}

.rtp-places-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rtp-place-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1.5px solid var(--border, #e2e8f0);
    overflow: hidden;
    height: 100%;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.rtp-place-card:hover {
    border-color: var(--theme, #5F2DED);
    box-shadow: 0 8px 24px rgba(95, 45, 237, 0.1);
}

.rtp-place-img-wrap {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #f1f5f9;
    flex-shrink: 0;
}

.rtp-place-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.rtp-place-card:hover .rtp-place-img {
    transform: scale(1.08);
}

.rtp-place-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.45) 0%, transparent 35%);
    z-index: 1;
}

.rtp-place-body {
    padding: 14px;
}

.rtp-place-name {
    font-size: 15px;
    font-weight: 800;
    color: #170F2F;
    margin: 0 0 4px;
}

.rtp-place-desc {
    font-size: 12.5px;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* ── ROUTE RICH CONTENT ── */
.rtp-content {
    font-size: 14.5px;
    line-height: 1.7;
    color: #334155;
    margin-bottom: 30px;
}

.rtp-content h2 {
    font-size: 20px;
    font-weight: 800;
    color: #170F2F;
    margin: 28px 0 12px;
}

.rtp-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: #170F2F;
    margin: 22px 0 10px;
}

.rtp-content p {
    margin-bottom: 16px;
}

.rtp-content strong {
    color: #170F2F;
    font-weight: 700;
}

.rtp-content ul {
    list-style: none;
    padding-left: 18px;
    margin: 0 0 18px;
}

.rtp-content ul li {
    position: relative;
    padding: 0;
    font-size: 14.5px;
    color: #4a4a5a;
    border-bottom: 1px solid #f5f2ff;
    line-height: 1.3;
    margin-bottom: 5px;
}

.rtp-content ul li:last-child { border-bottom: none; }

.rtp-content ul li::before {
    content: '';
    position: absolute;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #5F2DED;
    flex-shrink: 0;
}

/* ── RELATED ROUTES ── */
.rtp-related-routes {
    margin-top: 30px;
}

.rtp-related-title {
    font-size: 19px;
    font-weight: 800;
    color: #170F2F;
    margin-bottom: 18px;
}

.rtp-route-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1.5px solid var(--border, #e2e8f0);
    padding: 14px 18px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-bottom: 12px;
}

.rtp-route-card:hover {
    border-color: var(--theme, #5F2DED);
    box-shadow: 0 4px 16px rgba(95, 45, 237, 0.08);
    transform: translateX(4px);
}

.rtp-route-name {
    font-size: 14px;
    font-weight: 700;
    color: #170F2F;
}

.rtp-route-card .rtp-route-badge {
    position: static;
    transform: none;
    background: #f4efff;
    color: var(--theme, #5F2DED);
    font-size: 11.5px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    border: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .rtp-h1 {
        font-size: 21px;
    }
}

@media (max-width: 600px) {
    .rtp-route-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}
/* ============================================================
   CITY ROUTES & PACKAGES SECTION (.cty-routes-sec)
   ============================================================ */
.cty-routes-sec {
    position: relative;
    background: linear-gradient(180deg, #f8f6fe 0%, #ffffff 100%);
    padding: 64px 0 70px;
    border-top: 1px solid var(--border-subtle, #e2e8f0);
    border-bottom: 1px solid var(--border-subtle, #e2e8f0);
}

.cty-routes-head {
    text-align: center;
    margin-bottom: 36px;
}

.cty-routes-title {
    font-family: var(--title-font, 'DM Serif Text', serif);
    font-size: 30px;
    font-weight: 800;
    color: var(--heading-color, #170F2F);
    line-height: 1.25;
    margin: 0 0 8px;
    letter-spacing: -0.3px;
}

.cty-routes-sub {
    font-size: 15px;
    font-weight: 600;
    color: #64748b;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.55;
}

.cty-route-card {
    background: #ffffff;
    border: 1.5px solid var(--border-subtle, #e2e8f0);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
    position: relative;
}

.cty-route-card:hover {
    transform: translateY(-4px);
    border-color: var(--theme, #5F2DED);
    box-shadow: 0 14px 34px rgba(95, 45, 237, 0.14);
}

.cty-route-card-top {
    background: linear-gradient(135deg, var(--theme, #5F2DED) 0%, #7c4fff 100%);
    padding: 14px 18px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.cty-route-cities {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.cty-rc-from,
.cty-rc-to {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14.5px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.25;
    min-width: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.cty-rc-from { flex: 1; }
.cty-rc-to { flex: 1; justify-content: flex-end; text-align: right; }
.cty-rc-from i { color: #daccff; font-size: 13px; flex-shrink: 0; }
.cty-rc-to i { color: #ffd4e5; font-size: 13px; flex-shrink: 0; }

.cty-rc-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 12px;
    flex-shrink: 0;
    transition: transform 0.3s ease, background 0.3s ease;
}

.cty-route-card:hover .cty-rc-arrow {
    transform: translateX(3px) scale(1.06);
    background: rgba(255, 255, 255, 0.38);
}

.cty-route-card-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: #ffffff;
}

.cty-route-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1.5px dashed #e2e8f0;
}

.cty-route-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 700;
    color: #334155;
    background: #f8fafc;
    padding: 5px 10px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    line-height: 1.3;
}

.cty-route-meta span i {
    color: var(--theme, #5F2DED);
    font-size: 12px;
}

.cty-route-meta span:has(.fa-indian-rupee-sign),
.cty-route-meta span:has(.fa-tag) {
    background: #f4efff;
    border-color: #ede9ff;
    color: var(--theme, #5F2DED);
    font-weight: 800;
}

.cty-route-btns {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.cty-route-btn-view {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    background: #f4efff;
    color: var(--theme, #5F2DED) !important;
    border: 1.5px solid #ede9ff;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.25s ease;
    min-height: 42px;
    white-space: nowrap;
}

.cty-route-btn-view:hover {
    background: var(--theme, #5F2DED);
    color: #ffffff !important;
    border-color: var(--theme, #5F2DED);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(95, 45, 237, 0.25);
}

.cty-route-btn-wa {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #ffffff !important;
    border: 1.5px solid #20bd5a;
    border-radius: 10px;
    font-size: 18px;
    text-decoration: none;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.22);
    transition: all 0.25s ease;
}

.cty-route-btn-wa:hover {
    background: #1eb956;
    border-color: #1eb956;
    transform: translateY(-1px) scale(1.04);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
    color: #ffffff !important;
}

.cty-route-btn-book {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 14px;
    background: var(--accent-color, #F2277E);
    color: #ffffff !important;
    border: 1.5px solid var(--accent-color, #F2277E);
    border-radius: 10px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    min-height: 42px;
    box-shadow: 0 4px 14px rgba(242, 39, 126, 0.25);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.cty-route-btn-book:hover {
    background: #d81567;
    border-color: #d81567;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(242, 39, 126, 0.38);
    color: #ffffff !important;
}

/* ============================================================
   SIDEBAR CARDS & STRUCTURE (.cty-sb-card, .rtp-sb-card)
   ============================================================ */
.cty-sidebar,
.rtp-sidebar {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.cty-sb-card,
.rtp-sb-card {
    background: #ffffff;
    border: 1.5px solid var(--border-subtle, #e2e8f0);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 0;
    padding: 0;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.25s ease;
}

.cty-sb-card:hover,
.rtp-sb-card:hover {
    border-color: var(--theme, #5F2DED);
    box-shadow: 0 10px 28px rgba(95, 45, 237, 0.12);
}

/* ── Distinct Header with separated border ── */
.cty-sb-card-head,
.rtp-sb-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: linear-gradient(135deg, #f8f6fe 0%, #f1ebff 100%);
    border-bottom: 1.5px solid #ede9ff;
    font-size: 15px;
    font-weight: 800;
    color: #170F2F;
    margin: 0;
}

.cty-sb-card-head i,
.rtp-sb-card-head i {
    color: var(--theme, #5F2DED);
    font-size: 15px;
    flex-shrink: 0;
}

.cty-sb-card-head span,
.rtp-sb-card-head span {
    font-size: 15px;
    font-weight: 800;
    color: #170F2F;
    letter-spacing: -0.2px;
}

/* ── Separate Inner Body Container ── */
.cty-sb-body,
.rtp-sb-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: #ffffff;
}

/* ── Book Card Top & Header ── */
.rtp-sb-book-top,
.cty-contact-card-top {
    padding: 18px 18px 14px;
    background: linear-gradient(135deg, #f8f6fe 0%, #faf8ff 100%);
    border-bottom: 1.5px solid #ede9ff;
}

.rtp-sb-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--theme, #5F2DED);
    background: #ede9ff;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.rtp-sb-title {
    font-family: var(--title-font, 'DM Serif Text', serif);
    font-size: 18px;
    font-weight: 800;
    color: #170F2F;
    line-height: 1.3;
    margin: 0;
}

.rtp-book-stats {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.rtp-bk-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 700;
    color: #334155;
    background: #f8fafc;
    padding: 5px 10px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.rtp-bk-stat i {
    color: var(--theme, #5F2DED);
    font-size: 12px;
}

.rtp-sb-desc,
.cty-sb-desc {
    font-size: 13px;
    color: #475569;
    line-height: 1.55;
    margin: 0;
}

/* ── Sidebar Action Buttons ── */
.rtp-sb-btn,
.cty-sb-btn {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 16px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
    min-height: 44px;
}

.rtp-sb-btn-call,
.cty-sb-btn-call,
.cty-sb-call {
    background: var(--theme, #5F2DED);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(95, 45, 237, 0.25);
}

.rtp-sb-btn-call:hover,
.cty-sb-btn-call:hover,
.cty-sb-call:hover {
    background: #4a1fc7;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(95, 45, 237, 0.35);
}

.rtp-sb-btn-wa,
.cty-sb-btn-wa,
.cty-sb-wa {
    background: #25D366;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.22);
}

.rtp-sb-btn-wa:hover,
.cty-sb-btn-wa:hover,
.cty-sb-wa:hover {
    background: #1eb956;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.rtp-sb-btn-enq,
.cty-sb-btn-enq,
.cty-sb-enq {
    background: var(--accent-color, #F2277E);
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(242, 39, 126, 0.25);
}

.rtp-sb-btn-enq:hover,
.cty-sb-btn-enq:hover,
.cty-sb-enq:hover {
    background: #d81567;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(242, 39, 126, 0.35);
}

/* ── Fare Table ── */
.rtp-fare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 13px;
    margin: 0;
}

.rtp-fare-table th {
    background: #f8fafc;
    color: #64748b;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 14px;
    border-bottom: 1.5px solid #e2e8f0;
}

.rtp-fare-table td {
    padding: 11px 14px;
    border-bottom: 1px solid #f1f5f9;
    color: #334155;
    font-size: 13px;
    font-weight: 600;
}

.rtp-fare-table tr:last-child td {
    border-bottom: none;
}

/* ── Info List ── */
.rtp-info-list,
.cty-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rtp-info-list li,
.cty-info-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #334155;
    padding-bottom: 8px;
    border-bottom: 1px solid #f1f5f9;
}

.rtp-info-list li:last-child,
.cty-info-list li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.rtp-info-list li i,
.cty-info-list li i {
    color: var(--theme, #5F2DED);
    font-size: 13px;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.rtp-info-list li strong,
.cty-info-list li strong {
    color: #170F2F;
    font-weight: 800;
}

/* ── Quick Services List ── */
.cty-quick-list,
.rtp-quick-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cty-quick-list li,
.rtp-quick-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #f1f5f9;
    transition: all 0.2s ease;
}

.cty-quick-list li:hover,
.rtp-quick-list li:hover {
    background: #f4efff;
    border-color: #ede9ff;
    color: var(--theme, #5F2DED);
    transform: translateX(3px);
}

.cty-quick-list li i,
.rtp-quick-list li i {
    color: var(--theme, #5F2DED);
    font-size: 11px;
}

/* ── Route List ── */
.cty-route-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cty-route-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 12px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #f1f5f9;
    transition: all 0.2s ease;
}

.cty-route-list li:hover {
    background: #f4efff;
    border-color: #ede9ff;
    transform: translateX(3px);
}

.cty-route-list li a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #170F2F;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    min-width: 0;
}

.cty-route-list li a:hover {
    color: var(--theme, #5F2DED);
}

.cty-route-list li a i {
    font-size: 10px;
    color: var(--theme, #5F2DED);
}

.cty-rl-dist {
    font-size: 11.5px;
    font-weight: 800;
    color: var(--theme, #5F2DED);
    background: #ede9ff;
    padding: 2px 8px;
    border-radius: 12px;
    white-space: nowrap;
}

/* ── City List ── */
.cty-city-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cty-city-list li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #f1f5f9;
    color: #334155;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.cty-city-list li a:hover,
.cty-city-list li.cty-city-active a {
    background: #f4efff;
    border-color: #ede9ff;
    color: var(--theme, #5F2DED);
    transform: translateX(3px);
}

.cty-city-list li a i {
    font-size: 8px;
    color: var(--theme, #5F2DED);
}

/* ── City Chips ── */
.rtp-city-chips,
.cty-other-cities,
.cty-other-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.rtp-city-chip,
.cty-oc-chip,
.cty-os-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    color: #334155;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.rtp-city-chip:hover,
.cty-oc-chip:hover,
.cty-os-chip:hover {
    background: var(--theme, #5F2DED);
    color: #ffffff !important;
    border-color: var(--theme, #5F2DED);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(95, 45, 237, 0.2);
}

/* ── Trust Grid ── */
.rtp-trust-grid,
.cty-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #f1f5f9;
}

.rtp-trust-item,
.cty-trust-item {
    background: #ffffff;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 6px;
}

.rtp-trust-item i,
.cty-trust-item i {
    color: var(--theme, #5F2DED);
    font-size: 18px;
}

.rtp-trust-item span,
.cty-trust-item span {
    font-size: 12px;
    font-weight: 800;
    color: #170F2F;
}
