/* =====================================================
   SITE-WIDE POLISH LAYER
   Prefix: `tp-` (trimounts polish)
   - Trust stats strip (under hero on home + tours pages)
   - Floating "Talk to Expert" button (above WhatsApp float)
   - Card hover/shadow refinements that overlay existing wo-* cards
   ===================================================== */

/* ============== TRUST STRIP ============== */
.tp-trust {
    background: #fff;
    padding: 36px 0;
    border-bottom: 1px solid #eef1f7;
    position: relative;
    z-index: 2;
}
.tp-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.tp-trust__item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(14, 165, 233, .04), rgba(99, 102, 241, .04));
    border: 1px solid rgba(14, 165, 233, .1);
    transition: transform .2s, box-shadow .2s;
}
.tp-trust__item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px -10px rgba(14, 165, 233, .25);
}
.tp-trust__icon {
    flex: none;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    color: #fff;
    font-size: 22px;
    box-shadow: 0 10px 22px -8px rgba(14, 165, 233, .5);
}
.tp-trust__num {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.1;
    color: #0f172a;
    letter-spacing: -.02em;
    font-family: 'Playfair Display', serif;
}
.tp-trust__num small {
    font-size: 14px;
    color: #0ea5e9;
    font-weight: 700;
    margin-left: 2px;
    font-family: inherit;
}
.tp-trust__label {
    font-size: 13px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin: 2px 0 0;
    font-weight: 500;
}

@media (max-width: 991px) {
    .tp-trust__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .tp-trust { padding: 24px 0; }
}
@media (max-width: 480px) {
    .tp-trust__grid { grid-template-columns: 1fr; }
    .tp-trust__item { padding: 12px 14px; }
    .tp-trust__num  { font-size: 22px; }
    .tp-trust__icon { width: 44px; height: 44px; font-size: 18px; border-radius: 12px; }
}

/* ============== FLOATING TALK-TO-EXPERT FAB ============== */
.tp-fab {
    position: fixed;
    right: 22px;
    bottom: 92px; /* sits above WhatsApp float */
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #0ea5e9, #6366f1);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    box-shadow:
        0 14px 30px -10px rgba(14, 165, 233, .65),
        0 0 0 6px rgba(14, 165, 233, .12);
    transition: transform .2s, box-shadow .2s;
    animation: tpFabPulse 2.6s ease-in-out infinite;
}
.tp-fab:hover {
    transform: translateY(-2px) scale(1.03);
    color: #fff;
    box-shadow:
        0 18px 36px -10px rgba(14, 165, 233, .85),
        0 0 0 6px rgba(14, 165, 233, .18);
}
.tp-fab i {
    font-size: 16px;
}
@keyframes tpFabPulse {
    0%, 100% { box-shadow: 0 14px 30px -10px rgba(14, 165, 233, .65), 0 0 0 0    rgba(14, 165, 233, .35); }
    50%      { box-shadow: 0 14px 30px -10px rgba(14, 165, 233, .65), 0 0 0 14px rgba(14, 165, 233, 0);   }
}
@media (max-width: 600px) {
    .tp-fab {
        right: 14px;
        bottom: 78px;
        padding: 11px 16px;
        font-size: 13px;
    }
    .tp-fab span { display: none; } /* icon only on mobile */
    .tp-fab i { font-size: 18px; }
}

/* ============== TOUR CARD POLISH (homepage + tours.php) ============== */
.wo-tour-card,
.wo-premium-card {
    transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s !important;
    border-radius: 18px !important;
    overflow: hidden;
}
.wo-tour-card:hover,
.wo-premium-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 28px 48px -18px rgba(15, 23, 42, .22) !important;
}
.wo-tour-enquire,
.wo-pc-enquire {
    transition: background .2s, transform .15s, box-shadow .2s !important;
    box-shadow: 0 6px 18px -6px rgba(14, 165, 233, .35);
}
.wo-tour-enquire:hover,
.wo-pc-enquire:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px -6px rgba(14, 165, 233, .55);
}

/* ============== SECTION DIVIDER (decorative) ============== */
.tp-divider {
    text-align: center;
    margin: 8px 0 28px;
    color: #0ea5e9;
    font-size: 18px;
    letter-spacing: 8px;
}

/* ============== DEST / BLOG / CONTACT CARD POLISH ============== */
.wo-dest-tile,
.wo-blog-card-v2,
.wo-blog-featured,
.wo-contact-card {
    transition: transform .35s cubic-bezier(.2, .8, .2, 1), box-shadow .35s !important;
}
.wo-dest-tile:hover,
.wo-blog-card-v2:hover,
.wo-contact-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 28px 48px -18px rgba(15, 23, 42, .22) !important;
}
.wo-blog-featured:hover {
    box-shadow: 0 32px 60px -22px rgba(15, 23, 42, .25) !important;
}
.wo-dest-tile img,
.wo-blog-card-v2-img img {
    transition: transform .55s cubic-bezier(.2, .8, .2, 1);
}
.wo-dest-tile:hover img,
.wo-blog-card-v2:hover .wo-blog-card-v2-img img {
    transform: scale(1.08);
}

/* CTA polish — primary buttons across about/dest/blog/contact */
.wo-about-cta-primary,
.wo-dest-cta-btn-primary,
.wo-contact-submit {
    transition: transform .2s, box-shadow .2s !important;
    box-shadow: 0 10px 26px -10px rgba(14, 165, 233, .55);
}
.wo-about-cta-primary:hover,
.wo-dest-cta-btn-primary:hover,
.wo-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -10px rgba(14, 165, 233, .75);
}

/* Contact card icon — match brand gradient */
.wo-contact-card-icon {
    background: linear-gradient(135deg, #0ea5e9, #6366f1) !important;
    color: #fff !important;
    box-shadow: 0 10px 22px -8px rgba(14, 165, 233, .5);
}

/* ============== SCROLL REVEAL CLASS (used by trust strip) ============== */
.tp-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
}
.tp-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
