﻿/* ============================================================
   Professional Polish â€” Navy + Gold Real-Estate Theme
   Loads AFTER style.css + color.php to win the cascade.
   ============================================================ */

:root {
    /* Re-tone the global palette to a premium real-estate look */
    --main-color2: #0F1E3C;          /* deeper navy for dark sections */
    --main-color3: var(--accent-color); /* repurpose tertiary as gold */
    --secondary-color: #F7F8FB;      /* slightly cooler off-white */
    --p-color: #475569;              /* refined slate body text */
    --h-color: #0F1E3C;              /* navy headings */
    --soft-border: #E5E9F0;
    --card-shadow: 0 4px 18px rgba(15, 30, 60, 0.06);
    --card-shadow-hover: 0 12px 32px rgba(15, 30, 60, 0.12);
}

/* ---------- Typography refinement ---------- */
body { color: #d3cda6; letter-spacing: 0.01em; }
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 { color: var(--h-color); letter-spacing: -0.01em; font-weight: 700; }
a:hover { color: var(--accent-color); }

/* ---------- Buttons ---------- */
.cmn-btn,
.btn-primary,
.calculate-btn,
.bayut-search-submit,
.bayut-promo-btn,
.bayut-side-cta {
    background: var(--main-color) !important;
    border: 1px solid var(--main-color) !important;
    color: #fff !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em;
    padding: 12px 26px;
    transition: all .25s ease;
    box-shadow: 0 4px 12px rgba(var(--main-color-rgb), 0.18);
}
.cmn-btn:hover,
.btn-primary:hover,
.calculate-btn:hover,
.bayut-search-submit:hover,
.bayut-promo-btn:hover,
.bayut-side-cta:hover {
    background: linear-gradient(135deg, #5132a2 0%, #470af7 100%) !important;
    border-color: var(--main-color-dark) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(var(--main-color-rgb), 0.28);
}
.cmn-btn2,
.cmn-btn-outline-white,
.bayut-side-cta-outline {
    background: transparent !important;
    border: 1px solid var(--accent-color) !important;
    color: var(--accent-color) !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
}
.cmn-btn2:hover,
.cmn-btn-outline-white:hover,
.bayut-side-cta-outline:hover {
    background: var(--accent-color) !important;
    color: #fff !important;
}

/* ---------- Pills / Toggles ---------- */
.bayut-pill,
.bayut-mini-pill {
    border-radius: 30px !important;
    font-weight: 600 !important;
    transition: all .25s ease;
}
.bayut-pill.is-active,
.bayut-mini-pill.is-active {
    background: var(--main-color) !important;
    color: #fff !important;
    border-color: var(--main-color) !important;
}

/* =============================================================
   PROPERTY / INVESTMENT CARD â€” Premium real-estate redesign
   ============================================================= */
.invest-card {
    position: relative;
    padding: 0 !important;
    border: 1px solid var(--soft-border) !important;
    border-radius: 16px !important;
    overflow: hidden;
    background: #fff !important;
    box-shadow: 0 2px 8px rgba(15, 30, 60, 0.04) !important;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.invest-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 18px 40px rgba(15, 30, 60, 0.12) !important;
    border-color: rgba(var(--main-color-rgb), 0.30) !important;
}

/* --- Thumbnail --- */
.invest-card-thumb {
    height: 230px !important;
    border-radius: 0 !important;
    overflow: hidden;
    position: relative;
}
.invest-card-thumb::before {
    background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.45) 100%) !important;
}
.invest-card-thumb img {
    transition: transform .6s ease !important;
}
.invest-card:hover .invest-card-thumb img {
    transform: scale(1.06) rotate(0deg) !important;
}

/* Bookmark button polish */
.invest-card-thumb .invest-bookmark-btn {
    width: 38px !important;
    height: 38px !important;
    top: 14px !important;
    right: 14px !important;
    background: rgba(255,255,255,0.95) !important;
    color: #475569 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all .25s ease;
}
.invest-card-thumb .invest-bookmark-btn:hover {
    background: #fff !important;
    color: #ef4444 !important;
    transform: scale(1.08);
}
.invest-bookmark-btn.bookmarked {
    color: #ef4444 !important;
}

/* "FOR SALE" / status ribbon â€” top-left badge */
.invest-card-thumb::after {
    content: 'FEATURED';
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    background: var(--main-color);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 6px 12px;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(var(--main-color-rgb), 0.30);
}

/* --- Content area --- */
.invest-card-content {
    padding: 20px 20px 14px !important;
    flex-grow: 1;
}
.invest-card-content .title {
    font-size: 19px !important;
    font-weight: 700 !important;
    margin-bottom: 6px !important;
    line-height: 1.3;
}
.invest-card-content .title a {
    color: var(--h-color) !important;
    transition: color .2s ease;
}
.invest-card-content .title a:hover {
    color: var(--main-color) !important;
}
.invest-card-content .location {
    color: #64748b !important;
    font-size: 13px !important;
    margin-bottom: 16px !important;
    display: flex;
    align-items: center;
    gap: 4px;
}
.invest-card-content .location i {
    color: var(--main-color);
    font-size: 14px;
}

/* --- 4-option grid (Duration / Min / Return / Capital Back) --- */
.invest-card-content .other-options {
    margin: 0 !important;
    padding: 14px;
    background: #F7F9FC;
    border-radius: 10px;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
    flex-wrap: nowrap !important;
}
.invest-card-content .single-option {
    width: auto !important;
    padding: 0 !important;
    border-left: 2px solid var(--main-color);
    padding-left: 10px !important;
}
.invest-card-content .single-option h6 {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--h-color) !important;
    margin-bottom: 2px !important;
    line-height: 1.2;
}
.invest-card-content .single-option h6 span {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--h-color) !important;
}
.invest-card-content .single-option p {
    font-size: 11px !important;
    color: #64748b !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0 !important;
    line-height: 1.2;
}

/* --- Footer with price + CTA --- */
.invest-card-footer {
    padding: 0 20px 20px !important;
}
.invest-card-footer-inner {
    border-top: 1px solid var(--soft-border) !important;
    padding-top: 16px !important;
    padding-bottom: 0 !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.invest-card-footer .return-rate {
    background: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.invest-card-footer .return-rate p {
    font-size: 11px !important;
    color: #64748b !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 2px !important;
    font-weight: 600;
}
.invest-card-footer .return-amount {
    background: none !important;
    color: var(--main-color) !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    padding: 0 !important;
    box-shadow: none !important;
    letter-spacing: -0.01em;
    border-radius: 0 !important;
}

/* Circular arrow CTA */
.invest-card-btn {
    width: 46px !important;
    height: 46px !important;
    background: #F1F5F9 !important;
    color: var(--main-color) !important;
    border-radius: 50% !important;
    transition: all .3s ease;
    font-size: 18px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.invest-card:hover .invest-card-btn {
    background: var(--main-color) !important;
    color: #fff !important;
    transform: rotate(45deg);
    box-shadow: 0 6px 16px rgba(var(--main-color-rgb), 0.35);
}

/* "Already Invested" button inside footer */
.invest-card-footer .cmn-btn.btn-sm {
    padding: 10px 18px !important;
    font-size: 13px !important;
    border-radius: 8px !important;
}

/* --- Featured item (different card variant) --- */
.featured-item {
    border: 1px solid var(--soft-border) !important;
    border-radius: 16px !important;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(15, 30, 60, 0.04);
    transition: all .35s ease;
}
.featured-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(15, 30, 60, 0.12);
}
.featured-item .thumb .featured-badge,
.featured-badge {
    background: var(--main-color) !important;
    color: #fff !important;
    border-radius: 4px !important;
    font-weight: 700 !important;
    font-size: 11px !important;
    letter-spacing: 0.08em !important;
    padding: 6px 12px !important;
    box-shadow: 0 3px 10px rgba(var(--main-color-rgb), 0.30);
    text-transform: uppercase;
}

/* ---------- Section backgrounds ---------- */
.section-bg {
    background: var(--secondary-color) !important;
}
.section-bg2,
.choose-section {
    background: linear-gradient(135deg, var(--main-color2) 0%, #1a2c4f 100%) !important;
    color: #cbd5e1;
}
.section-bg2 h1, .section-bg2 h2, .section-bg2 h3, .section-bg2 h4,
.choose-section h1, .choose-section h2, .choose-section h3, .choose-section h4 {
    color: #fff !important;
}
.choose-section .choose-item-title span,
.choose-section .accent {
    color: var(--accent-color) !important;
}
.choose-section .choose-item-content .icon {
    background: rgba(var(--accent-color-rgb), 0.15) !important;
    color: var(--accent-color) !important;
    border-radius: 12px !important;
}

/* ---------- Header / Nav ---------- */
/* ---------- Header — bigger text + main-color accents ---------- */
.bayut-header {
    background: #fff !important;
    box-shadow: 0 4px 18px rgba(15, 30, 60, 0.08) !important;
    border-bottom: 2px solid rgba(var(--main-color-rgb), 0.12) !important;
    padding: 4px 0;
    position: relative;
}
.bayut-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--main-color) 0%, var(--main-color-dark) 100%);
}
.bayut-nav-link {
    color: #f1f3f5 !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    letter-spacing: 0.01em;
    transition: all .2s ease;
    padding: 10px 16px !important;
    position: relative;
}
.bayut-nav-link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 2px;
    background: var(--main-color);
    transition: all .25s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}
.bayut-nav-link:hover,
.bayut-nav-link.is-active {
    color: #a9a8ad !important;
}
.bayut-nav-link:hover::after,
.bayut-nav-link.is-active::after {
    width: 60%;
}
.bayut-auth-btn {
    background: linear-gradient(135deg, #1e113f 0%, #4105f0 100%) !important;
    color: #fff !important;
    border-radius: 10px !important;
    padding: 12px 22px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    border: none !important;
    display: inline-flex !important;
    align-items: center;
    gap: 10px !important;
    box-shadow: 0 4px 14px rgba(var(--main-color-rgb), 0.30);
    transition: all .25s ease;
}
.bayut-auth-btn:hover {
    background: linear-gradient(135deg, var(--main-color-dark) 0%, var(--main-color) 100%) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(var(--main-color-rgb), 0.42);
}
.bayut-lang-btn {
    font-weight: 600 !important;
    font-size: 14px !important;
    padding: 10px 14px !important;
}
.bayut-auth-avatar {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    border: 2px solid rgba(255,255,255,0.4);
    object-fit: cover;
    background: #fff;
}
.bayut-lang-btn {
    border: 1px solid var(--soft-border) !important;
    border-radius: 8px !important;
    color: #475569 !important;
}

/* ---------- Hero / Search Card ---------- */
.bayut-hero {
    position: relative;
}
.bayut-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 30, 60, 0) 0%, rgba(15, 30, 60, 0.55) 100%);
    pointer-events: none;
}
.bayut-search-card {
    background: rgba(255, 255, 255, 0.97) !important;
    border-radius: 16px !important;
    box-shadow: 0 20px 50px rgba(15, 30, 60, 0.18) !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    backdrop-filter: blur(8px);
    padding: 22px !important;
}
.bayut-location-input,
.bayut-select {
    border: 1px solid var(--soft-border) !important;
    border-radius: 8px !important;
    background: #fff !important;
    color: #1F2937 !important;
    height: 46px;
    transition: border-color .2s ease;
}
.bayut-location-input:focus,
.bayut-select:focus {
    border-color: var(--main-color) !important;
    box-shadow: 0 0 0 3px rgba(var(--main-color-rgb), 0.12) !important;
    outline: none;
}

/* ---------- Stats / Investment overview ---------- */
.overview-amount {
    color: var(--accent-color) !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em;
}
.banner-bottom-title {
    color: #94a3b8 !important;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ---------- Bonus / VIP cards ---------- */
.bonus-box {
    border: 1px solid var(--soft-border) !important;
    border-radius: 16px !important;
    background: #fff !important;
    box-shadow: var(--card-shadow);
    padding: 28px 24px !important;
    transition: all .3s ease;
}
.bonus-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
    border-color: var(--accent-color) !important;
}
.bonus-box-img,
.bonus-box-img::before {
    background: linear-gradient(135deg, var(--main-color) 0%, var(--main-color-dark) 100%) !important;
    border-radius: 12px !important;
    color: #fff !important;
}
.bonus-list {
    background: #F7F8FB !important;
    border-radius: 10px !important;
    padding: 14px 18px !important;
    margin-top: 10px;
}

/* ---------- Stats inside bonus cards ---------- */
.bonus-box .vip-amount,
.bonus-box .price {
    color: var(--main-color) !important;
    font-weight: 700 !important;
}

/* ---------- FAQ Accordion ---------- */
.accordion-item {
    border: 1px solid var(--soft-border) !important;
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 12px;
    background: #fff !important;
    box-shadow: 0 1px 3px rgba(15, 30, 60, 0.04);
}
.accordion-button {
    background: #fff !important;
    color: var(--h-color) !important;
    font-weight: 600 !important;
    padding: 18px 22px !important;
    border-radius: 12px !important;
}
.accordion-button:not(.collapsed) {
    background: rgba(var(--main-color-rgb), 0.04) !important;
    color: var(--main-color) !important;
    box-shadow: none !important;
}
.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(var(--main-color-rgb), 0.12) !important;
    border-color: transparent !important;
}

/* ---------- Footer — main-color theme + bigger text ---------- */
.footer-section {
    background:
        radial-gradient(circle at 0% 0%, rgba(var(--main-color-rgb), 0.18) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(var(--main-color-rgb), 0.12) 0%, transparent 50%),
        linear-gradient(180deg, #0a1a14 0%, #050b08 100%) !important;
    color: #cbd5e1 !important;
    padding-top: 60px !important;
    position: relative;
}
.footer-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--main-color) 0%, var(--main-color-dark) 100%);
}
.footer-section p,
.footer-section li,
.footer-section span:not(.icon):not([class*="badge"]) {
    font-size: 15px !important;
    line-height: 1.8;
    color: #cbd5e1 !important;
}
.footer-section a {
    color: #cbd5e1 !important;
    font-size: 15px !important;
    transition: all .2s ease;
    display: inline-block;
}
.footer-section a:hover {
    color: var(--main-color) !important;
    transform: translateX(4px);
}
.footer-box .title,
.footer-section h1, .footer-section h2,
.footer-section h3, .footer-section h4, .footer-section h5 {
    color: #fff !important;
    font-weight: 800 !important;
    font-size: 20px !important;
    margin-bottom: 22px !important;
    position: relative;
    padding-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.footer-box .title::after,
.footer-section h4::after,
.footer-section h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--main-color) 0%, var(--main-color-dark) 100%);
    border-radius: 3px;
}
.footer-bottom {
    border-top: 1px solid rgba(var(--main-color-rgb), 0.20);
    padding-top: 22px;
    margin-top: 30px;
    color: #94a3b8 !important;
    font-size: 14px !important;
}
.footer-bottom p { font-size: 14px !important; }

/* ---------- Newsletter subscribe ---------- */
.footer-section .subscribe-email,
.footer-section input[type="email"] {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(var(--main-color-rgb), 0.30) !important;
    color: #fff !important;
    border-radius: 10px !important;
    padding: 14px 18px !important;
    font-size: 15px !important;
}
.footer-section .subscribe-email:focus,
.footer-section input[type="email"]:focus {
    border-color: var(--main-color) !important;
    box-shadow: 0 0 0 3px rgba(var(--main-color-rgb), 0.18) !important;
    background: rgba(255, 255, 255, 0.10) !important;
    outline: none;
}
.footer-section .subscribe-email::placeholder { color: #94a3b8 !important; }

/* Subscribe button if present */
.footer-section button[type="submit"],
.footer-section .btn-subscribe,
.footer-section .subscribe-btn {
    background: linear-gradient(135deg, var(--main-color) 0%, var(--main-color-dark) 100%) !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    box-shadow: 0 4px 14px rgba(var(--main-color-rgb), 0.30);
    transition: all .25s ease;
}
.footer-section button[type="submit"]:hover,
.footer-section .btn-subscribe:hover,
.footer-section .subscribe-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(var(--main-color-rgb), 0.42);
}

/* Social icons */
.footer-section .social-icons a,
.footer-section .social-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(var(--main-color-rgb), 0.12);
    border: 1px solid rgba(var(--main-color-rgb), 0.25);
    color: var(--main-color) !important;
    font-size: 18px;
    margin: 0 4px;
}
.footer-section .social-icons a:hover,
.footer-section .social-link:hover {
    background: var(--main-color) !important;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(var(--main-color-rgb), 0.42);
}

/* Mobile responsive */
@media (max-width: 767px) {
    .footer-box .title,
    .footer-section h4, .footer-section h5 { font-size: 17px !important; }
    .footer-section p, .footer-section li, .footer-section a { font-size: 14px !important; }
}

/* ---------- Section title rhythm ---------- */
.section-title,
.title-section h2,
.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 14px;
}
.section-title::after,
.title-section h2::after,
.section-header h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 56px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 3px;
}

/* ---------- Back-to-top floating button ---------- */
#btn-back-to-top {
    background: var(--main-color) !important;
    color: #fff !important;
    border-radius: 50% !important;
    width: 46px;
    height: 46px;
    border: none !important;
    box-shadow: 0 6px 18px rgba(var(--main-color-rgb), 0.35);
}
#btn-back-to-top:hover {
    background: var(--main-color-dark) !important;
    transform: translateY(-3px);
}

/* ---------- Misc green-tinted leftovers ---------- */
.text-success,
.badge-success,
.badge.bg-success {
    color: var(--accent-color) !important;
}
.bg-success {
    background: var(--accent-color) !important;
}

/* ---------- Form selects (selectric) ---------- */
.selectric {
    border: 1px solid var(--soft-border) !important;
    border-radius: 8px !important;
    background: #fff !important;
}
.selectric .label { color: #1F2937 !important; }
.selectric-open .selectric { border-color: var(--main-color) !important; }

/* ---------- Card image polish ---------- */
.invest-card img,
.featured-item .thumb img {
    transition: transform .5s ease;
}
.invest-card:hover img,
.featured-item:hover .thumb img {
    transform: scale(1.04);
}

/* ---------- Property news cards ---------- */
.news-card,
.blog-card {
    border: 1px solid var(--soft-border) !important;
    border-radius: 14px !important;
    overflow: hidden;
    background: #fff !important;
    box-shadow: var(--card-shadow);
    transition: all .3s ease;
}
.news-card:hover,
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
}

/* =============================================================
   USER DASHBOARD â€” Modern overhaul
   ============================================================= */

.dashboard-section {
    background: #F4F6FA;
    min-height: calc(100vh - 80px);
}
/* Keep left offset (345px) for the fixed sidebar â€” only tweak vertical padding */
.dashboard-body-part {
    padding: 100px 28px 50px 345px !important;
}
@media (max-width: 1199px) {
    .dashboard-body-part { padding: 100px 20px 40px 335px !important; }
}
@media (max-width: 991px) {
    .dashboard-body-part { padding: 100px 18px 40px 18px !important; }
}

/* --- Welcome Banner --- */
.dash-welcome {
    background: linear-gradient(135deg, var(--main-color) 0%, var(--main-color-dark) 100%);
    border-radius: 18px;
    padding: 17px 15px;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(var(--main-color-rgb), 0.20);
}
.dash-welcome::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
}
.dash-welcome::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: 80px;
    width: 180px;
    height: 180px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}
.dash-welcome .dash-welcome-content { position: relative; z-index: 2; }
.dash-welcome h2 {
    color: #fff !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    margin-bottom: 0px !important;
    letter-spacing: -0.01em;
}
.dash-welcome .dash-welcome-sub {
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    margin-bottom: 18px;
}
.dash-welcome .dash-chip {
    display: inline-flex;
    align-items: center;
    gap: 0px;
    background: rgba(255,255,255,0.18);
    color: #fff;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 8px;
    backdrop-filter: blur(6px);
}
.dash-chip i { font-size: 14px; }
.dash-chip.chip-warn { background: rgba(245, 158, 11, 0.25); }
.dash-chip.chip-ok { background: rgba(16, 185, 129, 0.25); }

/* --- Hero metric cards (replaces .d-box-two) --- */
.d-box-two {
    padding: 10px !important;
    background: linear-gradient(344deg, #19064e 0%, #551af3 100%) !important;
    border-radius: 16px !important;
    border: 1px solid var(--soft-border);
    box-shadow: 0 2px 8px rgba(15, 30, 60, 0.04);
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 4px;
}
.d-box-two::before { display: none !important; }
.d-box-two:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(15, 30, 60, 0.10);
    border-color: var(--soft-border) !important;
}
.d-box-two-icon {
    background: linear-gradient(135deg, var(--main-color) 0%, var(--main-color-dark) 100%) !important;
    border-radius: 12px !important;
    width: 35px !important;
    height: 35px !important;
    font-size: 17px !important;
    color: #fff !important;
    box-shadow: 0 4px 14px rgba(var(--main-color-rgb), 0.30);
}
.d-box-two-icon::before { display: none !important; }
.d-box-two .link-btn {
    width: 25px !important;
    height: 25px !important;
    border: 1px solid var(--soft-border) !important;
    color: #64748b !important;
    background: #F1F5F9 !important;
    font-size: 16px !important;
}
.d-box-two .link-btn:hover {
    background: var(--main-color) !important;
    border-color: var(--main-color) !important;
    color: #fff !important;
    transform: rotate(45deg);
}
.d-box-two-amount {
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #efe315 !important;
    margin-bottom: 4px !important;
    letter-spacing: -0.02em;
}
.d-box-two .caption-title {
    color: #64748b !important;
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}
.d-box-two .mb-sm-5 { margin-bottom: 3px !important; }

/* --- Compact stat cards (.d-box-three) --- */
.d-box-three {
    padding: 18px 18px !important;
    background: #fff !important;
    border-radius: 14px !important;
    border: 1px solid var(--soft-border);
    box-shadow: 0 1px 4px rgba(15, 30, 60, 0.03);
    transition: all .3s ease;
}
.d-box-three:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 30, 60, 0.08);
    border-color: rgba(var(--main-color-rgb), 0.20);
}
.d-box-three .icon {
    background: rgba(var(--main-color-rgb), 0.10) !important;
    color: var(--main-color) !important;
    border-radius: 10px !important;
    width: 48px !important;
    height: 48px !important;
    font-size: 22px !important;
}
.d-box-three .content {
    width: calc(100% - 48px) !important;
    padding-left: 14px !important;
}
.d-box-three .content .title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--h-color) !important;
    margin-bottom: 2px !important;
    letter-spacing: -0.01em;
}
.d-box-three .content .text-small {
    color: #64748b !important;
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* --- Card panel (generic) --- */
.dash-panel {
    background: #fff;
    border: 1px solid var(--soft-border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(15, 30, 60, 0.04);
    margin-bottom: 24px;
}
.dash-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--soft-border);
}
.dash-panel-head h5 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--h-color) !important;
    margin-bottom: 0 !important;
}
.dash-panel-head .dash-link {
    color: var(--main-color) !important;
    font-weight: 600;
    font-size: 13px;
}
.dash-panel-head .dash-link:hover { color: var(--main-color-dark) !important; }

/* --- Quick actions grid --- */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.quick-action {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: #F7F9FC;
    border: 1px solid transparent;
    border-radius: 12px;
    transition: all .25s ease;
    color: var(--h-color);
    cursor: pointer;
}
.quick-action:hover {
    background: #fff;
    border-color: var(--main-color);
    color: var(--main-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(var(--main-color-rgb), 0.15);
}
.quick-action .qa-icon {
    width: 40px;
    height: 40px;
    background: var(--main-color);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.quick-action .qa-text {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
}

/* --- Announcement / Activity feed --- */
.dash-feed-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px dashed var(--soft-border);
}
.dash-feed-item:last-child { border-bottom: 0; padding-bottom: 0; }
.dash-feed-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}
.dash-feed-icon.tag-news {
    background: rgba(var(--main-color-rgb), 0.12);
    color: var(--main-color);
}
.dash-feed-icon.tag-alert {
    background: rgba(245, 158, 11, 0.15);
    color: #d97706;
}
.dash-feed-icon.tag-info {
    background: rgba(59, 130, 246, 0.12);
    color: #2563eb;
}
.dash-feed-body { flex: 1; }
.dash-feed-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--h-color);
    margin-bottom: 2px;
}
.dash-feed-msg {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 4px;
    line-height: 1.5;
}
.dash-feed-date {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* --- Referral CTA card --- */
.dash-referral {
    background: linear-gradient(135deg, #1a2c4f 0%, #0F1E3C 100%);
    border-radius: 16px;
    padding: 22px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.dash-referral::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    background: rgba(var(--main-color-rgb), 0.20);
    border-radius: 50%;
}
.dash-referral h5 {
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-bottom: 6px !important;
    position: relative;
    z-index: 2;
}
.dash-referral p {
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}
.dash-referral .input-group {
    position: relative;
    z-index: 2;
}
.dash-referral .form-control {
    background: rgba(255,255,255,0.10) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    color: #fff !important;
    border-radius: 8px 0 0 8px !important;
    padding: 10px 14px;
    font-size: 13px;
}
.dash-referral .form-control::placeholder { color: rgba(255,255,255,0.5); }
.dash-referral .input-group-text {
    background: var(--main-color) !important;
    border: 1px solid var(--main-color) !important;
    color: #fff !important;
    border-radius: 0 8px 8px 0 !important;
    font-weight: 700;
    cursor: pointer;
    padding: 10px 18px;
}
.dash-referral .input-group-text:hover { background: var(--main-color-dark) !important; }

/* --- Reference tree polish --- */
.tree-wrap {
    background: #F7F9FC;
    border-radius: 12px;
    padding: 20px;
    overflow-x: auto;
}

/* --- Sidebar polish --- */
.d-sidebar {
    background: linear-gradient(344deg, #9270f3 0%, #3f14b1 100%) !important;
    border-right: 1px solid var(--soft-border);
    border-radius: 10px;
}
.d-sidebar-menu li a {
    color: #f1f3f7 !important;
    font-weight: 500 !important;
    border-radius: 10px !important;
    transition: all .2s ease;
    margin: 2px 8px;
}
.d-sidebar-menu li a:hover {
    background: rgba(var(--main-color-rgb), 0.08) !important;
    color: var(--main-color) !important;
}
.d-sidebar-menu li.active > a,
.d-sidebar-menu li.open > a {
    background: linear-gradient(135deg, var(--main-color) 0%, var(--main-color-dark) 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(var(--main-color-rgb), 0.25);
}
.d-sidebar-menu li a iconify-icon { font-size: 18px; }
.d-sidebar-menu .submenu li a {
    font-size: 13px !important;
    padding-left: 48px !important;
    margin: 1px 8px;
}

/* Plan notice */
.d-plan-notice {
    background: linear-gradient(135deg, rgb(245 203 61 / 89%) 0%, rgb(61 197 245) 100%) !important;
    border: 1px solid rgba(var(--main-color-rgb),0.20) !important;
    border-radius: 12px !important;
    padding: 16px !important;
    text-align: left !important;
}
.d-plan-notice p {
    color: #475569 !important;
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 8px !important;
}
.d-plan-notice a {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    background: var(--main-color) !important;
    color: #fff !important;
    padding: 8px 14px !important;
    border-radius: 8px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
}
.d-plan-notice a:hover { background: var(--main-color-dark) !important; }

/* Top dashboard header polish */
#header.header-inner-pages {
    background: linear-gradient(135deg, #04010e 0%, #3a10a8 100%) !important;
    box-shadow: 0 2px 12px rgba(15, 30, 60, 0.05);
    border-bottom: 1px solid var(--soft-border);
}
.user-toggle-menu {
    border: 1px solid var(--soft-border) !important;
    background: #fff !important;
    border-radius: 10px !important;
    padding: 6px 14px !important;
}
.user-toggle-menu img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}
.user-toggle-menu .site-color {
    color: var(--main-color) !important;
    font-size: 11px !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* =============================================================
   LOGO FIX â€” bigger, properly sized for default theme
   ============================================================= */
.bayut-logo {
    display: inline-flex !important;
    align-items: center !important;
    flex-shrink: 0;
    max-height: 80px !important;
    padding: 4px 0;
}
.bayut-logo img {
    height: auto !important;
    width: auto !important;
    max-height: 70px !important;
    max-width: 240px;
    object-fit: contain;
    display: block;
    transition: transform .25s ease;
    filter: drop-shadow(0 2px 8px rgba(15,30,60,0.12));
}
.bayut-logo:hover img {
    transform: scale(1.04);
}

/* Footer logo (same selector usually) */
.footer-section .logo img,
.footer-section img[alt="logo"]:not(.bayut-auth-avatar) {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(255,255,255,0.05));
}

/* Responsive ladder */
@media (max-width: 1199px) {
    .bayut-logo { max-height: 70px !important; }
    .bayut-logo img { max-height: 60px !important; max-width: 200px; }
}
@media (max-width: 991px) {
    .bayut-logo { max-height: 60px !important; }
    .bayut-logo img { max-height: 52px !important; max-width: 180px; }
}
@media (max-width: 575px) {
    .bayut-logo { max-height: 52px !important; }
    .bayut-logo img { max-height: 44px !important; max-width: 150px; }
}

/* =============================================================
   BONUS LEVEL â€” Premium VIP-tier cards (.vip-card)
   ============================================================= */
.vip-section {
    background:
        radial-gradient(circle at 0% 0%, rgba(59,201,128,0.06) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(255,215,0,0.06) 0%, transparent 50%),
        var(--secondary-color, #F4F6FA);
    position: relative;
}

.vip-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--soft-border, #E5E9F0);
    border-radius: 20px;
    padding: 38px 26px 28px;
    text-align: center;
    transition: all .35s cubic-bezier(.2,.8,.2,1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 18px rgba(15,30,60,0.05);
}

/* Decorative tier color glow */
.vip-card::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--main-color, #3bc980) 0%, transparent 70%);
    opacity: 0.15;
    filter: blur(20px);
    transition: opacity .35s ease;
}
.vip-card:hover {
    transform: translateY(-8px);
    border-color: var(--main-color, #3bc980);
    box-shadow: 0 20px 44px rgba(15,30,60,0.12);
}
.vip-card:hover::before { opacity: 0.28; }

/* "Most Popular" floating badge */
.vip-popular {
    position: absolute;
    top: -1px;
    right: 22px;
    background: linear-gradient(135deg, var(--main-color, #3bc980) 0%, var(--main-color-dark, #2a9d62) 100%);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(var(--main-color-rgb, 59,201,128), 0.30);
    z-index: 4;
}

/* Tier ribbon at top */
.vip-tier-ribbon {
    display: inline-block;
    background: linear-gradient(135deg, var(--main-color, #3bc980) 0%, color-mix(in srgb, var(--main-color, #3bc980) 70%, #000) 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0,0,0,0.25);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Crown icon */
.vip-card .vip-icon {
    position: relative;
    z-index: 2;
    width: 76px;
    height: 76px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--main-color, #3bc980) 0%, color-mix(in srgb, var(--main-color, #3bc980) 60%, #fff) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.18);
    transition: transform .35s ease;
}
.vip-card:hover .vip-icon { transform: rotate(15deg) scale(1.08); }

.vip-title {
    color: var(--h-color, #0F1E3C);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.vip-amount {
    background: linear-gradient(135deg, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.01) 100%);
    border: 1px solid var(--soft-border, #E5E9F0);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
}
.vip-amount small {
    display: block;
    color: #64748b;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-bottom: 4px;
}
.vip-amount strong {
    color: var(--h-color, #0F1E3C);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
}
.vip-curr {
    font-size: 13px;
    color: var(--p-color, #475569);
    font-weight: 600;
    margin-left: 4px;
}

.vip-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    text-align: left;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}
.vip-perks li {
    padding: 8px 0;
    border-bottom: 1px dashed var(--soft-border, #E5E9F0);
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--p-color, #475569);
    font-size: 13px;
    line-height: 1.5;
}
.vip-perks li:last-child { border-bottom: 0; }
.vip-perks li i {
    color: var(--main-color, #3bc980);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}
.vip-perks li strong { color: var(--h-color, #0F1E3C); font-weight: 700; }

.vip-desc {
    color: #64748b;
    font-size: 12px;
    line-height: 1.6;
    margin: 0;
    padding-top: 14px;
    border-top: 1px dashed var(--soft-border, #E5E9F0);
    position: relative;
    z-index: 2;
}

/* Featured (Most Popular) variant */
.vip-card.is-featured {
    background: linear-gradient(180deg, #fff 0%, rgba(var(--main-color-rgb, 59,201,128), 0.04) 100%);
    border-width: 2px;
    border-color: var(--main-color, #3bc980);
    transform: translateY(-12px);
    box-shadow: 0 18px 40px rgba(var(--main-color-rgb, 59,201,128), 0.20);
}
.vip-card.is-featured:hover { transform: translateY(-18px); }
.vip-card.is-featured .vip-tier-ribbon {
    box-shadow: 0 6px 18px rgba(0,0,0,0.20);
}

@media (max-width: 991px) {
    .vip-card.is-featured { transform: none; }
    .vip-card.is-featured:hover { transform: translateY(-8px); }
}

/* =============================================================
   INVESTMENT OVERVIEW — Premium strip with real DB stats
   ============================================================= */
.banner-bottom-part.overview-redesigned {
    background: transparent !important;
    padding: 60px 0;
    margin-top: -80px;
    position: relative;
    z-index: 5;
}

.overview-strip {
    background:
        radial-gradient(circle at 0% 0%, rgba(var(--main-color-rgb), 0.15) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(var(--main-color-rgb), 0.10) 0%, transparent 50%),
        linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(var(--main-color-rgb), 0.20);
    border-radius: 22px;
    padding: 32px 36px;
    box-shadow: 0 18px 48px rgba(15, 30, 60, 0.10);
    position: relative;
    overflow: hidden;
}
.overview-strip::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--main-color) 0%, var(--main-color-dark) 100%);
}

/* Header row above stats */
.overview-strip-head {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px dashed rgba(var(--main-color-rgb), 0.18);
    position: relative;
}
.overview-strip-title {
    color: var(--h-color, #0F1E3C) !important;
    font-size: 24px !important;
    font-weight: 800 !important;
    margin: 0 0 4px 0 !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.overview-strip-title i {
    color: var(--main-color);
    font-size: 26px;
}
.overview-strip-head small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    font-weight: 600;
}
.overview-pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--main-color);
    border-radius: 50%;
    animation: ov-pulse 1.4s ease-in-out infinite;
    margin-right: 8px;
    vertical-align: middle;
    box-shadow: 0 0 0 0 rgba(var(--main-color-rgb), 0.6);
}
@keyframes ov-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(var(--main-color-rgb), 0.6); }
    50%      { box-shadow: 0 0 0 10px rgba(var(--main-color-rgb), 0); }
}

/* Stats grid */
.overview-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 991px) {
    .overview-strip-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .overview-strip-grid { grid-template-columns: 1fr; }
}

.overview-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 16px;
    background: #fff;
    border: 1px solid rgba(var(--main-color-rgb), 0.12);
    border-radius: 14px;
    transition: all .3s cubic-bezier(.2,.8,.2,1);
    cursor: default;
}
.overview-stat:hover {
    transform: translateY(-4px);
    border-color: var(--main-color);
    box-shadow: 0 14px 28px rgba(var(--main-color-rgb), 0.18);
}
.overview-stat-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--main-color) 0%, var(--main-color-dark) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(var(--main-color-rgb), 0.30);
    transition: transform .3s ease;
}
.overview-stat:hover .overview-stat-icon {
    transform: rotate(8deg) scale(1.05);
}
.overview-stat-body { flex: 1; }
.overview-strip .overview-amount {
    color: var(--h-color, #0F1E3C) !important;
    font-size: 24px !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em;
    margin-bottom: 2px !important;
    line-height: 1.1;
    display: flex;
    align-items: baseline;
    gap: 4px;
}
.overview-strip .overview-curr {
    color: var(--main-color);
    font-size: 13px;
    font-weight: 700;
}
.overview-strip .overview-title {
    color: #64748b !important;
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    margin: 0 !important;
}

@media (max-width: 575px) {
    .overview-strip { padding: 24px 18px; }
    .overview-strip-title { font-size: 20px !important; }
    .overview-strip .overview-amount { font-size: 20px !important; }
}

/* =============================================================
   FIX 1: Bayut Promo CTA — text was 15% opacity (invisible)
   ============================================================= */
.bayut-promo-card {
    background: linear-gradient(135deg, var(--main-color) 0%, var(--main-color-dark) 100%) !important;
    border: none !important;
    box-shadow: 0 12px 32px rgba(var(--main-color-rgb), 0.30) !important;
    border-radius: 18px !important;
    padding: 28px 32px !important;
    position: relative;
    overflow: hidden;
    transition: all .3s ease !important;
}
.bayut-promo-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.bayut-promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(var(--main-color-rgb), 0.42) !important;
}
.bayut-promo-text h3 {
    color: #ffffff !important;
    font-size: 26px !important;
    font-weight: 800 !important;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.bayut-promo-text p {
    color: rgba(255,255,255,0.92) !important;
    font-size: 15px !important;
    font-weight: 500;
}
.bayut-promo-tag {
    background: #ef4444 !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    letter-spacing: 0.10em !important;
    padding: 6px 12px !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.40);
}
.bayut-promo-btn {
    background: #fff !important;
    color: var(--main-color) !important;
    font-weight: 700 !important;
    padding: 14px 28px !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18) !important;
    transition: all .25s ease !important;
}
.bayut-promo-card:hover .bayut-promo-btn {
    transform: translateX(4px);
    background: #fff !important;
    color: var(--main-color-dark) !important;
    box-shadow: 0 10px 24px rgba(0,0,0,0.25) !important;
}

/* =============================================================
   FIX 2: Investment Overview (.banner-bottom-part) — premium restyle
   ============================================================= */
.banner-bottom-part {
    background:
        radial-gradient(circle at 0% 0%, rgba(var(--main-color-rgb), 0.18) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(var(--main-color-rgb), 0.10) 0%, transparent 50%),
        linear-gradient(135deg, #0f1e3c 0%, #060c1c 100%) !important;
    padding: 60px 0 !important;
    position: relative;
    border-top: 3px solid var(--main-color) !important;
}
.banner-bottom-title {
    color: #fff !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    padding-left: 22px;
    line-height: 1.3;
}
.banner-bottom-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 5px;
    background: linear-gradient(180deg, var(--main-color) 0%, var(--main-color-dark) 100%);
    border-radius: 3px;
}

.overview-item {
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%) !important;
    border: 1px solid rgba(var(--main-color-rgb), 0.30) !important;
    border-radius: 18px !important;
    padding: 28px 22px !important;
    transition: all .35s cubic-bezier(.2,.8,.2,1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}
.overview-item::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--main-color) 0%, transparent 70%);
    opacity: 0.20;
    filter: blur(15px);
    transition: opacity .35s ease;
}
.overview-item:hover {
    transform: translateY(-6px);
    border-color: var(--main-color) !important;
    background: linear-gradient(135deg, rgba(var(--main-color-rgb), 0.18) 0%, rgba(255,255,255,0.03) 100%) !important;
    box-shadow: 0 16px 36px rgba(var(--main-color-rgb), 0.25);
}
.overview-item:hover::before { opacity: 0.35; }

/* Add icon before each stat via pseudo-element */
.overview-wrapper .col-sm-4:nth-child(1) .overview-item::after {
    content: '\f0c0';
    font-family: 'Font Awesome 5 Free', 'Font Awesome 6 Free', sans-serif;
    font-weight: 900;
}
.overview-wrapper .col-sm-4:nth-child(2) .overview-item::after {
    content: '\f53d';
    font-family: 'Font Awesome 5 Free', 'Font Awesome 6 Free', sans-serif;
    font-weight: 900;
}
.overview-wrapper .col-sm-4:nth-child(3) .overview-item::after {
    content: '\f201';
    font-family: 'Font Awesome 5 Free', 'Font Awesome 6 Free', sans-serif;
    font-weight: 900;
}
.overview-item::after {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--main-color) 0%, var(--main-color-dark) 100%);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 6px 16px rgba(var(--main-color-rgb), 0.35);
    z-index: 2;
}

.overview-amount {
    color: var(--main-color) !important;
    font-size: 36px !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 6px !important;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 24px rgba(var(--main-color-rgb), 0.30);
}
.overview-title {
    color: #94a3b8 !important;
    font-size: 12px !important;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    font-weight: 700;
    margin: 0 !important;
    position: relative;
    z-index: 2;
}

/* =============================================================
   FIX 3: Section top title pill ("FEATURED PROPERTY") — bigger + bolder
   ============================================================= */
.section-top {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}
.section-top-title {
    display: inline-block !important;
    background: rgba(var(--main-color-rgb), 0.12) !important;
    border: 1px solid rgba(var(--main-color-rgb), 0.35) !important;
    color: var(--main-color) !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    padding: 8px 20px !important;
    border-radius: 30px !important;
    margin-bottom: 14px !important;
}
.section-top-title::before,
.section-top-title::after { display: none !important; }

@media (max-width: 991px) {
    .banner-bottom-title { font-size: 18px !important; }
    .overview-amount { font-size: 28px !important; }
}

/* =============================================================
   PROFESSIONAL IMAGE HERO + CONTACT CARD
   (used when no real-estate addon active)
   ============================================================= */
.pro-hero {
    position: relative;
    width: 100%;
    margin-top: 24px;
    padding: 90px 0 60px;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: scroll;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15,30,60,0.35);
    min-height: 540px;
}
.pro-hero .container { padding-left: 24px; padding-right: 24px; }
.pro-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at left, rgba(var(--main-color-rgb), 0.18) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}
.pro-hero-container { position: relative; z-index: 2; }

/* LEFT — text */
.pro-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(var(--main-color-rgb), 0.40);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 22px;
    backdrop-filter: blur(8px);
}
.pro-hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--main-color);
    box-shadow: 0 0 0 0 rgba(var(--main-color-rgb), 0.7);
    animation: pro-pulse 1.4s ease-in-out infinite;
}
@keyframes pro-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(var(--main-color-rgb), 0.7); }
    50%      { box-shadow: 0 0 0 10px rgba(var(--main-color-rgb), 0); }
}

.pro-hero-title {
    color: #fff !important;
    font-size: 52px !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em;
    margin-bottom: 20px !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.30);
}
.pro-hero-accent {
    background: linear-gradient(120deg, var(--main-color) 0%, #6ee7b7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pro-hero-desc {
    color: rgba(255,255,255,0.85) !important;
    font-size: 17px !important;
    line-height: 1.65;
    margin-bottom: 30px;
    max-width: 540px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

.pro-hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
}
.pro-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 30px;
    border-radius: 12px;
    background: linear-gradient(135deg, #5132a2 0%, #470af7 100%) !important;
    color: #fff !important;
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 12px 28px rgba(var(--main-color-rgb), 0.45);
    transition: all .25s ease;
    text-decoration: none;
}
.pro-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(var(--main-color-rgb), 0.60);
    color: #fff !important;
}
.pro-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 26px;
    border-radius: 12px;
    background: rgba(255,255,255,0.12);
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    border: 1px solid rgba(255,255,255,0.30);
    backdrop-filter: blur(8px);
    transition: all .25s ease;
    text-decoration: none;
}
.pro-cta-outline:hover {
    background: rgba(255,255,255,0.22);
    border-color: var(--main-color);
    color: #fff !important;
    transform: translateY(-2px);
}

/* Stats row */
.pro-hero-stats {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}
.pro-stat strong {
    display: block;
    color: var(--main-color);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1;
    text-shadow: 0 0 16px rgba(var(--main-color-rgb), 0.40);
}
.pro-stat span {
    display: block;
    color: rgba(255,255,255,0.70);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    margin-top: 4px;
}
.pro-stat-sep {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.20);
}

/* =============================================================
   RIGHT — Featured Plan Card (replaces old contact card)
   ============================================================= */
.pro-plan-card {
    position: relative;
    background: rgba(255,255,255,0.98);
    border-radius: 22px;
    padding: 30px 28px 26px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.40);
    border: 1px solid rgba(var(--main-color-rgb), 0.20);
    backdrop-filter: blur(20px);
    overflow: hidden;
}
.pro-plan-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--main-color) 0%, var(--main-color-dark) 100%);
}

/* HOT ribbon top-right */
.pro-plan-ribbon {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 5px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(239,68,68,0.40);
}
.pro-plan-ribbon i { font-size: 10px; animation: pp-flame 1.5s ease-in-out infinite; }
@keyframes pp-flame {
    0%, 100% { transform: scale(1) rotate(-3deg); }
    50%      { transform: scale(1.15) rotate(3deg); }
}

/* Head row: icon + name */
.pro-plan-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}
.pro-plan-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(var(--main-color-rgb), 0.15) 0%, rgba(var(--main-color-rgb), 0.06) 100%);
    border: 1px solid rgba(var(--main-color-rgb), 0.30);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    overflow: hidden;
}
.pro-plan-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.pro-plan-icon-fallback {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--main-color), var(--main-color-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.pro-plan-eyebrow {
    display: block;
    color: var(--main-color);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.pro-plan-name {
    color: var(--h-color, #0F1E3C) !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    margin: 0 !important;
    line-height: 1.25;
}

/* Big return rate display */
.pro-plan-rate {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 24px;
    background: linear-gradient(135deg, rgba(var(--main-color-rgb), 0.12) 0%, rgba(var(--main-color-rgb), 0.04) 100%);
    border: 1px dashed rgba(var(--main-color-rgb), 0.35);
    border-radius: 16px;
    margin-bottom: 18px;
}
.pro-plan-rate-num {
    color: var(--main-color);
    font-size: 44px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
}
.pro-plan-rate-num span {
    font-size: 24px;
    font-weight: 700;
    margin-left: 2px;
}
.pro-plan-rate-label strong {
    display: block;
    color: var(--h-color, #0F1E3C);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.1;
}
.pro-plan-rate-label small {
    display: block;
    color: #64748b;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    margin-top: 4px;
}

/* Meta grid */
.pro-plan-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 22px;
}
.pro-plan-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 8px;
    background: #F7F9FC;
    border: 1px solid #E5E9F0;
    border-radius: 10px;
    min-width: 0;
}
.pro-plan-meta-item > i {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--main-color), var(--main-color-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}
.pro-plan-meta-item small {
    display: block;
    color: #94a3b8;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    margin-bottom: 1px;
}
.pro-plan-meta-item strong {
    display: block;
    color: var(--h-color, #0F1E3C);
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* CTA button */
.pro-plan-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 22px;
    background: linear-gradient(135deg, #5132a2 0%, #470af7 100%) !important;
    color: #fff !important;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(var(--main-color-rgb), 0.40);
    transition: all .25s ease;
    margin-bottom: 14px;
}
.pro-plan-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(var(--main-color-rgb), 0.55);
    color: #fff !important;
}
.pro-plan-cta i:last-child { transition: transform .25s ease; }
.pro-plan-cta:hover i:last-child { transform: translateX(4px); }

/* Mini trust line */
.pro-plan-trust-mini {
    text-align: center;
    color: #64748b;
    font-size: 11px;
    font-weight: 600;
}
.pro-plan-trust-mini i {
    color: var(--main-color);
    font-size: 12px;
    margin-right: 2px;
}

/* Empty state */
.pro-plan-empty {
    text-align: center;
    padding: 40px 24px;
}
.pro-plan-empty i {
    font-size: 48px;
    color: var(--main-color);
    margin-bottom: 14px;
}
.pro-plan-empty h4 {
    color: var(--h-color, #0F1E3C);
    font-size: 18px;
    font-weight: 700;
}
.pro-plan-empty p { color: #64748b; font-size: 13px; }

@media (max-width: 575px) {
    .pro-plan-card { padding: 22px 18px 20px; }
    .pro-plan-rate-num { font-size: 36px; }
    .pro-plan-meta { grid-template-columns: 1fr; }
    .pro-plan-meta-item strong { white-space: normal; }
}

/* =============================================================
   LEGACY .pro-contact-card (kept for safety)
   ============================================================= */
.pro-contact-card {
    background: rgba(255,255,255,0.97);
    border-radius: 22px;
    padding: 32px 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.40);
    border: 1px solid rgba(var(--main-color-rgb), 0.20);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}
.pro-contact-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--main-color) 0%, var(--main-color-dark) 100%);
}

.pro-contact-tag {
    display: inline-block;
    background: rgba(var(--main-color-rgb), 0.12);
    color: var(--main-color);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.pro-contact-head h3 {
    color: var(--h-color, #0F1E3C) !important;
    font-size: 22px !important;
    font-weight: 800 !important;
    line-height: 1.25;
    margin-bottom: 8px !important;
}
.pro-contact-head p {
    color: #64748b;
    font-size: 13px;
    margin-bottom: 22px;
}

.pro-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}
.pro-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    background: #F7F9FC;
    border: 1px solid #E5E9F0;
    border-radius: 12px;
    color: var(--h-color, #0F1E3C);
    text-decoration: none;
    transition: all .25s ease;
}
.pro-contact-item:hover {
    background: rgba(var(--main-color-rgb), 0.06);
    border-color: rgba(var(--main-color-rgb), 0.40);
    transform: translateX(4px);
    color: var(--h-color, #0F1E3C);
}
.pro-contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--main-color) 0%, var(--main-color-dark) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(var(--main-color-rgb), 0.30);
}
.pro-contact-item small {
    display: block;
    color: #94a3b8;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    margin-bottom: 2px;
}
.pro-contact-item strong {
    display: block;
    color: var(--h-color, #0F1E3C);
    font-size: 14px;
    font-weight: 700;
    word-break: break-word;
}

.pro-contact-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--main-color) 0%, var(--main-color-dark) 100%);
    color: #fff !important;
    font-weight: 700;
    font-size: 14px;
    border-radius: 10px;
    text-decoration: none;
    transition: all .25s ease;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.pro-contact-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(var(--main-color-rgb), 0.40);
    color: #fff !important;
}

/* Bottom trust strip */
.pro-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: center;
    margin-top: 50px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 600;
}
.pro-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.pro-hero-trust i {
    color: var(--main-color);
    font-size: 15px;
}

@media (max-width: 991px) {
    .pro-hero { padding: 60px 0 40px; }
    .pro-hero-title { font-size: 38px !important; }
    .pro-hero-stats { gap: 14px; }
    .pro-stat strong { font-size: 20px; }
    .pro-stat-sep { display: none; }
}
@media (max-width: 575px) {
    .pro-hero-title { font-size: 28px !important; }
    .pro-hero-desc { font-size: 15px !important; }
    .pro-contact-card { padding: 24px 20px; }
}

/* =============================================================
   LEGACY .hf-hero (old fintech design — hide if accidentally rendered)
   ============================================================= */
.hf-hero {
    position: relative;
    width: 100%;
    margin-top: 30px;
    padding: 60px 50px;
    background:
        linear-gradient(135deg, rgba(15, 30, 60, 0.95) 0%, rgba(8, 19, 42, 0.98) 100%);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15, 30, 60, 0.35);
}

/* Animated background */
.hf-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    border-radius: 26px;
}
.hf-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: hf-orb 12s ease-in-out infinite;
}
.hf-orb-1 {
    width: 380px; height: 380px;
    top: -80px; left: -100px;
    background: radial-gradient(circle, var(--main-color) 0%, transparent 70%);
}
.hf-orb-2 {
    width: 460px; height: 460px;
    bottom: -120px; right: -120px;
    background: radial-gradient(circle, var(--main-color-dark) 0%, transparent 70%);
    animation-delay: -6s;
}
@keyframes hf-orb {
    0%, 100% { transform: translate(0,0) scale(1); }
    50%      { transform: translate(40px, 30px) scale(1.1); }
}
.hf-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(var(--main-color-rgb), 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--main-color-rgb), 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 30%, transparent 80%);
    opacity: 0.6;
}

/* Grid layout */
.hf-hero-grid-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 991px) {
    .hf-hero { padding: 40px 28px; }
    .hf-hero-grid-layout { grid-template-columns: 1fr; gap: 40px; }
}

/* LEFT — text column */
.hf-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(var(--main-color-rgb), 0.15);
    border: 1px solid rgba(var(--main-color-rgb), 0.35);
    color: var(--main-color);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 22px;
}
.hf-hero-tag i { font-size: 11px; }
.hf-hero-title {
    color: #ffffff !important;
    font-size: 56px !important;
    font-weight: 900 !important;
    line-height: 1.05 !important;
    letter-spacing: -0.03em;
    margin-bottom: 18px !important;
}
.hf-hero-accent {
    display: block;
    background: linear-gradient(120deg, var(--main-color) 0%, #6ee7b7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hf-hero-sub {
    color: rgba(255,255,255,0.80) !important;
    font-size: 17px !important;
    line-height: 1.65;
    margin-bottom: 30px;
    max-width: 520px;
}
.hf-hero-sub strong { color: var(--main-color); font-weight: 800; }

.hf-hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 32px;
}
.hf-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--main-color) 0%, var(--main-color-dark) 100%);
    color: #fff !important;
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 12px 28px rgba(var(--main-color-rgb), 0.40);
    transition: all .25s cubic-bezier(.2,.8,.2,1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
}
.hf-cta-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.20) 0%, transparent 100%);
    opacity: 0;
    transition: opacity .25s ease;
}
.hf-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(var(--main-color-rgb), 0.55);
    color: #fff !important;
}
.hf-cta-primary:hover::before { opacity: 1; }
.hf-cta-primary .hf-cta-arrow {
    transition: transform .25s ease;
}
.hf-cta-primary:hover .hf-cta-arrow { transform: translateX(4px); }

.hf-cta-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    border-radius: 14px;
    background: rgba(255,255,255,0.08);
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    border: 1px solid rgba(255,255,255,0.18);
    transition: all .25s ease;
    text-decoration: none;
}
.hf-cta-ghost:hover {
    background: rgba(255,255,255,0.16);
    border-color: rgba(var(--main-color-rgb), 0.50);
    color: #fff !important;
    transform: translateY(-2px);
}

/* Trust row */
.hf-hero-trust-row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    padding-top: 18px;
    border-top: 1px dashed rgba(255,255,255,0.12);
}
.hf-trust-avatars { display: flex; }
.hf-trust-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--main-color) 0%, var(--main-color-dark) 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #0F1E3C;
    margin-left: -10px;
}
.hf-trust-av:first-child { margin-left: 0; }
.hf-av-2 { background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%); }
.hf-av-3 { background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%); }
.hf-av-4 { background: rgba(255,255,255,0.18); color: var(--main-color); }
.hf-hero-trust-row strong {
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    display: block;
}
.hf-hero-trust-row span {
    color: rgba(255,255,255,0.65);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.hf-trust-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.30);
    padding: 6px 12px;
    border-radius: 30px;
    margin-left: auto;
}
.hf-trust-rating i { color: #f59e0b; font-size: 11px; }
.hf-trust-rating span {
    color: #fcd34d !important;
    font-weight: 800 !important;
    font-size: 13px !important;
    margin-left: 4px;
    text-transform: none !important;
}

/* RIGHT — floating visual column */
.hf-hero-visual-col {
    position: relative;
    min-height: 380px;
}

.hf-float-card {
    position: absolute;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    backdrop-filter: blur(14px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.40);
}

/* Main earnings card (center-ish) */
.hf-float-main {
    color: var(--main-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    padding: 24px 26px;
    animation: hf-float-y 5s ease-in-out infinite;
    z-index: 2;
}
.hf-float-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.hf-float-label {
    color: rgba(255,255,255,0.60);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    font-weight: 700;
}
.hf-float-amount {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
}
.hf-float-amount small {
    font-size: 14px;
    color: var(--main-color);
    font-weight: 700;
    margin-left: 4px;
}
.hf-float-chart {
    height: 50px;
    margin: 14px 0 10px;
    color: var(--main-color);
}
.hf-float-chart svg { width: 100%; height: 100%; }
.hf-float-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.65);
    font-size: 12px;
}
.hf-trend-up {
    background: rgba(16,185,129,0.18);
    border: 1px solid rgba(16,185,129,0.40);
    color: #6ee7b7;
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 11px;
}

/* Mini cards (top-left + bottom-right of main) */
.hf-float-mini {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    width: 180px;
    z-index: 3;
}
.hf-float-mini i {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--main-color) 0%, var(--main-color-dark) 100%);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
    box-shadow: 0 6px 16px rgba(var(--main-color-rgb), 0.35);
    flex-shrink: 0;
}
.hf-float-mini strong {
    display: block;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}
.hf-float-mini span {
    color: rgba(255,255,255,0.60);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}
.hf-float-tl {
    top: 10px;
    left: -10px;
    animation: hf-float-y 6s ease-in-out infinite;
    animation-delay: -2s;
}
.hf-float-br {
    bottom: 30px;
    right: -10px;
    animation: hf-float-y 6s ease-in-out infinite;
    animation-delay: -4s;
}

/* Activity pill */
.hf-float-activity {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0,0,0,0.65);
    border: 1px solid rgba(var(--main-color-rgb), 0.40);
    border-radius: 30px;
    padding: 10px 18px;
    backdrop-filter: blur(8px);
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.40);
    z-index: 4;
    white-space: nowrap;
}
.hf-float-activity strong { color: #fff; font-weight: 800; margin-right: 4px; }
.hf-float-activity em {
    color: var(--main-color);
    font-weight: 800;
    font-style: normal;
    margin-left: 4px;
}

@keyframes hf-float-y {
    0%, 100% { transform: translate(-50%, -50%) translateY(0); }
    50%      { transform: translate(-50%, -50%) translateY(-12px); }
}
.hf-float-tl, .hf-float-br {
    /* override the centered transform */
    transform: translate(0, 0) !important;
}
@keyframes hf-float-yy {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}
.hf-float-tl { animation-name: hf-float-yy; }
.hf-float-br { animation-name: hf-float-yy; }

/* Live dot */
.hf-live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16,185,129,0.7);
    animation: hf-pulse 1.4s ease-in-out infinite;
    flex-shrink: 0;
    display: inline-block;
}
@keyframes hf-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.7); }
    50%      { box-shadow: 0 0 0 12px rgba(16,185,129,0); }
}

/* Bottom trust badges */
.hf-hero-badges {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: center;
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px dashed rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.65);
    font-size: 13px;
    font-weight: 600;
}
.hf-hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.hf-hero-badges i { color: var(--main-color); font-size: 15px; }

/* Mobile responsive */
@media (max-width: 767px) {
    .hf-hero-title { font-size: 36px !important; }
    .hf-hero-sub { font-size: 15px !important; }
    .hf-hero-visual-col { min-height: 320px; }
    .hf-float-main { width: 260px; padding: 18px 20px; }
    .hf-float-amount { font-size: 28px; }
    .hf-float-mini { width: 150px; padding: 10px 14px; }
    .hf-float-mini strong { font-size: 16px; }
    .hf-float-activity { font-size: 11px; padding: 8px 14px; }
    .hf-trust-rating { margin-left: 0; }
}
@media (max-width: 575px) {
    .hf-hero { padding: 30px 18px; }
    .hf-hero-title { font-size: 28px !important; }
    .hf-float-tl { display: none; }
    .hf-float-br { display: none; }
}

/* =============================================================
   LEGACY .hyip-default-banner (kept for safety, may not render)
   ============================================================= */
.hyip-default-banner {
    max-width: 920px;
    margin-top: 40px;
    padding: 32px 36px;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(var(--main-color-rgb), 0.20);
    border-radius: 22px;
    box-shadow: 0 18px 48px rgba(15,30,60,0.18);
    backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}
.hyip-default-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--main-color) 0%, var(--main-color-dark) 100%);
}

/* CTAs */
.hyip-default-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}
.hyip-cta-primary,
.hyip-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    transition: all .25s ease;
    text-decoration: none;
}
.hyip-cta-primary {
    background: linear-gradient(135deg, var(--main-color) 0%, var(--main-color-dark) 100%);
    color: #fff !important;
    box-shadow: 0 8px 22px rgba(var(--main-color-rgb), 0.35);
}
.hyip-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(var(--main-color-rgb), 0.45);
    color: #fff !important;
}
.hyip-cta-secondary {
    background: rgba(var(--main-color-rgb), 0.10);
    color: var(--main-color) !important;
    border: 1px solid rgba(var(--main-color-rgb), 0.30);
}
.hyip-cta-secondary:hover {
    background: var(--main-color);
    color: #fff !important;
    transform: translateY(-3px);
}

/* Stats row */
.hyip-default-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 22px;
    padding: 18px;
    background: linear-gradient(135deg, rgba(var(--main-color-rgb), 0.06) 0%, transparent 100%);
    border-radius: 14px;
    border: 1px dashed rgba(var(--main-color-rgb), 0.22);
}
.hyip-stat-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
}
.hyip-stat-box > i {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--main-color) 0%, var(--main-color-dark) 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(var(--main-color-rgb), 0.30);
}
.hyip-stat-box strong {
    display: block;
    color: var(--h-color, #0F1E3C);
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}
.hyip-stat-box span {
    display: block;
    color: #64748b;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
    margin-top: 3px;
}

/* Trust badges row */
.hyip-default-trust {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    padding-top: 18px;
    border-top: 1px dashed rgba(var(--main-color-rgb), 0.20);
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}
.hyip-default-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.hyip-default-trust i {
    color: var(--main-color);
    font-size: 15px;
}

@media (max-width: 767px) {
    .hyip-default-banner { padding: 22px; }
    .hyip-default-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; padding: 12px; }
    .hyip-stat-box strong { font-size: 17px; }
    .hyip-cta-primary, .hyip-cta-secondary { padding: 12px 20px; font-size: 14px; }
}
@media (max-width: 480px) {
    .hyip-default-stats { grid-template-columns: 1fr; }
}
