/* ============================================================
   Benge Estate – Custom Enhancements
   CTA Buttons | Testimonials | Trusted By | Language Switcher
   ============================================================ */

/* ---------- CTA Buttons below slider ---------- */
.benge-cta-bar {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 18px 20px;
    background: #f8f8f8;
    border-bottom: 1px solid #e8e8e8;
}
.benge-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 13px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none !important;
    transition: transform .2s, box-shadow .2s, filter .2s;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    border: none;
}
.benge-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,.18);
    filter: brightness(1.08);
}
.benge-cta-call {
    background: #212121;
    color: #fff !important;
}
.benge-cta-whatsapp {
    background: #25D366;
    color: #fff !important;
}
@media (max-width: 480px) {
    .benge-cta-bar   { flex-direction: column; align-items: stretch; padding: 14px 16px; }
    .benge-cta-btn   { justify-content: center; }
}

/* ---------- Shared section styles ---------- */
.benge-section {
    padding: 70px 20px;
    font-family: inherit;
}
.benge-section-inner { max-width: 1100px; margin: 0 auto; }
.benge-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #111827;
    background: rgba(123,45,139,.09);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 12px;
}
.benge-section-title {
    font-size: clamp(24px, 3.5vw, 36px);
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 10px;
    line-height: 1.25;
}
.benge-section-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 540px;
    margin: 0 auto 44px;
    line-height: 1.65;
}
.benge-section-header { text-align: center; }

/* ---------- Testimonials ---------- */
.benge-testimonials { background: linear-gradient(135deg,#f9f5fc 0%,#fff 100%); }
.benge-test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
@media (max-width: 900px) { .benge-test-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .benge-test-grid { grid-template-columns: 1fr; } }

.benge-test-card {
    background: #fff;
    border-radius: 14px;
    padding: 26px;
    box-shadow: 0 4px 20px rgba(0,0,0,.07);
    border: 1px solid rgba(123,45,139,.08);
    transition: box-shadow .25s, transform .25s;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.benge-test-card:hover {
    box-shadow: 0 10px 36px rgba(123,45,139,.14);
    transform: translateY(-4px);
}
.benge-stars { display: flex; gap: 3px; }
.benge-stars svg { fill: #F5A623; }
.benge-test-text {
    font-size: 14.5px;
    line-height: 1.7;
    color: #444;
    font-style: italic;
    flex: 1;
    margin: 0;
}
.benge-test-author { display: flex; align-items: center; gap: 12px; }
.benge-test-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg,#111827,#F5A623);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 13px;
    flex-shrink: 0;
}
.benge-test-meta strong { display: block; font-size: 13px; font-weight: 700; color: #1a1a2e; }
.benge-test-meta span   { font-size: 11px; color: #999; }

/* ---------- Trusted By ---------- */
.benge-trusted { background: #fff; border-top: 1px solid #f0e6f5; padding: 60px 20px; }
.benge-marquee-wrap {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.benge-marquee {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: bengeScroll 30s linear infinite;
}
.benge-marquee:hover { animation-play-state: paused; }
@keyframes bengeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.benge-brand-card {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 18px 24px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 12px;
    min-width: 150px;
    transition: box-shadow .2s, border-color .2s;
}
.benge-brand-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.1); border-color: #111827; }
.benge-brand-logo {
    width: 60px; height: 60px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 12px;
    color: #fff;
    letter-spacing: .5px;
    text-align: center;
}
.benge-brand-name { font-size: 10px; font-weight: 600; color: #777; text-align: center; max-width: 110px; line-height: 1.3; }
.benge-trusted-note {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; margin-top: 32px;
    font-size: 12.5px; color: #999;
}
.benge-trusted-note svg { color: #111827; flex-shrink: 0; }

/* ---------- Language Switcher (floating) ---------- */
#benge-lang-wrap {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 99999;
    font-family: inherit;
}
.benge-lang-toggle {
    display: flex; align-items: center; gap: 6px;
    background: #111827; color: #fff;
    border: none;
    border-radius: 10px 0 0 10px;
    padding: 10px 13px 10px 11px;
    cursor: pointer;
    font-size: 12.5px; font-weight: 700;
    white-space: nowrap;
    box-shadow: -3px 0 16px rgba(0,0,0,.2);
    transition: background .2s, padding-right .2s;
}
.benge-lang-toggle:hover { background: #000000; padding-right: 17px; }
.benge-lang-caret { transition: transform .25s; }
.benge-lang-toggle[aria-expanded="true"] .benge-lang-caret { transform: rotate(180deg); }
.benge-lang-dropdown {
    position: absolute;
    top: 50%; right: 100%;
    transform: translateY(-50%) translateX(-6px);
    width: 255px; max-height: 370px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,.18);
    display: none; flex-direction: column;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.08);
}
.benge-lang-dropdown.open { display: flex; }
.benge-lang-search-row {
    display: flex; align-items: center; gap: 8px;
    padding: 9px 12px;
    border-bottom: 1px solid #eee;
    background: #f8f8f8;
}
.benge-lang-search-row svg { color: #aaa; flex-shrink: 0; }
#bengeLangSearch {
    flex: 1; border: none; outline: none;
    background: transparent; font-size: 13px; color: #333;
}
.benge-lang-list {
    list-style: none; margin: 0; padding: 5px 0;
    overflow-y: auto; flex: 1;
    scrollbar-width: thin; scrollbar-color: #111827 transparent;
}
.benge-lang-item {
    padding: 8px 14px; font-size: 13px; cursor: pointer;
    color: #333; transition: background .15s;
}
.benge-lang-item:hover,
.benge-lang-item:focus { background: #f0e6f5; color: #111827; outline: none; }
.benge-lang-item.active { background: #111827; color: #fff; font-weight: 700; }
@media (max-width: 600px) {
    #benge-lang-wrap { top: auto; bottom: 80px; transform: none; }
    .benge-lang-dropdown { top: auto; bottom: 100%; right: 0; transform: none; }
}
#google_translate_element { display: none; }


/* ──────────────────────────────────────────────────────────
   Properties / Land Filter
   ────────────────────────────────────────────────────────── */
.benge-properties-section { background: #fff; }
.benge-filter-bar { display:flex; gap:10px; flex-wrap:wrap; justify-content:center; margin-bottom:16px; }
.benge-filter-btn { padding:8px 20px; border-radius:50px; border:2px solid #111827; background:#fff; color:#111827; font-weight:600; font-size:13px; cursor:pointer; transition:all .2s; }
.benge-filter-btn.active, .benge-filter-btn:hover { background:#111827; color:#fff; }
.benge-price-toggle { text-align:center; margin-bottom:28px; font-size:14px; font-weight:600; color:#555; }
.benge-price-toggle input { accent-color:#111827; margin-right:5px; }
.benge-properties-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
@media(max-width:900px){ .benge-properties-grid { grid-template-columns:repeat(2,1fr); } }
@media(max-width:560px){ .benge-properties-grid { grid-template-columns:1fr; } }
.benge-property-card { background:#fff; border-radius:16px; box-shadow:0 4px 24px rgba(0,0,0,.08); border:1px solid #eee; overflow:hidden; transition:transform .25s,box-shadow .25s; }
.benge-property-card:hover { transform:translateY(-5px); box-shadow:0 12px 40px rgba(123,45,139,.14); }
.benge-property-card.hidden-by-filter { display:none; }
.benge-prop-img img { width:100%; height:200px; object-fit:cover; display:block; }
.benge-prop-img-placeholder { width:100%; height:200px; background:#f0e6f5; display:flex; align-items:center; justify-content:center; }
.benge-prop-body { padding:20px; }
.benge-prop-name { font-size:18px; font-weight:800; color:#1a1a2e; margin:0 0 8px; }
.benge-prop-desc { font-size:13px; color:#666; margin-bottom:14px; line-height:1.5; }
.benge-prop-price { background:#f9f5fc; border-radius:10px; padding:12px 14px; margin-bottom:12px; }
.benge-price-label { font-size:11px; font-weight:700; text-transform:uppercase; color:#111827; letter-spacing:1px; display:block; }
.benge-price-value { font-size:22px; font-weight:800; color:#1a1a2e; }
.benge-prop-features { list-style:none; margin:0 0 12px; padding:0; }
.benge-prop-features li { font-size:12.5px; color:#555; padding:3px 0; }

/* ──────────────────────────────────────────────────────────
   Documentary Float Button
   ────────────────────────────────────────────────────────── */
.benge-documentary-float { position:fixed; bottom:100px; right: 22px; left: auto; z-index:9990; }
.benge-doc-btn { display:flex; align-items:center; gap:10px; background:#25D366; color:#fff; border:none; border-radius:50px; padding:12px 20px; cursor:pointer; font-size:13px; font-weight:700; box-shadow:0 4px 20px rgba(37,211,102,.4); position:relative; overflow:visible; }
.benge-doc-ripple { position:absolute; width:100%; height:100%; border-radius:50px; background:rgba(37,211,102,.35); animation:bengeRipple 2s linear infinite; }
.benge-doc-ripple-2 { animation-delay:1s; }
@keyframes bengeRipple { 0%{transform:scale(1);opacity:.8} 100%{transform:scale(1.6);opacity:0} }
.benge-video-modal { position:fixed; inset:0; z-index:99998; display:flex; align-items:center; justify-content:center; }
.benge-video-overlay { position:absolute; inset:0; background:rgba(0,0,0,.85); }
.benge-video-inner { position:relative; width:90vw; max-width:900px; height:55vw; max-height:506px; z-index:1; }
.benge-video-close { position:absolute; top:-36px; right:0; background:none; border:none; color:#fff; font-size:24px; cursor:pointer; }
@media(max-width:600px){ .benge-documentary-float { bottom:80px; right:20px; left:auto; } .benge-doc-label { display:none; } }

/* ──────────────────────────────────────────────────────────
   Testimonials Slider Overrides
   ────────────────────────────────────────────────────────── */
.benge-testimonials-track-wrap { overflow:hidden; }
.benge-testimonials-track { display:flex; gap:22px; transition:transform .45s cubic-bezier(.4,0,.2,1); }
.benge-testimonial-card { min-width:calc(33.333% - 15px); flex-shrink:0; }
@media(max-width:900px){ .benge-testimonial-card { min-width:calc(50% - 11px); } }
@media(max-width:560px){ .benge-testimonial-card { min-width:100%; } }
.benge-testimonials-nav { display:flex; align-items:center; justify-content:center; gap:14px; margin-top:28px; }
.benge-testimonials-dots { display:flex; gap:8px; }

/* ──────────────────────────────────────────────────────────
   Site Visit Section
   ────────────────────────────────────────────────────────── */
.benge-site-visit-section { background:linear-gradient(135deg,#1a1a2e 0%,#2d1f45 100%); color:#fff; }
.benge-site-visit-section .benge-section-title,
.benge-site-visit-section .benge-section-subtitle { color:#fff; }
.benge-site-visit-section .benge-eyebrow { background:rgba(255,255,255,.15); color:#F5A623; }
.benge-site-visit-grid { display:grid; grid-template-columns:1fr 1fr; gap:40px; align-items:start; }
@media(max-width:768px){ .benge-site-visit-grid { grid-template-columns:1fr; } }
.benge-contact-info { margin-bottom:22px; }
.benge-contact-item { display:flex; align-items:flex-start; gap:10px; font-size:14px; color:rgba(255,255,255,.85); margin-bottom:10px; }
.benge-contact-item a { color:#F5A623; }
.benge-sv-form input, .benge-sv-form select, .benge-sv-form textarea, .benge-agent-form input, .benge-agent-form select, .benge-agent-form textarea {
    width:100%; padding:11px 14px; border:1px solid rgba(255,255,255,.2); border-radius:8px;
    background:rgba(255,255,255,.08); color:#fff; font-size:14px; font-family:inherit; margin-top:5px;
}
.benge-sv-form input::placeholder, .benge-sv-form textarea::placeholder { color:rgba(255,255,255,.45); }
.benge-form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px; }
@media(max-width:480px){ .benge-form-row { grid-template-columns:1fr; } }
.benge-form-group label { font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.5px; color:rgba(255,255,255,.7); }
.benge-sv-form textarea { height:80px; resize:vertical; }

/* ──────────────────────────────────────────────────────────
   FAQs
   ────────────────────────────────────────────────────────── */
.benge-faqs-section { background:#f9f5fc; }
.benge-faqs-list { max-width:780px; margin:0 auto; }
.benge-faq-item { border:1px solid rgba(123,45,139,.12); border-radius:12px; margin-bottom:12px; overflow:hidden; }
.benge-faq-q { width:100%; text-align:left; background:#fff; border:none; padding:18px 20px; font-size:15px; font-weight:700; color:#1a1a2e; cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:12px; transition:background .2s; }
.benge-faq-q:hover { background:#f9f5fc; }
.benge-faq-icon { flex-shrink:0; transition:transform .3s; }
.benge-faq-a { padding:0 20px 18px; font-size:14.5px; line-height:1.7; color:#555; background:#fff; }

/* ──────────────────────────────────────────────────────────
   Team
   ────────────────────────────────────────────────────────── */
.benge-team-slider-wrap { position:relative; overflow:hidden; }
.benge-team-track { display:flex; gap:22px; transition:transform .45s cubic-bezier(.4,0,.2,1); }
.benge-team-card { min-width:220px; background:#fff; border-radius:16px; padding:28px 20px; text-align:center; box-shadow:0 4px 20px rgba(0,0,0,.07); flex-shrink:0; transition:transform .25s,box-shadow .25s; }
.benge-team-card:hover { transform:translateY(-4px); box-shadow:0 12px 36px rgba(123,45,139,.14); }
.benge-team-avatar { width:90px; height:90px; border-radius:50%; object-fit:cover; margin:0 auto 14px; display:block; border:3px solid #111827; }
.benge-team-avatar-placeholder { width:90px; height:90px; border-radius:50%; background:linear-gradient(135deg,#111827,#F5A623); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:22px; margin:0 auto 14px; border:3px solid transparent; }
.benge-team-name { font-size:15px; font-weight:800; color:#1a1a2e; margin:0 0 4px; }
.benge-team-role { font-size:12px; color:#111827; font-weight:600; margin:0 0 8px; }
.benge-team-tel a { font-size:13px; color:#555; text-decoration:none; }
.benge-team-socials { display:flex; gap:10px; justify-content:center; margin-top:10px; }
.benge-team-socials a { opacity:.75; transition:opacity .2s; } .benge-team-socials a:hover { opacity:1; }
.benge-team-nav { display:flex; gap:12px; justify-content:center; margin-top:22px; }

/* ──────────────────────────────────────────────────────────
   Agent Section
   ────────────────────────────────────────────────────────── */
.benge-agent-section { background:linear-gradient(135deg,#2d1f45 0%,#1a1a2e 100%); }
.benge-agent-section .benge-section-title,
.benge-agent-section .benge-section-subtitle { color:#fff; }
.benge-agent-section .benge-eyebrow { color:#F5A623; background:rgba(255,255,255,.1); }
.benge-agent-form { max-width:700px; margin:0 auto; }
.benge-agent-form input, .benge-agent-form textarea { background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.2); color:#fff; border-radius:8px; padding:11px 14px; width:100%; font-family:inherit; margin-top:5px; }
.benge-agent-form input::placeholder, .benge-agent-form textarea::placeholder { color:rgba(255,255,255,.45); }
.benge-agent-form label { font-size:12px; font-weight:700; text-transform:uppercase; color:rgba(255,255,255,.7); }
.benge-agent-form textarea { height:90px; resize:vertical; }

/* ──────────────────────────────────────────────────────────
   AI Chat Widget
   ────────────────────────────────────────────────────────── */
#benge-ai-chat { position:fixed; bottom:20px; right:20px; z-index:9995; font-family:inherit; }
.benge-chat-bubble { width:56px; height:56px; border-radius:50%; background:linear-gradient(135deg,#111827,#F5A623); border:none; cursor:pointer; display:flex; align-items:center; justify-content:center; box-shadow:0 4px 18px rgba(123,45,139,.4); color:#fff; transition:transform .2s; }
.benge-chat-bubble:hover { transform:scale(1.08); }
.benge-chat-window { position:absolute; bottom:68px; right:0; width:320px; background:#fff; border-radius:16px; box-shadow:0 8px 40px rgba(0,0,0,.18); border:1px solid rgba(0,0,0,.08); display:none; flex-direction:column; overflow:hidden; }
.benge-chat-window.open { display:flex; }
.benge-chat-head { background:linear-gradient(135deg,#111827,#000000); color:#fff; padding:14px 16px; display:flex; align-items:center; gap:10px; }
.benge-chat-head-info strong { font-size:14px; display:block; }
.benge-chat-head-info small { font-size:11px; opacity:.8; }
.benge-chat-msgs { flex:1; overflow-y:auto; padding:14px; min-height:200px; max-height:300px; display:flex; flex-direction:column; gap:10px; }
.benge-msg { max-width:80%; padding:9px 13px; border-radius:12px; font-size:13.5px; line-height:1.5; }
.benge-msg-bot { background:#f0e6f5; color:#1a1a2e; align-self:flex-start; border-radius:4px 12px 12px 12px; }
.benge-msg-user { background:#111827; color:#fff; align-self:flex-end; border-radius:12px 12px 4px 12px; }
.benge-chat-typing { display:none; gap:4px; align-items:center; padding:2px 0; }
.benge-chat-typing.show { display:flex; }
.benge-chat-typing span { width:7px; height:7px; background:#111827; border-radius:50%; animation:bengeDot 1.4s infinite; }
.benge-chat-typing span:nth-child(2) { animation-delay:.2s; }
.benge-chat-typing span:nth-child(3) { animation-delay:.4s; }
@keyframes bengeDot { 0%,80%,100%{transform:scale(0.7);opacity:.5} 40%{transform:scale(1);opacity:1} }
.benge-chat-input-row { display:flex; border-top:1px solid #eee; }
.benge-chat-input-row input { flex:1; border:none; outline:none; padding:12px 14px; font-size:13.5px; font-family:inherit; }
.benge-chat-send { background:#111827; color:#fff; border:none; padding:0 16px; cursor:pointer; font-size:16px; transition:background .2s; }
.benge-chat-send:hover { background:#000000; }
@media(max-width:380px){ .benge-chat-window { width:290px; } }

/* ═══════════════════════════════════════════════════════════════
   BENGE ESTATE — PREMIUM REDESIGN
   American Real Estate Aesthetic: Black / Gold / White
   ═══════════════════════════════════════════════════════════════ */

/* ── Global colour token overrides ── */
:root {
    --be-black:  #0a0a0a;
    --be-dark:   #111827;
    --be-gold:   #C9A84C;
    --be-gold2:  #E8C97A;
    --be-white:  #ffffff;
    --be-gray:   #f4f4f4;
    --be-muted:  #666;
    --be-radius: 12px;
    --be-shadow: 0 8px 40px rgba(0,0,0,.12);
}

/* Override purple to black/gold everywhere */
.benge-eyebrow       { background:rgba(201,168,76,.12)!important; color:var(--be-gold)!important; font-weight:800; letter-spacing:3px; }
.benge-section-title { color:var(--be-dark)!important; }
.em-nav-btn          { border-color:var(--be-gold)!important; color:var(--be-gold)!important; }
.em-nav-btn:hover    { background:var(--be-gold)!important; color:#fff!important; }
.em-dot.em-dot-active{ background:var(--be-gold)!important; }
.benge-filter-btn    { border-color:var(--be-gold)!important; color:var(--be-gold)!important; }
.benge-filter-btn.active,.benge-filter-btn:hover { background:var(--be-gold)!important; color:#000!important; }
.benge-price-label   { color:var(--be-gold)!important; }
.benge-prop-price    { background:linear-gradient(135deg,#111827,#1f2937)!important; border-radius:10px; }
.benge-price-value   { color:#fff!important; }

/* ── Testimonials — Full Premium Card Slider ── */
.benge-testimonials {
    background: linear-gradient(160deg, #0a0a0a 0%, #111827 60%, #1a2030 100%) !important;
    padding: 90px 20px !important;
    position: relative;
    overflow: hidden;
}
.benge-testimonials::before {
    content: '"';
    position: absolute;
    top: -40px; right:20px; left:auto;
    font-size: 280px;
    color: rgba(201,168,76,.05);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}
.benge-testimonials .benge-section-title  { color: #fff !important; }
.benge-testimonials .benge-section-subtitle { color: rgba(255,255,255,.65) !important; }
.benge-testimonials .benge-eyebrow { background:rgba(201,168,76,.15)!important; }

/* Slider wrapper */
.benge-testimonials-track-wrap {
    overflow: hidden;
    border-radius: 16px;
    margin: 0 -10px;
    padding: 10px;
}
.benge-testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform .55s cubic-bezier(.4,0,.2,1);
}

/* Individual card */
.benge-testimonial-card {
    min-width: calc(33.333% - 16px);
    flex-shrink: 0;
    background: #fff;
    border-radius: 18px;
    padding: 32px 28px;
    box-shadow: 0 4px 30px rgba(0,0,0,.2);
    border: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
}
.benge-testimonial-card::before {
    content: '"';
    position: absolute;
    top: 12px; right: 20px;
    font-size: 72px;
    color: var(--be-gold);
    opacity: .15;
    font-family: Georgia, serif;
    line-height: 1;
}
.benge-testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

/* Stars */
.benge-stars { margin-bottom: 14px; }
.benge-stars svg { fill: var(--be-gold) !important; }

/* Quote text */
.benge-test-text {
    font-size: 15px;
    line-height: 1.75;
    color: #2d2d2d;
    font-style: normal;
    margin: 0 0 24px;
    flex: 1;
}

/* Author row — avatar on left, prominent */
.benge-test-author {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid #f0f0f0;
    padding-top: 18px;
    margin-top: auto;
}
.benge-test-avatar {
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, var(--be-dark), var(--be-gold)) !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 800 !important;
    font-size: 18px !important;
    flex-shrink: 0 !important;
    border: 3px solid var(--be-gold) !important;
    box-shadow: 0 4px 14px rgba(201,168,76,.3) !important;
}
.benge-test-avatar-img {
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    border: 3px solid var(--be-gold) !important;
    box-shadow: 0 4px 14px rgba(201,168,76,.3) !important;
}
.benge-test-meta strong {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: var(--be-dark);
}
.benge-test-meta span {
    font-size: 12px;
    color: var(--be-muted);
    font-weight: 500;
}
.benge-test-meta em {
    display: block !important;
    font-size: 11px !important;
    color: var(--be-gold) !important;
    margin-top: 3px !important;
    font-style: normal !important;
    font-weight: 700 !important;
}

/* Nav */
.benge-testimonials-nav { margin-top: 36px; }
.benge-testimonials-dots { display: flex; gap: 8px; }

@media(max-width:900px){ .benge-testimonial-card { min-width:calc(50% - 12px); } }
@media(max-width:560px){ .benge-testimonial-card { min-width:100%; } }

/* ── FAQs — Premium US accordion with + icon ── */
.benge-faqs-section {
    background: #fff !important;
    padding: 90px 20px !important;
}
.benge-faqs-section .benge-section-title { color:var(--be-dark)!important; }
.benge-faqs-list { max-width: 820px; margin: 0 auto; }

.benge-faq-item {
    border: none !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    overflow: visible !important;
    border-bottom: 1px solid #e8e8e8 !important;
}
.benge-faq-item:first-child { border-top: 1px solid #e8e8e8 !important; }

.benge-faq-q {
    width: 100%;
    text-align: left;
    background: transparent !important;
    border: none !important;
    padding: 22px 0 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--be-dark) !important;
    cursor: pointer;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 16px;
    transition: color .2s;
    font-family: inherit;
}
.benge-faq-q:hover { color: var(--be-gold) !important; }
.benge-faq-q.active-faq { color: var(--be-gold) !important; }

/* Replace caret with + / – */
.benge-faq-icon { display: none !important; }
.benge-faq-plus {
    width: 28px; height: 28px;
    border-radius: 50%;
    border: 2px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 300;
    line-height: 1;
    transition: transform .3s, background .2s, color .2s;
}
.benge-faq-q.active-faq .benge-faq-plus {
    background: var(--be-gold);
    border-color: var(--be-gold);
    color: #fff;
    transform: rotate(45deg);
}

.benge-faq-a {
    padding: 0 0 22px !important;
    font-size: 15px !important;
    line-height: 1.75 !important;
    color: #555 !important;
    background: transparent !important;
    display: none;
}

/* ── AI Chat widget — repositioned, top-notch design ── */
#benge-ai-chat {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 9999 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.benge-chat-bubble {
    width: 62px !important;
    height: 62px !important;
    border-radius: 50% !important;
    background: linear-gradient(135deg, var(--be-dark), #2d3748) !important;
    border: 3px solid var(--be-gold) !important;
    box-shadow: 0 6px 24px rgba(0,0,0,.35), 0 0 0 0 rgba(201,168,76,.4) !important;
    animation: bengePulse 2.5s infinite;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: transform .2s;
    position: relative;
}
.benge-chat-bubble::after {
    content: 'Chat';
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 700;
    color: var(--be-gold);
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}
.benge-chat-bubble:hover { transform: scale(1.08) !important; }
@keyframes bengePulse {
    0%  { box-shadow: 0 6px 24px rgba(0,0,0,.35), 0 0 0 0 rgba(201,168,76,.5); }
    70% { box-shadow: 0 6px 24px rgba(0,0,0,.35), 0 0 0 14px rgba(201,168,76,0); }
    100%{ box-shadow: 0 6px 24px rgba(0,0,0,.35), 0 0 0 0 rgba(201,168,76,0); }
}

.benge-chat-window {
    position: absolute !important;
    bottom: 82px !important;
    right: 0 !important;
    width: 360px !important;
    background: #fff !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 60px rgba(0,0,0,.2) !important;
    border: 1px solid rgba(0,0,0,.06) !important;
    display: none;
    flex-direction: column;
    overflow: hidden;
}
.benge-chat-window.open { display: flex !important; }

.benge-chat-head {
    background: linear-gradient(135deg, var(--be-dark), #1f2937) !important;
    padding: 18px 20px !important;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid var(--be-gold);
}
.benge-chat-head-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--be-gold);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}
.benge-chat-head-info strong { font-size: 14px; font-weight: 800; }
.benge-chat-head-info small { font-size: 11px; opacity: .7; }
.benge-chat-online {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
    margin-right: 4px;
    box-shadow: 0 0 0 2px rgba(34,197,94,.3);
    animation: onlinePulse 2s infinite;
}
@keyframes onlinePulse { 0%,100%{opacity:1} 50%{opacity:.5} }

.benge-chat-msgs {
    flex: 1;
    overflow-y: auto;
    padding: 18px 16px !important;
    min-height: 220px !important;
    max-height: 320px !important;
    display: flex;
    flex-direction: column;
    gap: 12px !important;
    background: #fafafa;
    scrollbar-width: thin;
    scrollbar-color: var(--be-gold) transparent;
}
.benge-msg {
    max-width: 82% !important;
    padding: 11px 15px !important;
    border-radius: 16px !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    white-space: pre-wrap;
}
.benge-msg-bot {
    background: #fff !important;
    color: var(--be-dark) !important;
    align-self: flex-start !important;
    border-radius: 4px 16px 16px 16px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    border-right:20px; left:auto solid var(--be-gold);
}
.benge-msg-user {
    background: var(--be-dark) !important;
    color: #fff !important;
    align-self: flex-end !important;
    border-radius: 16px 16px 4px 16px !important;
}

.benge-chat-typing {
    padding: 6px 16px !important;
    background: #fafafa;
}
.benge-chat-typing span { background: var(--be-gold) !important; }

.benge-chat-input-row {
    border-top: 1px solid #eee !important;
    background: #fff;
    padding: 4px;
    display: flex;
    gap: 4px;
}
.benge-chat-input-row input {
    flex: 1;
    border: 1px solid #e8e8e8 !important;
    border-radius: 10px !important;
    padding: 10px 14px !important;
    font-size: 14px !important;
    outline: none;
    margin: 4px 0 4px 4px;
}
.benge-chat-input-row input:focus { border-color: var(--be-gold) !important; }
.benge-chat-send {
    background: var(--be-dark) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 10px 16px !important;
    cursor: pointer;
    font-size: 16px !important;
    margin: 4px 4px 4px 0;
    transition: background .2s;
}
.benge-chat-send:hover { background: var(--be-gold) !important; color: #000 !important; }

/* Suggested questions */
.benge-chat-suggestions {
    padding: 8px 16px 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    background: #fafafa;
    border-top: 1px solid #eee;
}
.benge-chat-sugg-btn {
    background: #fff;
    border: 1px solid var(--be-gold);
    color: var(--be-dark);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
}
.benge-chat-sugg-btn:hover { background: var(--be-gold); color: #000; }

@media(max-width:420px){ .benge-chat-window { width: 300px !important; } }

/* ── Trusted By — dark premium ── */
.benge-trusted {
    background: #0a0a0a !important;
    border-top: none !important;
    padding: 70px 20px !important;
}
.benge-trusted .benge-section-title  { color: #fff !important; }
.benge-trusted .benge-section-subtitle { color: rgba(255,255,255,.6) !important; }
.benge-brand-card {
    background: #1a1a1a !important;
    border-color: rgba(201,168,76,.2) !important;
}
.benge-brand-card:hover {
    border-color: var(--be-gold) !important;
    box-shadow: 0 6px 24px rgba(201,168,76,.15) !important;
}
.benge-brand-name { color: rgba(255,255,255,.7) !important; }
.benge-trusted-note { color: rgba(255,255,255,.5) !important; }
.benge-trusted-note svg { color: var(--be-gold) !important; }

/* ── Properties ── */
.benge-properties-section { background: var(--be-gray) !important; }
.benge-prop-name { color: var(--be-dark) !important; }

/* ── Site visit dark ── */
.benge-site-visit-section { background: linear-gradient(160deg,#0a0a0a 0%,#111827 100%) !important; }

/* ── Agent section ── */
.benge-agent-section { background: linear-gradient(160deg,#111827 0%,#0a0a0a 100%) !important; }

/* ── Team section ── */
.benge-team-section { background: var(--be-gray) !important; }
.benge-team-avatar { border-color: var(--be-gold) !important; }
.benge-team-avatar-placeholder { background: linear-gradient(135deg,var(--be-dark),var(--be-gold)) !important; }
.benge-team-role { color: var(--be-gold) !important; }

/* ── Section general ── */
.benge-section { padding: 90px 20px; }

/* ── CTA buttons ── */
.benge-cta-call {
    background: var(--be-dark) !important;
    border-color: var(--be-dark) !important;
}
.benge-cta-whatsapp {
    background: #128C7E !important;
}

/* ── Language switcher — black ── */
.benge-lang-toggle { background: var(--be-dark) !important; }
.benge-lang-toggle:hover { background: #222 !important; }
.benge-lang-item.active { background: var(--be-dark) !important; }
.benge-lang-item:hover { background: #f5f0e8 !important; color: #000 !important; }



/* ── FINAL: Chat widget forced bottom-RIGHT ── */
#benge-ai-chat {
    position: fixed !important;
    bottom: 28px !important;
    right: 28px !important;
    left: auto !important;
    z-index: 99999 !important;
}

/* ── Documentary button — centered, bigger, more visible ── */
.benge-documentary-float {
    position: fixed !important;
    bottom: 120px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 9990 !important;
}
.benge-doc-btn {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    background: rgba(0,0,0,.88) !important;
    color: #fff !important;
    border: 3px solid #C9A84C !important;
    border-radius: 60px !important;
    padding: 16px 32px 16px 20px !important;
    cursor: pointer !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    letter-spacing: .5px !important;
    box-shadow: 0 8px 32px rgba(0,0,0,.4) !important;
    white-space: nowrap !important;
}
.benge-doc-play-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #C9A84C;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}
.benge-doc-ripple {
    position: absolute !important;
    width: 56px !important;
    height: 56px !important;
    border-radius: 50% !important;
    background: rgba(201,168,76,.4) !important;
    animation: bengeRipple 2s linear infinite !important;
}
.benge-doc-ripple-2 { animation-delay: 1s !important; }
@keyframes bengeRipple {
    0%  { transform: scale(1); opacity: .8; }
    100%{ transform: scale(2.2); opacity: 0; }
}

/* ── Language switcher — BLACK (override purple) ── */
#benge-lang-wrap .benge-lang-toggle,
.benge-lang-toggle {
    background: #111827 !important;
    color: #fff !important;
}
.benge-lang-toggle:hover { background: #000 !important; }
.benge-lang-item.active  { background: #111827 !important; color: #fff !important; }
.benge-lang-item:hover,
.benge-lang-item:focus   { background: #f5f0e8 !important; color: #111827 !important; }

/* ── FAQs — completely plain, no box, no button look ── */
.benge-faqs-section     { background: #fff !important; }
.benge-faq-item         { background: transparent !important; border: none !important; border-bottom: 1px solid #e5e5e5 !important; border-radius: 0 !important; margin: 0 !important; overflow: visible !important; }
.benge-faq-item:first-child { border-top: 1px solid #e5e5e5 !important; }
.benge-faq-q            { background: transparent !important; border: none !important; padding: 24px 0 !important; font-size: 17px !important; font-weight: 700 !important; color: #111827 !important; display: flex !important; align-items: center !important; justify-content: space-between !important; gap: 20px !important; cursor: pointer !important; width: 100% !important; text-align: left !important; box-shadow: none !important; outline: none !important; font-family: inherit !important; }
.benge-faq-q:hover      { color: #C9A84C !important; }
.benge-faq-q.active-faq { color: #C9A84C !important; }
.benge-faq-a            { padding: 0 0 24px !important; font-size: 15.5px !important; line-height: 1.8 !important; color: #555 !important; background: transparent !important; border: none !important; display: none; }
.benge-faq-plus {
    width: 32px !important; height: 32px !important;
    border-radius: 50% !important;
    border: 2px solid #C9A84C !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    font-size: 20px !important;
    font-weight: 300 !important;
    color: #C9A84C !important;
    transition: all .3s !important;
    line-height: 1 !important;
    background: transparent !important;
}
.benge-faq-q.active-faq .benge-faq-plus {
    background: #C9A84C !important;
    color: #000 !important;
    transform: rotate(45deg) !important;
}

/* ── Testimonials — single card slider, large avatar top ── */
.benge-testimonials { overflow: visible !important; }
.benge-testimonials-track-wrap { overflow: hidden !important; }
.benge-testimonials-track { will-change: transform; }
.benge-testimonial-card {
    min-width: calc(33.333% - 16px) !important;
    background: #fff !important;
    border-radius: 20px !important;
    padding: 36px 28px 28px !important;
    box-shadow: 0 6px 36px rgba(0,0,0,.12) !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
}
/* Author at TOP of card — avatar is the hero */
.benge-test-author {
    flex-direction: row !important;
    align-items: center !important;
    gap: 14px !important;
    border-top: none !important;
    border-bottom: 1px solid rgba(255,255,255,.15) !important;
    padding-top: 0 !important;
    padding-bottom: 18px !important;
    margin-top: 0 !important;
    margin-bottom: 18px !important;
    order: -1 !important;
}
.benge-test-avatar {
    width: 64px !important;
    height: 64px !important;
    font-size: 22px !important;
}
.benge-test-avatar-img {
    width: 64px !important;
    height: 64px !important;
}
.benge-test-text { order: 0 !important; margin: 0 0 16px !important; }
.benge-stars { order: 0 !important; }
@media(max-width:900px){ .benge-testimonial-card { min-width: calc(50% - 12px) !important; } }
@media(max-width:580px){ .benge-testimonial-card { min-width: 100% !important; } }

/* ══ FINAL OVERRIDES — April 2026 ══ */

/* Testimonials section — full dark, cards white, avatar at top */
.benge-testimonials .benge-testimonials-nav .em-nav-btn {
    border-color: rgba(255,255,255,.4) !important;
    color: rgba(255,255,255,.7) !important;
    background: transparent !important;
}
.benge-testimonials .benge-testimonials-nav .em-nav-btn:hover {
    border-color: #C9A84C !important;
    color: #C9A84C !important;
}

/* Remove bottom border on test-author (dark bg card) */
.benge-test-author {
    border-bottom: 1px solid #f0f0f0 !important;
}

/* FAQ — absolutely plain */
.benge-faq-q > span:first-child { flex:1; }
.benge-faq-q * { box-shadow: none !important; }

/* Language switcher pill — BLACK */
.benge-lang-toggle,
#benge-lang-wrap button.benge-lang-toggle {
    background: #111827 !important;
    border-color: #111827 !important;
}

/* Chat — ensure bottom-right, always visible */
#benge-ai-chat {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    left: auto !important;
    top: auto !important;
    z-index: 99999 !important;
}

/* Documentary — bottom-center, very visible */
.benge-documentary-float {
    position: fixed !important;
    bottom: 24px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    z-index: 9988 !important;
}
@media(max-width:600px){
    .benge-documentary-float { bottom: 100px !important; }
    .benge-doc-btn span:last-child { display: none; }
}

/* Properties — card hover */
.benge-property-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 50px rgba(0,0,0,.14) !important;
}

/* Prevent documentary overlapping chat on mobile */
@media(min-width:601px){
    .benge-documentary-float { bottom: 30px !important; right:20px; left:auto !important; transform: none !important; right: auto !important; }
}
