/* =========================================
   GLOBAL SAFETY FIX
========================================= */
body {
    overflow-x: hidden;
}

/* =========================================
   WILD ABOUT BOX (UPDATED)
========================================= */

.wild-about-box {
    padding: 0;
    background: #fff;
}

.wild-about-card {
    border-radius: 18px;
    padding: 30px;
}

/* FULL WIDTH TOP */
.wild-about-top {
    margin-bottom: 25px;
}

.wild-about-top h2 {
    color: #1f4d3a;
    font-weight: 600;
    margin-bottom: 10px;
}

.wild-about-top p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    max-width: 900px; /* wider readable block */
}

/* LEFT CONTENT */

.wild-about-left h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.wild-about-left p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
}

/* BUTTON */

.wild-about-btn {
    margin-top: 15px;
}

/* RIGHT IMAGE */

.wild-about-img img {
    width: 100%;
    border-radius: 12px;
}

/* ADDRESS */

.wild-about-address {
    margin-top: 10px;
    font-size: 13px;
    color: #333;
}

/* MOBILE */

@media (max-width: 768px) {

    .wild-about-card {
        padding: 15px;
    }

    .wild-about-top p {
        max-width: 100%;
    }

    .wild-about-left h3 {
        font-size: 18px;
    }

}


/* =========================================
   CARD HEIGHT ALIGNMENT (STAY OPTIONS)
========================================= */

.event_box {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.event_info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.event_title {
    min-height: 48px;
}

.event_meta {
    margin-top: auto;
}



/* =========================================
   CTA SECTION (WILD CTA)
========================================= */

.wild-cta-section {
    position: relative;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
}

/* overlay */

.wild-cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

/* box */

.wild-cta-box {
    position: relative;
    z-index: 2;
    padding: 40px 30px;
    border-radius: 20px;
    background: rgba(0,0,0,0.6); /* fallback */
    backdrop-filter: blur(8px);
}

/* text */

.wild-cta-sub {
    color: #fff;
    font-size: 16px;
    margin-bottom: 10px;
}

.wild-cta-phone {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.wild-cta-email {
    color: #ddd;
    font-size: 15px;
    margin-bottom: 25px;
}

.wild-cta-email a {
    color: #fff;
    text-decoration: underline;
}

/* buttons */

.wild-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.wild-btn {
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.wild-btn-call {
    background: #fff;
    color: #000;
}

.wild-btn-call:hover {
    background: #f1f1f1;
}

.wild-btn-whatsapp {
    background: #25D366;
    color: #fff;
}

.wild-btn-whatsapp:hover {
    background: #1ebe5d;
}

/* =========================================
   STICKY (DESKTOP ONLY SAFE VERSION)
========================================= */

.sticky-container {
    position: fixed;
    right: 10px;
    top: 120px;
    z-index: 999;
}

.sticky li {
    list-style: none;
    background: #fff;
    height: 42px;
    margin-bottom: 6px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.sticky li:hover {
    transform: translateX(-8px);
}

/* =========================================
   RESPONSIVE FIXES (MOBILE + TABLET)
========================================= */

@media (max-width: 768px) {

    /* CTA FIX */
    .wild-cta-section {
        background-attachment: scroll;
        padding: 50px 0;
    }

    .wild-cta-phone {
        font-size: 28px;
    }

    .wild-cta-box {
        padding: 25px 15px;
    }

    /* LLM arrows hide */
    .llm-arrow {
        display: none;
    }

    /* sticky disable */
    .sticky-container {
        display: none;
    }

}

/* =========================================
   SMALL DEVICE TWEAKS
========================================= */

@media (max-width: 480px) {

    .llm-card {
        min-width: 240px;
    }

    .wild-btn {
        width: 100%;
        text-align: center;
    }

}

/* =========================================
   WILD INFO STRIP (SMART RESPONSIVE)
========================================= */

.wild-info-strip {
    background: #fff;
    padding: 15px 0;
}

.wild-info-grid {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: nowrap;
}

/* CARD */

.wild-info-box {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 12px 15px;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

/* LABEL */

.wild-info-box h6 {
    font-size: 12px;
    color: #777;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* VALUE */

.wild-info-box p {
    font-size: 14px;
    color: #111;
    margin: 0;
    font-weight: 500;
}

/* =========================================
   MOBILE (2x2 GRID)
========================================= */

@media (max-width: 768px) {

    .wild-info-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .wild-info-box {
        text-align: left;
        padding: 12px;
    }

    .wild-info-box p {
        font-size: 13px;
    }

}

 /* =========================================
   BWD TESTIMONIAL FINAL (STABLE)
========================================= */

.bwd-testimonial-pro {
    padding: 60px 0;
    background: #f9f9f9;
}

/* FIX: owl item full height */
.bwd-testimonial-pro .owl-stage {
    display: flex;
}

.bwd-testimonial-pro .owl-item {
    display: flex;
}

/* CARD */
.bwd-testimonial-pro .testimonial_box {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 20px;
    min-height: 100%;
}

/* TEXT AREA */
.bwd-testimonial-pro .testi_meta {
    flex-grow: 1;
    text-align: center;
}

/* AVATAR */
.bwd-testimonial-pro .testimonial_img img {
    width: 70px;
    height: 70px;
    object-fit: cover;
}

/* =========================================
   THUMB FIX (THIS IS KEY)
========================================= */

.bwd-testimonial-pro .bwd-review-thumbs {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 10px;
}

.bwd-testimonial-pro .bwd-review-thumbs a {
    width: 60px;
    flex: 0 0 auto; /* IMPORTANT */
}

.bwd-testimonial-pro .bwd-review-thumbs img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .bwd-testimonial-pro .bwd-review-thumbs a {
        width: 50px;
    }

}