/* ============================================================
   MEHTA TRUST BOOSTER — Complete CSS
   ============================================================ */
:root {
    --tb-green:      #0D2818;
    --tb-green-mid:  #1A4A2E;
    --tb-green-light:#2D7A4F;
    --tb-gold:       #C9A84C;
    --tb-gold-light: #E8C96A;
    --tb-cream:      #FAFAF7;
    --tb-white:      #FFFFFF;
    --tb-text:       #1A1A1A;
    --tb-text-light: #666666;
    --tb-shadow:     0 4px 24px rgba(13,40,24,0.12);
    --tb-radius:     14px;
    --tb-wa-green:   #25D366;
}

/* ─── WHATSAPP BUTTON ─────────────────────────────────────── */
.mtb2-whatsapp-wrapper {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 99999;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 12px;
}

.mtb2-wa-btn {
    width: 60px;
    height: 60px;
    background: var(--tb-wa-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.mtb2-wa-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 36px rgba(37,211,102,0.55);
    color: #fff;
}

/* Pulse rings */
.mtb2-wa-ring {
    position: absolute;
    border-radius: 50%;
    background: rgba(37,211,102,0.25);
    animation: mtb2-wa-pulse 2s ease-out infinite;
    pointer-events: none;
}
.mtb2-wa-ring-1 { width: 70px; height: 70px; animation-delay: 0s; }
.mtb2-wa-ring-2 { width: 85px; height: 85px; animation-delay: 0.5s; }

@keyframes mtb2-wa-pulse {
    0%   { transform: scale(0.9); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Tooltip */
.mtb2-wa-tooltip {
    background: var(--tb-white);
    border-radius: var(--tb-radius);
    padding: 16px 18px;
    box-shadow: var(--tb-shadow);
    border: 1px solid rgba(37,211,102,0.2);
    min-width: 240px;
    max-width: 280px;
    opacity: 0;
    transform: translateX(10px) scale(0.95);
    transition: all 0.3s ease;
    pointer-events: none;
}

.mtb2-whatsapp-wrapper:hover .mtb2-wa-tooltip {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: all;
}

.mtb2-wa-tooltip-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--tb-green);
}

.mtb2-wa-online-dot {
    width: 8px;
    height: 8px;
    background: var(--tb-wa-green);
    border-radius: 50%;
    flex-shrink: 0;
    animation: mtb2-blink 1.5s infinite;
}

@keyframes mtb2-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

.mtb2-wa-tooltip-body {
    font-size: 12.5px;
    color: var(--tb-text-light);
    line-height: 1.5;
    margin-bottom: 12px;
}

.mtb2-wa-tooltip-btn {
    display: block;
    background: var(--tb-wa-green);
    color: #fff;
    text-align: center;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
}
.mtb2-wa-tooltip-btn:hover { background: #1da851; color: #fff; }

/* ─── VISITOR COUNTER ─────────────────────────────────────── */
.mtb2-visitor-counter {
    position: fixed;
    bottom: 100px;
    right: 28px;
    background: var(--tb-white);
    border: 1px solid rgba(13,40,24,0.12);
    border-radius: 30px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--tb-text);
    font-weight: 500;
    box-shadow: 0 2px 16px rgba(13,40,24,0.1);
    z-index: 9998;
    animation: mtb2-fade-in 0.5s ease 2s both;
}

.mtb2-visitor-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    flex-shrink: 0;
    animation: mtb2-blink 1.5s infinite;
}

.mtb2-visitor-num {
    font-weight: 700;
    color: var(--tb-green);
}

/* ─── PURCHASE POPUP ──────────────────────────────────────── */
.mtb2-purchase-popup {
    position: fixed;
    bottom: 28px;
    left: 28px;
    background: var(--tb-white);
    border-radius: var(--tb-radius);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(13,40,24,0.18);
    border: 1px solid rgba(201,168,76,0.25);
    border-left: 4px solid var(--tb-gold);
    z-index: 99998;
    max-width: 320px;
    animation: mtb2-slide-in 0.4s ease;
}

@keyframes mtb2-slide-in {
    from { transform: translateX(-100%); opacity: 0; }
    to   { transform: translateX(0);     opacity: 1; }
}

@keyframes mtb2-slide-out {
    from { transform: translateX(0);     opacity: 1; }
    to   { transform: translateX(-100%); opacity: 0; }
}

.mtb2-popup-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.mtb2-popup-content {
    flex: 1;
    min-width: 0;
}

.mtb2-popup-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--tb-green);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mtb2-popup-product {
    font-size: 12px;
    color: var(--tb-text-light);
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mtb2-popup-time {
    font-size: 11px;
    color: var(--tb-gold);
    font-weight: 600;
    margin-top: 3px;
}

.mtb2-popup-close {
    background: none;
    border: none;
    font-size: 18px;
    color: #999;
    cursor: pointer;
    padding: 0 4px;
    line-height: 1;
    flex-shrink: 0;
}
.mtb2-popup-close:hover { color: #333; }

/* ─── TESTIMONIALS SECTION ────────────────────────────────── */
.mtb2-testimonials-section {
    background: linear-gradient(135deg, #f9f5ec 0%, #f0ead6 100%);
    padding: 70px 20px;
    margin: 0;
}

.mtb2-testimonials-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.mtb2-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.mtb2-section-tag {
    display: inline-block;
    background: rgba(13,40,24,0.08);
    color: var(--tb-green);
    border: 1px solid rgba(13,40,24,0.15);
    border-radius: 20px;
    padding: 4px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.mtb2-section-header h2,
.mtb2-faq-header h3 {
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 700;
    color: var(--tb-green);
    margin: 0 0 16px;
    line-height: 1.3;
}

.mtb2-overall-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.mtb2-overall-stars {
    color: #F5A623;
    font-size: 22px;
    letter-spacing: 2px;
}

.mtb2-overall-score {
    font-size: 20px;
    font-weight: 800;
    color: var(--tb-green);
}

.mtb2-overall-count {
    font-size: 13px;
    color: var(--tb-text-light);
}

/* Reviews Grid */
.mtb2-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.mtb2-review-card {
    background: var(--tb-white);
    border-radius: var(--tb-radius);
    padding: 22px;
    box-shadow: var(--tb-shadow);
    border: 1px solid rgba(201,168,76,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mtb2-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(13,40,24,0.15);
    border-color: rgba(201,168,76,0.35);
}

.mtb2-review-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.mtb2-review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.mtb2-review-meta {
    flex: 1;
    min-width: 0;
}

.mtb2-review-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--tb-green);
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.mtb2-verified-badge {
    font-size: 10px;
    background: #e8f5ee;
    color: #1a7a3a;
    border: 1px solid #b8e0c4;
    border-radius: 10px;
    padding: 1px 7px;
    font-weight: 600;
}

.mtb2-review-location {
    font-size: 11.5px;
    color: var(--tb-text-light);
    margin-top: 2px;
}

.mtb2-review-date {
    font-size: 11px;
    color: #aaa;
    flex-shrink: 0;
    margin-left: auto;
}

.mtb2-review-stars {
    color: #F5A623;
    font-size: 15px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.mtb2-star-empty { color: #ddd; }

.mtb2-review-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--tb-green);
    margin-bottom: 8px;
    line-height: 1.4;
}

.mtb2-review-text {
    font-size: 13px;
    color: var(--tb-text-light);
    line-height: 1.65;
    margin-bottom: 12px;
}

.mtb2-product-tag {
    display: inline-block;
    background: rgba(13,40,24,0.06);
    color: var(--tb-green);
    border-radius: 20px;
    padding: 3px 12px;
    font-size: 11px;
    font-weight: 600;
    border: 1px solid rgba(13,40,24,0.1);
}

/* CTA */
.mtb2-testimonials-cta {
    text-align: center;
}

.mtb2-shop-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--tb-green) 0%, var(--tb-green-mid) 100%);
    color: var(--tb-gold-light);
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 24px rgba(13,40,24,0.25);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.mtb2-shop-btn:hover {
    background: transparent;
    color: var(--tb-green);
    border-color: var(--tb-green);
    box-shadow: none;
    transform: translateY(-2px);
}

/* ─── FAQ SECTION ─────────────────────────────────────────── */
.mtb2-faq-section {
    max-width: 860px;
    margin: 48px auto;
    padding: 0 20px;
}

.mtb2-faq-header {
    text-align: center;
    margin-bottom: 36px;
}

.mtb2-faq-header p {
    font-size: 15px;
    color: var(--tb-text-light);
    margin: 0;
}

.mtb2-faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mtb2-faq-item {
    background: var(--tb-white);
    border: 1px solid rgba(13,40,24,0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.mtb2-faq-item.mtb2-faq-open {
    border-color: var(--tb-gold);
    box-shadow: 0 4px 16px rgba(13,40,24,0.08);
}

.mtb2-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--tb-green);
    transition: background 0.2s;
}

.mtb2-faq-question:hover {
    background: rgba(13,40,24,0.03);
}

.mtb2-faq-q-text {
    flex: 1;
    line-height: 1.4;
}

.mtb2-faq-icon {
    font-size: 22px;
    font-weight: 300;
    color: var(--tb-gold);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
}

.mtb2-faq-item.mtb2-faq-open .mtb2-faq-icon {
    transform: rotate(45deg);
}

.mtb2-faq-answer {
    padding: 0 20px 18px;
}

.mtb2-faq-answer p {
    font-size: 13.5px;
    color: var(--tb-text-light);
    line-height: 1.7;
    margin: 0;
}

/* ─── ANIMATIONS ──────────────────────────────────────────── */
@keyframes mtb2-fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.mtb2-review-card {
    animation: mtb2-fade-in 0.5s ease both;
}
.mtb2-review-card:nth-child(1) { animation-delay: 0.05s; }
.mtb2-review-card:nth-child(2) { animation-delay: 0.10s; }
.mtb2-review-card:nth-child(3) { animation-delay: 0.15s; }
.mtb2-review-card:nth-child(4) { animation-delay: 0.20s; }
.mtb2-review-card:nth-child(5) { animation-delay: 0.25s; }
.mtb2-review-card:nth-child(6) { animation-delay: 0.30s; }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
    .mtb2-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .mtb2-reviews-grid { grid-template-columns: 1fr; }
    .mtb2-whatsapp-wrapper { bottom: 20px; right: 20px; }
    .mtb2-visitor-counter { bottom: 90px; right: 20px; font-size: 11px; }
    .mtb2-purchase-popup { left: 12px; right: 12px; max-width: none; bottom: 20px; }
    .mtb2-wa-tooltip { display: none; }
    .mtb2-testimonials-section { padding: 50px 16px; }
    .mtb2-faq-section { padding: 0 12px; }
    .mtb2-overall-rating { flex-direction: column; gap: 6px; }
}
