/* tech-override.css — MINIMAL: only theme toggle + emoji avatars */

/* ===== LIGHT THEME VARIABLES (only activated when user clicks toggle) ===== */
[data-theme="light"] {
    background-color: #f4f4f6;
    color: #111;
}
[data-theme="light"] body,
[data-theme="light"] section,
[data-theme="light"] .gray-bg,
[data-theme="light"] #nav-wrapper,
[data-theme="light"] header#main-header,
[data-theme="light"] footer#main-footer,
[data-theme="light"] .breaking,
[data-theme="light"] .color-overlay {
    background-color: #f4f4f6 !important;
    background-image: none !important;
    color: #111 !important;
}
[data-theme="light"] h1, [data-theme="light"] h2,
[data-theme="light"] h3, [data-theme="light"] h4,
[data-theme="light"] h5, [data-theme="light"] h6,
[data-theme="light"] p, [data-theme="light"] li,
[data-theme="light"] a, [data-theme="light"] span {
    color: #111;
}
[data-theme="light"] a:hover {
    color: #0066cc;
}
[data-theme="light"] .scammer-desc,
[data-theme="light"] .scammer-name {
    color: #111 !important;
}

/* ===== THEME TOGGLE BUTTON ===== */
.theme-toggle-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ccc;
    padding: 5px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    line-height: 1;
    margin-right: 10px;
    margin-top: 7px;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}
.theme-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    transform: translateY(-1px);
}

[data-theme="light"] .theme-toggle-btn {
    background: rgba(0, 0, 0, 0.07);
    border-color: rgba(0, 0, 0, 0.2);
    color: #444;
}
[data-theme="light"] .theme-toggle-btn:hover {
    background: rgba(0, 0, 0, 0.12);
    color: #000;
}

/* ===== EMOJI SCAMMER AVATARS ===== */
.scammer-emoji-avatar {
    width: 110px !important;
    height: 110px !important;
    border-radius: 50% !important;
    border: 3px solid #ff3b30 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 52px !important;
    background: rgba(255, 59, 48, 0.08) !important;
    transition: all 0.3s ease !important;
}
.scammer-card:hover .scammer-emoji-avatar {
    border-color: #ff9500 !important;
    background: rgba(255, 149, 0, 0.12) !important;
    transform: scale(1.05);
}

/* ===== PARTNERS REFERRAL PROGRAM BACKGROUND OVERRIDES ===== */
[data-theme="light"] #subscribe-section {
    background: url('../images/stocks/dubai-marina.jpg') no-repeat center center !important;
    background-size: cover !important;
}
[data-theme="light"] #subscribe-section .color-overlay {
    background: rgba(255, 255, 255, 0.85) !important;
}
[data-theme="light"] #subscribe-section h4,
[data-theme="light"] #subscribe-section p {
    color: #111 !important;
}

/* ===== HERO SECTION DUBAI BACKGROUND ===== */
#hero {
    background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url('../images/stocks/dubai-downtown.jpg') no-repeat center center fixed !important;
    background-size: cover !important;
}

[data-theme="light"] #hero {
    background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('../images/stocks/dubai-downtown.jpg') no-repeat center center fixed !important;
    background-size: cover !important;
}

/* ===== HERO SECTION LIGHT THEME TYPOGRAPHY & COLORS ===== */
[data-theme="light"] #hero {
    font-family: 'Outfit', sans-serif !important;
}
[data-theme="light"] #hero h1,
[data-theme="light"] #hero h1.animated-headline,
[data-theme="light"] #hero h1.animated-headline b {
    font-family: 'Outfit', sans-serif !important;
    color: #0f172a !important;
    font-weight: 800 !important;
    text-shadow: none !important;
}
/* Specifically color rotating words in brand blue so they pop */
[data-theme="light"] #hero h1.animated-headline b {
    color: #19a9e5 !important;
}
[data-theme="light"] #hero p.lead {
    font-family: 'Outfit', sans-serif !important;
    color: #19a9e5 !important;
    font-weight: 600 !important;
    text-shadow: none !important;
    letter-spacing: 0.15em;
}
[data-theme="light"] #hero p.sub-lead {
    font-family: 'Outfit', sans-serif !important;
    color: #334155 !important;
    font-weight: 400 !important;
    text-shadow: none !important;
    line-height: 1.6;
}
[data-theme="light"] #hero a.cta-stroke {
    border-color: #19a9e5 !important;
    color: #19a9e5 !important;
}
[data-theme="light"] #hero a.cta-stroke:hover {
    background-color: #19a9e5 !important;
    color: #fff !important;
}
[data-theme="light"] #hero .scroll-link {
    color: #0f172a !important;
}

/* ===== SHRINK PAIN POINTS (RISK LANDSCAPE) BLOCK ===== */
#pain-points {
    padding: 40px 0 !important;
}
#pain-points .section-heading {
    margin-top: 10px !important;
    margin-bottom: 15px !important;
    font-size: 28px !important;
}
#pain-points .sub-lead {
    font-size: 16px !important;
    margin-bottom: 0 !important;
}

/* ===== DYNAMIC TOAST NOTIFICATIONS ===== */
#tp-toast-container {
    position: fixed;
    top: 80px; /* offset for navigation menu */
    right: 20px;
    z-index: 999999;
    width: 360px;
    max-width: calc(100vw - 40px);
    pointer-events: none;
}

@media (max-width: 767px) {
    #tp-toast-container {
        top: 70px;
        right: 10px;
        left: 10px;
        width: auto;
        max-width: none;
    }
}

.tp-toast {
    position: relative;
    margin-bottom: 15px;
    padding: 16px 20px;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    pointer-events: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

/* Entry Animation Class */
.tp-toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* Exit Animation Class */
.tp-toast.hide {
    transform: translateY(-30px);
    opacity: 0;
}

/* Dark Theme Toast (Default) */
.tp-toast {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(239, 68, 68, 0.4);
    box-shadow: 0 10px 35px rgba(239, 68, 68, 0.2);
    color: #fff;
}

/* Light Theme Toast Override */
[data-theme="light"] .tp-toast {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(239, 68, 68, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    color: #0f172a;
}

/* Toast Header */
.tp-toast-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #ef4444;
}

.tp-toast-title-row {
    display: flex;
    align-items: center;
}

/* Pulsing Red Dot */
.tp-toast-dot {
    width: 8px;
    height: 8px;
    background-color: #ef4444;
    border-radius: 50%;
    margin-right: 8px;
    display: inline-block;
    animation: tp-pulse 1.5s infinite;
}

@keyframes tp-pulse {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 5px rgba(239, 68, 68, 0);
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.tp-toast-close {
    background: none;
    border: none;
    color: #94a3b8;
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s;
}
.tp-toast-close:hover {
    color: #ef4444;
}

[data-theme="light"] .tp-toast-close {
    color: #64748b;
}

/* Toast Content */
.tp-toast-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 6px 0;
    line-height: 1.3;
}

.tp-toast-message {
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    color: #94a3b8;
}

[data-theme="light"] .tp-toast-message {
    color: #475569;
}

/* ===== EXPERT CAPABILITIES SECTION FLEXBOX GRID & GLOW EFFECT ===== */
.features-grid-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    justify-content: center;
}

.features-grid-row .the-feature {
    float: none !important;
    display: flex;
    margin-bottom: 30px !important;
    padding: 15px !important;
    background: transparent !important;
}

/* Ensure the cards themselves stretch to equal height */
.features-grid-row .the-feature a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 40px 30px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-decoration: none !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Card titles and paragraphs formatting */
.features-grid-row .the-feature a .feature-title {
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    margin-top: 0 !important;
    margin-bottom: 15px !important;
    transition: color 0.3s ease;
}

.features-grid-row .the-feature a p {
    color: #a0aec0 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin-bottom: 0 !important;
    transition: color 0.3s ease;
}

/* Unified Icon Badge Style (placed symmetrically, centering horizontally) */
.features-grid-row .the-feature .feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 18px; /* Squircle */
    font-size: 30px;
    margin: 0 auto 24px auto !important;
    background: rgba(25, 169, 229, 0.06) !important;
    border: 1px solid rgba(25, 169, 229, 0.18) !important;
    color: #19a9e5 !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 0 0 rgba(25, 169, 229, 0);
}

/* ===== HOVER EFFECT: GLOWING CARD & ICON BADGE ===== */
.features-grid-row .the-feature a:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(25, 169, 229, 0.3) !important;
    box-shadow: 0 20px 45px rgba(25, 169, 229, 0.12), 0 0 0 1px rgba(25, 169, 229, 0.15) !important;
}

.features-grid-row .the-feature a:hover .feature-title {
    color: #19a9e5 !important;
}

.features-grid-row .the-feature a:hover p {
    color: #cbd5e0 !important;
}

.features-grid-row .the-feature a:hover .feature-icon {
    background: rgba(25, 169, 229, 0.15) !important;
    border-color: #19a9e5 !important;
    color: #ffffff !important;
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(25, 169, 229, 0.65), inset 0 0 10px rgba(25, 169, 229, 0.35) !important;
}

/* ===== LIGHT THEME ADJUSTMENTS ===== */
[data-theme="light"] .features-grid-row .the-feature a {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
}

[data-theme="light"] .features-grid-row .the-feature a .feature-title {
    color: #0f172a !important;
}

[data-theme="light"] .features-grid-row .the-feature a p {
    color: #475569 !important;
}

[data-theme="light"] .features-grid-row .the-feature .feature-icon {
    background: rgba(25, 169, 229, 0.08) !important;
    border-color: rgba(25, 169, 229, 0.22) !important;
}

[data-theme="light"] .features-grid-row .the-feature a:hover {
    background: #ffffff !important;
    border-color: rgba(25, 169, 229, 0.3) !important;
    box-shadow: 0 20px 45px rgba(25, 169, 229, 0.08), 0 0 0 1px rgba(25, 169, 229, 0.15) !important;
}

[data-theme="light"] .features-grid-row .the-feature a:hover p {
    color: #334155 !important;
}

[data-theme="light"] .features-grid-row .the-feature a:hover .feature-icon {
    color: #ffffff !important;
}


