/**
 * Clickify Landing Page Design Facelift Stylesheet
 * Strictly targets Clickify theme components with modern aesthetics
 */

/* ==========================================================================
   1. Dotted Grids & Background overlays
   ========================================================================== */
.banner-area.banner-style-two,
.system-work-section,
.subscriptions-section,
.trusted-user-section {
    position: relative;
    overflow: hidden;
}

.banner-area.banner-style-two::before,
.system-work-section::before,
.subscriptions-section::before,
.trusted-user-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(86, 58, 239, 0.19) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}

.benefits-section-two,
.why-choose-area {
    position: relative;
    overflow: hidden;
}

.benefits-section-two::before,
.why-choose-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.18) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}

/* ==========================================================================
   2. Sticky Header & Menu Links Touch-up
   ========================================================================== */
/* Frosted Glass Sticky Header */
.active-sticky {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(86, 58, 239, 0.08) !important;
    box-shadow: 0 10px 30px rgba(86, 58, 239, 0.05) !important;
}

.dark-theme .active-sticky {
    background: rgba(20, 20, 30, 0.88) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

/* Nav Menu Underline Slide Animation */
.td-main-menu ul li {
    position: relative;
}

.td-main-menu ul li a {
    position: relative;
    padding-bottom: 4px;
}

.td-main-menu ul li a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, #FC5D19, #563AEF);
    transform-origin: bottom right;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.td-main-menu ul li a:hover::after,
.td-main-menu ul li a.active::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Header Login / Register Button redesigned as a premium Dollar Bill */
.dollar-bill-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding: 6px 20px 6px 16px !important;
    height: 44px;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.12) 0%, transparent 80%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 4px),
        repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 4px),
        linear-gradient(135deg, #563AEF 0%, #FC5D19 100%) !important; /* Branded color scheme */
    border: 2px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 24px 6px 24px 6px / 14px 22px 14px 22px !important; /* Wavy flowing flag contour shape */
    color: #ffffff !important;
    font-family: 'Playfair Display', 'Georgia', serif;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(86, 58, 239, 0.25), inset 0 0 0 1px rgba(255, 255, 255, 0.15) !important;
    animation: bill-pulse 2.2s infinite ease-in-out; /* Attention-getting pulse glow */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

/* Pulse keyframes for light mode using brand purple */
@keyframes bill-pulse {
    0% {
        box-shadow: 0 4px 15px rgba(86, 58, 239, 0.25), 0 0 0 0 rgba(86, 58, 239, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.15) !important;
    }
    70% {
        box-shadow: 0 4px 15px rgba(86, 58, 239, 0.25), 0 0 0 8px rgba(86, 58, 239, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.15) !important;
    }
    100% {
        box-shadow: 0 4px 15px rgba(86, 58, 239, 0.25), 0 0 0 0 rgba(86, 58, 239, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.15) !important;
    }
}

/* Outer/Inner border simulation matching the flag wave */
.dollar-bill-btn::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    right: 3px;
    bottom: 3px;
    border: 1px dashed rgba(255, 255, 255, 0.4);
    border-radius: 21px 4px 21px 4px / 11px 18px 11px 18px;
    pointer-events: none;
    z-index: 1;
    transition: border-color 0.3s ease;
}

/* Holographic sweep sheen on hover */
.dollar-bill-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -150%;
    width: 60%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    transition: left 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 3;
    pointer-events: none;
}

.dollar-bill-btn:hover::after {
    left: 150%;
}

.dollar-bill-btn:hover {
    transform: translateY(-3px) scale(1.03) !important;
    border-color: #ffd700 !important; /* Gold border glow on hover! */
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 80%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.04) 0px, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 4px),
        repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.04) 0px, rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 4px),
        linear-gradient(135deg, #FC5D19 0%, #563AEF 100%) !important; /* Inverts gradient on hover */
    box-shadow: 0 10px 25px rgba(86, 58, 239, 0.35), 0 0 14px rgba(255, 215, 0, 0.45) !important;
    animation: none; /* Pause pulse on hover */
}

/* Corner value styles */
.dollar-bill-btn .corner-val {
    position: absolute;
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 9px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1;
    pointer-events: none;
    z-index: 2;
    transition: color 0.3s ease;
}

.dollar-bill-btn .val-tl { top: 5px; left: 8px; }
.dollar-bill-btn .val-tr { top: 5px; right: 8px; }
.dollar-bill-btn .val-bl { bottom: 5px; left: 8px; }
.dollar-bill-btn .val-br { bottom: 5px; right: 8px; }

/* Medallion Oval Portrait */
.dollar-bill-btn .bill-portrait {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 30px;
    border-radius: 50% / 50%; /* Oval medallion */
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
    z-index: 2;
    transition: all 0.3s ease;
}

.dollar-bill-btn .bill-portrait i {
    font-size: 11px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.dollar-bill-btn:hover .bill-portrait {
    border-color: #ffd700;
    background: rgba(255, 255, 255, 0.25);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.15), 0 0 5px rgba(255, 215, 0, 0.3);
}

.dollar-bill-btn:hover .bill-portrait i {
    transform: scale(1.1);
}

/* Treasury Seal Stamp */
.dollar-bill-btn .bill-seal {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
    transition: all 0.3s ease;
}

.dollar-bill-btn:hover .bill-seal {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.5);
}

/* Typography styles for main readable text */
.dollar-bill-btn .bill-main-text {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-size: 13px !important; /* Enlarged for maximum visibility */
    font-weight: 800;
    color: #ffffff !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.1;
    z-index: 2;
    transition: color 0.3s ease;
}

.dollar-bill-btn:hover .bill-main-text {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* ==========================================
   Dark Theme Overrides for Dollar Bill Button
   ========================================== */
.dark-theme .dollar-bill-btn {
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 80%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 4px),
        repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 1px, transparent 1px, transparent 4px),
        linear-gradient(135deg, #301ca1 0%, #a13204 100%) !important; /* Slightly darker glow for dark mode compatibility */
    border-color: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.45), inset 0 0 0 1px rgba(255, 255, 255, 0.04) !important;
    animation: bill-pulse-dark 2.2s infinite ease-in-out;
}

/* Pulse keyframes for dark mode */
@keyframes bill-pulse-dark {
    0% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.45), 0 0 0 0 rgba(86, 58, 239, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.04) !important;
    }
    70% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.45), 0 0 0 8px rgba(86, 58, 239, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.04) !important;
    }
    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.45), 0 0 0 0 rgba(86, 58, 239, 0), inset 0 0 0 1px rgba(255, 255, 255, 0.04) !important;
    }
}

.dark-theme .dollar-bill-btn::before {
    border-color: rgba(255, 255, 255, 0.25);
}

.dark-theme .dollar-bill-btn .corner-val {
    color: rgba(255, 255, 255, 0.8) !important;
}

.dark-theme .dollar-bill-btn .bill-portrait {
    background: rgba(0, 0, 0, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.5);
}

.dark-theme .dollar-bill-btn .bill-portrait i {
    color: #ffffff !important;
}

.dark-theme .dollar-bill-btn .bill-main-text {
    color: #ffffff !important;
}

.dark-theme .dollar-bill-btn:hover .bill-main-text {
    color: #ffffff !important;
}

.dark-theme .dollar-bill-btn .bill-seal {
    border-color: rgba(255, 255, 255, 0.25) !important;
    background: rgba(255, 255, 255, 0.04) !important;
}

.dark-theme .dollar-bill-btn:hover {
    border-color: #ffd700 !important;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 80%),
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 4px),
        repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 4px),
        linear-gradient(135deg, #a13204 0%, #301ca1 100%) !important; /* Inverts gradient on hover */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 14px rgba(255, 215, 0, 0.45) !important;
    animation: none; /* Pause pulse on hover */
}

.dark-theme .dollar-bill-btn:hover .bill-portrait {
    border-color: #ffd700 !important;
}

/* ==========================================================================
   3. Hero Title, floating illustrations & background shapes
   ========================================================================== */
/* Hero Gradient Title */
.banner-title.motion-hero-title {
    font-size: clamp(38px, 4.2vw, 68px);
    font-weight: 800;
    background: linear-gradient(135deg, #FC5D19 0%, #FF8112 50%, #563AEF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.15;
    margin-bottom: 25px;
}

/* Hero Image floating glow and float animation */
.banner-thumb-wrapper.style-two {
    position: relative;
    z-index: 2;
    overflow: visible !important;
    perspective: 1000px;
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
}

.banner-thumb.motion-hero-img {
    position: absolute;
    overflow: visible !important;
    top: 44.5%;
    left: 0.5%;
    width: 99%;
    height: 60.5%;
    padding: 0;
    box-sizing: border-box;
}

.banner-thumb-wrapper.style-two::before {
    content: '';
    position: absolute;
    top: 5%;
    left: 5%;
    right: 5%;
    bottom: 5%;
    background: radial-gradient(circle, rgba(252, 93, 25, 0.3) 0%, rgba(86, 58, 239, 0.25) 50%, transparent 100%);
    filter: blur(65px);
    z-index: -2;
    animation: pulse-glow 8s infinite alternate ease-in-out;
    pointer-events: none;
}

@keyframes pulse-image-scale {
    0% { transform: scale(1); }
    50% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

.motion-hero-img img {
    animation: pulse-image-scale 4s infinite ease-in-out;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px; /* matches the lower part shape perfectly without extra spacing */
}

/* Hero Background Triangle Shape rotation & shadow */
.banner-thumb-wrapper.style-two .triangle-shapes {
    position: absolute;
    top: 2%;
    left: -5%;
    width: 100%;
    height: auto;
    z-index: -1;
    /* animation: rotate-float 24s infinite linear; */ /* Commented out rotation as requested */
    filter: drop-shadow(0 20px 40px rgba(252, 93, 25, 0.25)) hue-rotate(15deg);
    opacity: 0.9;
    transform-style: preserve-3d;
}

.clapper-top-stick {
    transform-origin: left;
    transform: rotate(-5deg);
    animation: clapper-snap 7s infinite ease-out;
}

@keyframes clapper-snap {
    0%, 65%, 100% { transform: rotate(-15deg); }
    82% { transform: rotate(-2deg); }
    86% { transform: rotate(-15deg); }
    88% { transform: rotate(-2deg); }
    92% { transform: rotate(-15deg); }
}

@keyframes rotate-float {
    0% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-25px) rotate(180deg) scale(1.05); }
    100% { transform: translateY(0) rotate(360deg) scale(1); }
}

@keyframes pulse-glow {
    0% { transform: scale(0.85); opacity: 0.6; }
    100% { transform: scale(1.2); opacity: 1; }
}

@keyframes float-y {
    0%, 100% { transform: translateY(0) rotateX(0deg); }
    50% { transform: translateY(-15px) rotateX(2deg); }
}

/* Floating Badges Styling - Desktop (40% smaller & brought inward to prevent side cutoff) */
.premium-float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 7px 12px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    z-index: 99 !important;
    transition: all 0.3s ease;
    cursor: grab;
}

.premium-float-badge:active {
    cursor: grabbing;
}

.dark-theme .premium-float-badge {
    background: rgba(20, 20, 30, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    color: #ffffff;
}

.premium-float-badge:hover {
    transform: scale(1.05) translateY(-3px) !important;
    box-shadow: 0 10px 25px rgba(252, 93, 25, 0.15);
}

.badge-roi {
    top: 10%;
    right: 5%;
    left: auto;
    bottom: auto;
    animation: badge-drift-1 5s infinite alternate ease-in-out;
}

.badge-security {
    top: 25%;
    right: auto;
    left: 10%;
    bottom: auto;
    animation: badge-drift-2 6s infinite alternate ease-in-out;
}

.badge-support {
    bottom: 10%;
    left: 80px;
    animation: badge-drift-3 5.5s infinite alternate ease-in-out;
}

.badge-surveys {
    top: 55%;
    right: 45%;
    left: auto;
    bottom: auto;
    animation: badge-drift-1 5.5s infinite alternate ease-in-out;
}

.premium-float-badge .badge-icon {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #FC5D19, #FF8112);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(252, 93, 25, 0.3);
}

.premium-float-badge .badge-icon svg {
    width: 12px;
    height: 12px;
    stroke-width: 2.5;
}

.premium-float-badge .badge-text {
    display: flex;
    flex-direction: column;
}

.premium-float-badge .badge-num {
    font-size: 12px;
    font-weight: 800;
    line-height: 1.1;
    color: #0c0c14;
}

.dark-theme .premium-float-badge .badge-num {
    color: #ffffff;
}

.premium-float-badge .badge-label {
    font-size: 9px;
    font-weight: 500;
    color: #5c5958;
}

.dark-theme .premium-float-badge .badge-label {
    color: #a0a0ab;
}

/* Mobile Responsiveness for Floating Badges */
@media (max-width: 767px) {
    .premium-float-badge {
        padding: 5px 8px;
        gap: 6px;
        border-radius: 8px;
    }
    .premium-float-badge .badge-icon {
        width: 18px;
        height: 18px;
    }
    .premium-float-badge .badge-icon svg {
        width: 10px;
        height: 10px;
    }
    .premium-float-badge .badge-num {
        font-size: 10px;
    }
    .premium-float-badge .badge-label {
        font-size: 8px;
    }
    .badge-roi {
        left: 25px;
    }
    .badge-security {
        right: 25px;
    }
    .badge-support {
        left: 35px;
    }
    .badge-surveys {
        right: 30px;
        top: 15px;
    }
}

@media (max-width: 480px) {
    .premium-float-badge {
        display: none !important;
    }
}

@keyframes badge-drift-1 {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-8px) rotate(-1deg); }
}

@keyframes badge-drift-2 {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-10px) rotate(1.5deg); }
}

@keyframes badge-drift-3 {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-7px) rotate(-1.5deg); }
}

/* Stagger floating banner shapes */
.banner-shapes .shape-one { animation: float-shape-1 7s infinite alternate ease-in-out; }
.banner-shapes .shape-two { animation: float-shape-2 9s infinite alternate ease-in-out; }
.banner-shapes .shape-three { animation: float-shape-3 8s infinite alternate ease-in-out; }
.banner-shapes .shape-four { animation: float-shape-4 10s infinite alternate ease-in-out; }
.banner-shapes .shape-five { animation: float-shape-5 11s infinite alternate ease-in-out; }
.banner-shapes .shape-six { animation: float-shape-6 6s infinite alternate ease-in-out; }

@keyframes float-shape-1 { 0% { transform: translate(0, 0); } 100% { transform: translate(-10px, 12px); } }
@keyframes float-shape-2 { 0% { transform: translate(0, 0) rotate(0deg); } 100% { transform: translate(12px, -8px) rotate(10deg); } }
@keyframes float-shape-3 { 0% { transform: translate(0, 0); } 100% { transform: translate(-8px, -12px); } }
@keyframes float-shape-4 { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(15px, 10px) scale(1.05); } }
@keyframes float-shape-5 { 0% { transform: translate(0, 0); } 100% { transform: translate(-15px, 8px); } }
@keyframes float-shape-6 { 0% { transform: translate(0, 0) rotate(0deg); } 100% { transform: translate(8px, 15px) rotate(-12deg); } }


/* ==========================================================================
   4. Benefits section card facelift
   ========================================================================== */
.benefits-item-two {
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 24px !important;
    padding: 35px 28px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.benefits-item-two:hover {
    transform: translateY(-8px) scale(1.02) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(252, 93, 25, 0.3) !important;
    box-shadow: 0 20px 45px rgba(252, 93, 25, 0.18) !important;
}

.benefits-item-two .icon span {
    width: 68px !important;
    height: 68px !important;
    border-radius: 18px !important;
    background: linear-gradient(135deg, rgba(252, 93, 25, 0.12), rgba(86, 58, 239, 0.12)) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease !important;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15) !important;
}

.benefits-item-two:hover .icon span {
    transform: rotate(8deg) scale(1.08) !important;
    background: linear-gradient(135deg, #FC5D19, #563AEF) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    box-shadow: 0 8px 20px rgba(252, 93, 25, 0.35) !important;
}

.benefits-item-two:hover .icon span img {
    filter: brightness(0) invert(1);
    transform: scale(1.05);
}

.benefits-item-two .content .title {
    font-size: 20px !important;
    font-weight: 700;
    margin-top: 15px;
    margin-bottom: 12px;
}


/* ==========================================================================
   5. Why choose us card facelift
   ========================================================================== */
.why-choose-timeline.motion-fade-up-item {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 20px !important;
    padding: 24px !important;
    margin-bottom: 24px !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    backdrop-filter: blur(10px);
}

.why-choose-timeline.motion-fade-up-item:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(252, 93, 25, 0.25) !important;
    transform: translateX(8px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.why-choose-timeline .timeline-icon span {
    background: linear-gradient(135deg, #FC5D19, #FF8112) !important;
    color: #ffffff !important;
    border-radius: 12px !important;
    width: 48px !important;
    height: 48px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(252, 93, 25, 0.25) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    transition: all 0.4s ease;
}

.why-choose-timeline:hover .timeline-icon span {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(252, 93, 25, 0.4);
}

.why-choose-thumb img {
    border-radius: 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}


/* ==========================================================================
   6. How it works card facelift
   ========================================================================== */
.system-work-item {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    border-radius: 24px !important;
    padding: 30px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.dark-theme .system-work-item {
    background: rgba(22, 22, 35, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}

.system-work-item:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 20px 40px rgba(86, 58, 239, 0.06) !important;
    border-color: rgba(86, 58, 239, 0.12) !important;
}

.dark-theme .system-work-item:hover {
    border-color: rgba(252, 93, 25, 0.25) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}

.system-work-item .system-work-content-wrap .number span {
    background: linear-gradient(135deg, #563AEF, #FC5D19) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 15px rgba(86, 58, 239, 0.25) !important;
    border-radius: 14px !important;
    font-weight: 800;
    width: 50px !important;
    height: 50px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

.dark-theme .system-work-item .system-work-content-wrap .number span {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Dark background for the whole How It Works section */
.dark-theme .system-work-section {
    background-color: #121215 !important;
}

/* Image border radius for each step icon */
.system-work-item .system-work-tumb img {
    border-radius: 20px !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Step title stays WHITE in dark mode */
.dark-theme .system-work-item .system-work-content-wrap .content .title {
    color: #ffffff !important;
}

/* ==========================================================================
   7. Subscriptions plan card facelift
   ========================================================================== */
.pricing-item-two {
    position: relative;
    background-color: #ffffff !important;
    border: 1px solid rgba(12, 12, 20, 0.05) !important;
    border-radius: 36px 16px 36px 16px !important; /* Premium Asymmetric Shape */
    padding: 40px 30px 45px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.dark-theme .pricing-item-two {
    background-color: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.pricing-item-two:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 25px 50px rgba(86, 58, 239, 0.08) !important;
    border-color: rgba(86, 58, 239, 0.15) !important;
}

.pricing-item-two.popular-paln {
    background: linear-gradient(145deg, #FC5D19 0%, #FF8112 100%) !important;
    border: none !important;
    box-shadow: 0 15px 35px rgba(252, 93, 25, 0.25) !important;
    color: #ffffff;
}

.pricing-item-two.popular-paln:hover {
    box-shadow: 0 25px 55px rgba(252, 93, 25, 0.35) !important;
    transform: translateY(-10px) !important;
}

.pricing-item-two.popular-paln .price-value strong,
.pricing-item-two.popular-paln .price-value sub,
.pricing-item-two.popular-paln .plan-content .item-title,
.pricing-item-two.popular-paln .plan-content .description,
.pricing-item-two.popular-paln .list-item-text {
    color: #ffffff !important;
}

.pricing-item-two.popular-paln .list-item-icon svg * {
    stroke: #ffffff !important;
}

.pricing-item-two.popular-paln .price-btn .site-btn {
    background-color: #ffffff !important;
    color: #FC5D19 !important;
    font-weight: 700;
}

/* Float ROI Badge on Plans */
.plan-roi-badge {
    animation: roi-float 3s infinite ease-in-out;
}

@keyframes roi-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Pricing Icon List checks hover scale */
.pricing-item-two .icon-list li:hover .list-item-icon svg {
    transform: scale(1.15);
}


/* ==========================================================================
   8. Testimonials slider facelift
   ========================================================================== */
.trusted-slider-content-wrap {
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    background: #ffffff !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02) !important;
    border-radius: 24px !important;
}

.dark-theme .trusted-slider-content-wrap {
    background: rgba(255, 255, 255, 0.02) !important;
    border-color: rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2) !important;
}

.trusted-slider-content-wrap .trusted-slider-btn {
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(252, 93, 25, 0.1);
    transition: all 0.3s ease;
}

.trusted-slider-content-wrap .trusted-slider-btn:hover {
    background: #FC5D19;
    box-shadow: 0 6px 18px rgba(252, 93, 25, 0.3);
}

.trusted-slider-content-wrap .trusted-slider-btn:hover svg path {
    stroke: #ffffff;
}

.trusted-slider-content-wrap .quote-shape {
    opacity: 0.15;
    animation: bounce-y 4s infinite ease-in-out;
}

@keyframes bounce-y {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-8px); }
}

/* ==========================================================================
   9. Earning Counter Section (Fun Fact / Top Destination) Card Facelift
   ========================================================================== */
.earning-counter-item {
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.04) !important;
    border-radius: 24px !important;
    padding: 40px 30px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative;
    overflow: hidden;
}

.dark-theme .earning-counter-item {
    background: rgba(255, 255, 255, 0.03) !important;
    border-color: rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

.earning-counter-item::before {
    content: '' !important;
    position: absolute;
    height: 4px !important;
    width: 100% !important;
    background: linear-gradient(90deg, #FC5D19, #563AEF) !important;
    left: 0 !important;
    bottom: 0 !important;
    border-radius: 0 !important;
    transform: scaleX(0);
    transition: transform 0.4s ease !important;
    z-index: 2 !important;
}

.earning-counter-item:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 45px rgba(86, 58, 239, 0.08) !important;
    border-color: rgba(86, 58, 239, 0.12) !important;
}

.dark-theme .earning-counter-item:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3) !important;
    border-color: rgba(252, 93, 25, 0.2) !important;
}

.earning-counter-item:hover::before {
    transform: scaleX(1);
}

.earning-counter-item .icon {
    width: 68px !important;
    height: 68px !important;
    border-radius: 18px !important;
    background: linear-gradient(135deg, rgba(86, 58, 239, 0.08), rgba(252, 93, 25, 0.08)) !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px !important;
    border: 1px solid rgba(86, 58, 239, 0.12) !important;
    box-shadow: 0 4px 10px rgba(86, 58, 239, 0.03) !important;
    transition: all 0.4s ease !important;
}

.earning-counter-item:hover .icon {
    transform: scale(1.1) rotate(5deg) !important;
    background: linear-gradient(135deg, #563AEF, #FC5D19) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    box-shadow: 0 8px 20px rgba(86, 58, 239, 0.35) !important;
}

.earning-counter-item .icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: all 0.4s ease;
}

.earning-counter-item:hover .icon img {
    filter: brightness(0) invert(1) !important;
}

.earning-counter-item .content .title {
    font-size: 36px !important;
    font-weight: 800 !important;
    color: #0c0c14 !important;
    margin-bottom: 8px !important;
}

.dark-theme .earning-counter-item .content .title {
    color: #ffffff !important;
}

.earning-counter-item:hover .content .title,
.earning-counter-item:hover .content .title span.odometer {
    color: #563AEF !important;
    -webkit-text-fill-color: #563AEF !important;
    background: none !important;
}

.dark-theme .earning-counter-item:hover .content .title,
.dark-theme .earning-counter-item:hover .content .title span.odometer {
    color: #FC5D19 !important;
    -webkit-text-fill-color: #FC5D19 !important;
    background: none !important;
}

.earning-counter-item .content .description {
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #5c5958 !important;
}

.dark-theme .earning-counter-item .content .description {
    color: #a0a0ab !important;
}

.earning-counter-item:hover .content .description {
    color: #5c5958 !important;
}

.dark-theme .earning-counter-item:hover .content .description {
    color: #a0a0ab !important;
}

.earning-counter-item .shape {
    opacity: 0.1;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.earning-counter-item:hover .shape {
    opacity: 0.25;
    transform: scale(1.1);
}

/* ==========================================================================
   10. Refer Friends & Earn Section Facelift
   ========================================================================== */
.refer-friends-section {
    background-color: #143134 !important;
    position: relative;
    overflow: hidden;
}

.refer-friends-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}

.refer-friends-thumb img {
    border-radius: 24px !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.refer-friends-thumb-wrap:hover .refer-friends-thumb img {
    transform: scale(1.02) translateY(-8px) !important;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.4) !important;
    border-color: rgba(252, 93, 25, 0.3) !important;
}

.refer-friends-content .section-title-wrapper .section-title {
    font-size: clamp(32px, 3.5vw, 48px) !important;
    line-height: 1.25 !important;
    font-weight: 800 !important;
}

/* ==========================================================================
   11. Testimonials Section Avatar Touch-up
   ========================================================================== */
.trusted-slider-content .admin-item .admin-thumb img {
    border: 3px solid rgba(86, 58, 239, 0.1) !important;
    transition: all 0.3s ease !important;
}

.trusted-slider-content:hover .admin-item .admin-thumb img {
    border-color: #FC5D19 !important;
    transform: scale(1.08);
}

/* ==========================================================================
   12. FAQ Accordion Section Facelift
   ========================================================================== */
.faq-content-two .accordion-wrapper.site-faq .accordion .accordion-item {
    border: 1px solid rgba(12, 12, 20, 0.06) !important;
    border-radius: 20px !important;
    margin-bottom: 20px !important;
    background: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    overflow: hidden !important;
}

.dark-theme .faq-content-two .accordion-wrapper.site-faq .accordion .accordion-item {
    background: rgba(255, 255, 255, 0.03) !important;
    border-color: rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
}

.faq-content-two .accordion-wrapper.site-faq .accordion .accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(86, 58, 239, 0.06) !important;
    border-color: rgba(86, 58, 239, 0.15) !important;
}

.faq-content-two .accordion-wrapper.site-faq .accordion .accordion-button {
    background: #ffffff !important;
    color: #0c0c14 !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    padding: 24px 30px !important;
    transition: all 0.35s ease !important;
}

.dark-theme .faq-content-two .accordion-wrapper.site-faq .accordion .accordion-button {
    background: transparent !important;
    color: #ffffff !important;
}

.faq-content-two .accordion-wrapper.site-faq .accordion .accordion-button:not(.collapsed) {
    color: #563AEF !important;
    background: rgba(86, 58, 239, 0.03) !important;
    box-shadow: none !important;
}

.dark-theme .faq-content-two .accordion-wrapper.site-faq .accordion .accordion-button:not(.collapsed) {
    color: #FC5D19 !important;
    background: rgba(252, 93, 25, 0.05) !important;
}

.faq-content-two .accordion-wrapper.site-faq .accordion .accordion-body {
    padding: 0 30px 24px !important;
    background: #ffffff !important;
}

.dark-theme .faq-content-two .accordion-wrapper.site-faq .accordion .accordion-body,
.dark-theme .accordion-wrapper.site-faq .accordion .accordion-body {
    background-color: rgba(22, 22, 35, 0.95) !important;
}

.dark-theme .faq-content-two .accordion-wrapper.site-faq .accordion .accordion-body p,
.dark-theme .accordion-wrapper.site-faq .accordion .accordion-body p {
    color: #cbd5e1 !important;
}

.faq-content-two .accordion-wrapper.site-faq .accordion .accordion-button::after {
    color: #563AEF !important;
    font-weight: 800;
}

.dark-theme .faq-content-two .accordion-wrapper.site-faq .accordion .accordion-button::after {
    color: #FC5D19 !important;
}

/* Redesigned FAQ Image edge style with curved leaf shape & rotating border */
.faq-thumb-wrap {
    position: relative;
    display: inline-block;
    padding: 15px;
    overflow: visible !important;
}

.faq-thumb-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px dashed rgba(86, 58, 239, 0.25);
    border-radius: 125px 28px 125px 28px;
    z-index: -1;
    animation: rotate-border 25s infinite linear;
    pointer-events: none;
}

.dark-theme .faq-thumb-wrap::before {
    border-color: rgba(252, 93, 25, 0.25);
}

.faq-thumb img {
    border-radius: 120px 24px 120px 24px !important;
    box-shadow: 0 20px 45px rgba(86, 58, 239, 0.1) !important;
    border: 4px solid #ffffff;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.dark-theme .faq-thumb img {
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3) !important;
}

.faq-thumb-wrap:hover img {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 0 30px 60px rgba(86, 58, 239, 0.2) !important;
    border-color: rgba(252, 93, 25, 0.3);
}

@keyframes rotate-border {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==========================================================================
   13. Floating Middle Style Navbar for Desktop (8% Gap on Left & Right)
   ========================================================================== */
@media (min-width: 1200px) {
    .header-area.header-transparent {
        width: 84% !important;
        left: 8% !important;
        right: 8% !important;
        top: 20px !important;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.03);
        backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        padding: 10px 20px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
        margin: 0 auto;
    }
    
    .dark-theme .header-area.header-transparent {
        background: rgba(20, 20, 30, 0.5);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .header-area.header-transparent.active-sticky {
        width: 84% !important;
        left: 8% !important;
        right: 8% !important;
        top: 15px !important;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.85) !important;
        backdrop-filter: blur(20px) saturate(180%);
        border: 1px solid rgba(86, 58, 239, 0.1) !important;
        box-shadow: 0 10px 30px rgba(86, 58, 239, 0.06) !important;
        padding: 10px 20px !important;
    }
    
    .dark-theme .header-area.header-transparent.active-sticky {
        background: rgba(20, 20, 30, 0.88) !important;
        border-color: rgba(255, 255, 255, 0.08) !important;
    }
}

/* ==========================================================================
   14. Mobile Offcanvas / Navigation Facelift
   ========================================================================== */
.offcanvas-area {
    background: rgba(255, 255, 255, 0.88) !important;
    backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.05) !important;
    width: 320px !important;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.dark-theme .offcanvas-area {
    background: rgba(20, 20, 30, 0.88) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3) !important;
}

@media (max-width: 575px) {
    .offcanvas-area {
        width: calc(100% - 30px) !important;
        right: 15px !important;
        top: 15px !important;
        bottom: 15px !important;
        height: calc(100% - 30px) !important;
        border-radius: 24px !important;
        transform: translateX(calc(100% + 50px)) !important;
    }
    .offcanvas-area.info-open {
        transform: translateX(0) !important;
    }
}

/* Stagger Mobile Menu Items Slide-In */
.offcanvas-area .mobile-menu ul li {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.offcanvas-area.info-open .mobile-menu ul li {
    opacity: 1;
    transform: translateX(0);
}

.offcanvas-area.info-open .mobile-menu ul li:nth-child(1) { transition-delay: 0.1s; }
.offcanvas-area.info-open .mobile-menu ul li:nth-child(2) { transition-delay: 0.15s; }
.offcanvas-area.info-open .mobile-menu ul li:nth-child(3) { transition-delay: 0.2s; }
.offcanvas-area.info-open .mobile-menu ul li:nth-child(4) { transition-delay: 0.25s; }
.offcanvas-area.info-open .mobile-menu ul li:nth-child(5) { transition-delay: 0.3s; }
.offcanvas-area.info-open .mobile-menu ul li:nth-child(6) { transition-delay: 0.35s; }
.offcanvas-area.info-open .mobile-menu ul li:nth-child(7) { transition-delay: 0.4s; }
.offcanvas-area.info-open .mobile-menu ul li:nth-child(8) { transition-delay: 0.45s; }

/* Classy 2-line Hamburger Menu */
.toggle-bar-icon {
    display: flex;
    flex-direction: column;
    align-items: flex-end !important;
    justify-content: center;
    width: 26px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.toggle-bar-icon span {
    height: 2px !important;
    background: #ffffff !important;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: block;
    margin: 0;
}

.active-sticky .toggle-bar-icon span {
    background: #0c0c14 !important;
}

.dark-theme .toggle-bar-icon span {
    background: #ffffff !important;
}

.toggle-bar-icon span:nth-child(1) {
    width: 24px !important;
}

.toggle-bar-icon span:nth-child(2) {
    width: 15px !important;
    margin-top: 6px !important;
}

.toggle-bar-icon span:nth-child(3) {
    display: none !important;
}

.toggle-bar-icon:hover span:nth-child(2) {
    width: 24px !important;
}

/* Close Icon spin hover effect */
.offcanvas-close-icon {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    background: rgba(86, 58, 239, 0.08) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.offcanvas-close-icon:hover {
    transform: rotate(90deg) !important;
    background: rgba(252, 93, 25, 0.15) !important;
}

/* ==========================================================================
   15. Footer Facelift
   ========================================================================== */
.footer-secondary {
    background-color: #0c1a1b !important;
    position: relative;
    overflow: hidden;
    border-top: 4px solid;
    border-image: linear-gradient(90deg, #FC5D19, #563AEF) 1;
    padding-top: 90px !important;
}

.footer-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}

.footer-secondary .footer-widget-title h5 {
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-bottom: 25px !important;
    position: relative;
}

.footer-secondary .footer-widget-title h5::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #FC5D19;
}

.footer-secondary .footer-link ul li {
    margin-bottom: 12px;
}

.footer-secondary .footer-link ul li a {
    color: #a0a0ab !important;
    transition: all 0.3s ease !important;
    display: inline-block;
}

.footer-secondary .footer-link ul li a:hover {
    color: #FC5D19 !important;
    transform: translateX(4px) !important;
}

/* Contact Info styling */
.footer-secondary .footer-info-two ul li {
    margin-bottom: 18px;
}

.footer-secondary .footer-info-two ul li .footer-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-secondary .footer-info-two ul li .footer-info-item .footer-info-icon span {
    width: 32px !important;
    height: 32px !important;
    background: linear-gradient(135deg, rgba(252, 93, 25, 0.1), rgba(86, 58, 239, 0.1)) !important;
    border: 1px solid rgba(252, 93, 25, 0.2) !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 8px !important;
    color: #FC5D19 !important;
    font-size: 14px !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
}

.footer-secondary .footer-info-two ul li .footer-info-item .footer-info-text span a {
    color: #a0a0ab !important;
    transition: color 0.3s ease;
}

.footer-secondary .footer-info-two ul li .footer-info-item .footer-info-text span a:hover {
    color: #FC5D19 !important;
}

/* Newsletter Widget Card */
.footer-secondary .footer-newslatter {
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    backdrop-filter: blur(12px);
    border-radius: 24px !important;
    padding: 35px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2) !important;
}

.footer-secondary .footer-newslatter .content .title {
    color: #ffffff !important;
    font-weight: 700 !important;
}

.footer-secondary .footer-newslatter .content .description {
    color: #a0a0ab !important;
}

.footer-secondary .footer-newslatter .content .site-btn {
    box-shadow: 0 4px 14px rgba(252, 93, 25, 0.3) !important;
    border-radius: 12px !important;
    font-weight: 700;
}

.footer-secondary .footer-newslatter .content .site-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(252, 93, 25, 0.45) !important;
}

/* Copyright & Social Icons */
.footer-secondary .footer-copyright-two {
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    padding: 30px 0 !important;
    margin-top: 60px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-secondary .footer-copyright-two .footer-copyright-left p {
    color: #7d8b8b !important;
}

.footer-secondary .footer-copyright-two .footer-social {
    display: flex;
    gap: 12px;
}

.footer-secondary .footer-copyright-two .footer-social a {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #a0a0ab !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    width: 36px !important;
    height: 36px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
}

.footer-secondary .footer-copyright-two .footer-social a:hover {
    background: linear-gradient(135deg, #FC5D19, #563AEF) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(252, 93, 25, 0.4) !important;
    transform: translateY(-3px) !important;
    border-color: transparent !important;
}

/* ==========================================================================
   Mobile Responsiveness Fixes
   ========================================================================== */

@media (max-width: 991px) {
    /* 1. How it works section texts medium & mobile responsive */
    .system-work-item, 
    .system-work-item:nth-child(even) {
        flex-direction: column !important;
    }
    .system-work-item .system-work-content-wrap, 
    .system-work-item:nth-child(even) .system-work-content-wrap {
        flex-direction: column !important;
        text-align: center;
    }
    .system-work-item .system-work-content-wrap .content {
        margin-inline-start: 0 !important;
        margin-inline-end: 0 !important;
        margin-top: 15px;
    }
    .system-work-item .system-work-content-wrap .number {
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    /* 2. About us section background behind image responsive */
    .about-thumb-wrap.style-two .shape-one {
        display: block !important;
        width: 80% !important;
        height: 80% !important;
        bottom: 5% !important;
        left: 10% !important;
        transform: rotate(-5deg) !important;
        border-radius: 40px !important;
    }
    .about-thumb-wrap.style-two {
        margin-inline-end: 0 !important;
        margin-bottom: 40px !important;
    }
    .about-thumb-wrap.style-two .about-thumb-one {
        transform: translateX(0) !important;
        max-width: 100% !important;
        position: relative;
        z-index: 2;
    }
    .about-thumb-wrap.style-two .about-thumb-one img {
        width: 100%;
        border-radius: 24px;
    }
    
    /* 3. Hero sections responsive & centered - Image hidden on mobile */
    .banner-content.style-two {
        text-align: center;
        margin-bottom: 10px;
    }
    .banner-content.style-two .btn-wrap {
        justify-content: center;
        display: flex;
    }
    .banner-thumb-wrapper.style-two {
        display: none !important;
    }
}

/* ==========================================================================
   Dark Theme Global Readability Overrides
   ========================================================================== */
.dark-theme, .dark-theme body, .dark-theme .dashboard-bg, .dark-theme .landing-page-bg {
    background-color: #121215 !important;
    color: #e0e0e0;
}

/* Force dark backgrounds on specific sections that might have white-bg */
.dark-theme .how-it-works-area,
.dark-theme .faq-area,
.dark-theme .faq-section-two,
.dark-theme .testimonial-area,
.dark-theme .testimonial-section-two,
.dark-theme .newsletter-area,
.dark-theme .newsletter-section-two,
.dark-theme .counter-area,
.dark-theme .earning-money-section,
.dark-theme .about-area,
.dark-theme .white-bg {
    background-color: #121215 !important;
}

/* Specific wrappers that have backgrounds */
.dark-theme .newsletter-section-two .wrapper,
.dark-theme .newsletter-wrapper,
.dark-theme .how-it-works-item,
.dark-theme .faq-item,
.dark-theme .accordion-item,
.dark-theme .testimonial-item,
.dark-theme .site-card, 
.dark-theme .motion-scale-item,
.dark-theme .card {
    background-color: rgba(20, 20, 30, 0.8) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

/* Headings */
.dark-theme h1, .dark-theme h2, .dark-theme h3, .dark-theme h4, .dark-theme h5, .dark-theme h6, 
.dark-theme .title, .dark-theme .section-title, .dark-theme .accordion-button,
.dark-theme .counter-area .count, .dark-theme .odometer-value {
    color: #ffffff !important;
}

/* How It Works Specific Overrides */
.how-it-works-item .thumb img {
    border-radius: 24px !important;
}
.dark-theme .how-it-works-item .title {
    color: #0C0C14 !important;
}

/* Customers Feedback / Testimonial Desktop Padding */
.trusted-user-section {
    padding-top: 60px;
}

/* Agent Card Dark Mode Tweaks */
.dark-theme .agent-card-header {
    background: linear-gradient(135deg, #0d1b2a, #1b263b) !important;
}
.dark-theme .agent-username,
.dark-theme .agent-codes-sold {
    color: #ffffff !important;
}

/* Texts and Descriptions */
.dark-theme p, 
.dark-theme .description, 
.dark-theme .banner-content .description,
.dark-theme .section-title-wrapper p,
.dark-theme .how-it-works-item .description,
.dark-theme span:not(.badge-icon):not(.badge-num):not(.badge-label) {
    color: #a0a0ab !important;
}

/* Fix accordion button bg in FAQ */
.dark-theme .accordion-button {
    background-color: transparent !important;
}
.dark-theme .accordion-button:not(.collapsed) {
    background-color: rgba(255, 255, 255, 0.05) !important;
    color: #ffffff !important;
}

/* Nav Bar Readability */
.dark-theme .td-main-menu ul li a,
.dark-theme .header-transparent .td-main-menu ul li a {
    color: #ffffff !important;
}
.dark-theme .td-main-menu ul li a:hover,
.dark-theme .td-main-menu ul li a.active {
    color: #FC5D19 !important;
}
.dark-theme .header-logo .logo-black {
    display: none !important;
}
.dark-theme .header-logo .logo-white {
    display: block !important;
}

/* Mobile Tweaks */
@media (max-width: 767px) {
    .trusted-user-section {
        padding-top: 50px !important;
    }
    .trusted-user-section .trusted-user-content {
        text-align: center;
    }
}

/* ==========================================================================
   16. Agents Page Facelift & Dark Mode overrides
   ========================================================================== */
.agents-hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}

.agents-section {
    position: relative;
    overflow: hidden;
}

.agents-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(86, 58, 239, 0.05) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    pointer-events: none;
    z-index: 0;
}

.dark-theme .agents-section {
    background-color: #121215 !important;
}

.dark-theme .agents-section::before {
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1.5px, transparent 1.5px);
}

.dark-theme .agent-dir-card {
    background-color: rgba(255, 255, 255, 0.03) !important;
    border-color: rgba(255, 255, 255, 0.06) !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}

.dark-theme .agent-card-header {
    background: linear-gradient(135deg, rgba(20,20,30, 0.5), rgba(40,40,50, 0.5)) !important;
}

.dark-theme .agent-username {
    color: #ffffff !important;
}

.dark-theme .contact-icon-btn {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #cbd5e1 !important;
}

.dark-theme .contact-icon-btn:hover {
    background: rgba(19, 110, 249, 0.2) !important;
    color: #ffffff !important;
}

.dark-theme .contact-icon-btn.wa:hover {
    background: rgba(22, 163, 74, 0.2) !important;
}

.dark-theme .agent-stats-row {
    border-top-color: rgba(255, 255, 255, 0.05) !important;
}

.dark-theme .agent-stat .val {
    color: #ffffff !important;
}

.dark-theme .rate-form {
    border-top-color: rgba(255, 255, 255, 0.05) !important;
}

.dark-theme .rate-form-title {
    color: #9ca3af !important;
}

.dark-theme .rate-form textarea {
    background: rgba(255, 255, 255, 0.03) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

/* Modal Dark Mode overrides */
.dark-theme .modal-content {
    background-color: #1a1a24 !important;
}

.dark-theme .req-modal-header {
    background: linear-gradient(135deg, rgba(20,20,30, 0.8), rgba(40,40,50, 0.8)) !important;
}

.dark-theme .req-modal-title {
    color: #ffffff !important;
}

.dark-theme .req-modal-body {
    background-color: #1a1a24 !important;
}

.dark-theme .req-modal-desc, .dark-theme .req-modal-li-text {
    color: #cbd5e1 !important;
}

.dark-theme .req-modal-footer {
    background: #14141a !important;
    border-top-color: rgba(255, 255, 255, 0.05) !important;
}

.dark-theme .req-modal-cancel {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border-color: transparent !important;
}


/* ==========================================================================
   17. Auth Pages Split Panel Facelift
   ========================================================================== */
.split-auth-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #f5f7fc;
}

.dark-theme .split-auth-container {
    background: #0c0c14;
}

.auth-panel-left {
    width: 50%;
    background: linear-gradient(135deg, #FC5D19 0%, #563AEF 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
    overflow: hidden;
}

.auth-panel-left::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1.5px, transparent 1.5px);
    background-size: 32px 32px;
    z-index: 1;
}

.auth-panel-left-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 500px;
}

.auth-panel-left-content h1 {
    color: #ffffff;
    font-weight: 800;
    font-size: 3rem;
    margin-bottom: 20px;
}

.auth-panel-left-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.auth-panel-right {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 10%;
    position: relative;
    z-index: 2;
}

.auth-form-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 50px 40px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.dark-theme .auth-form-card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.auth-form-card .title {
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    color: #0c0c14;
}

.dark-theme .auth-form-card .title {
    color: #ffffff;
}

@media (max-width: 991px) {
    .auth-panel-left {
        display: none !important;
    }
    .auth-panel-right {
        width: 100% !important;
        padding: 100px 15px 40px !important;
        align-items: center !important;
    }
    .auth-form-card {
        margin: 20px auto 0 !important;
        padding: 40px 25px !important;
    }
}

/* Form Inputs Modernization */
.split-auth-container .single-input .input-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.dark-theme .split-auth-container .single-input .input-label {
    color: #cbd5e1;
}

.split-auth-container .single-input .input-field .box-input {
    background: #f9fafb !important;
    border: 1.5px solid #e5e7eb !important;
    border-radius: 12px !important;
    padding: 14px 20px 14px 45px !important;
    font-size: 15px !important;
    transition: all 0.3s ease !important;
}

.dark-theme .split-auth-container .single-input .input-field .box-input {
    background: rgba(255, 255, 255, 0.03) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
}

.split-auth-container .single-input .input-field .box-input:focus {
    border-color: #563AEF !important;
    box-shadow: 0 0 0 4px rgba(86, 58, 239, 0.1) !important;
}

.dark-theme .split-auth-container .single-input .input-field .box-input:focus {
    border-color: #FC5D19 !important;
    box-shadow: 0 0 0 4px rgba(252, 93, 25, 0.15) !important;
}

.split-auth-container .single-input .icon {
    left: 15px !important;
    color: #9ca3af !important;
    z-index: 2 !important;
}

.split-auth-container .single-input .input-field .box-input:focus ~ .icon {
    color: #563AEF !important;
}

.dark-theme .split-auth-container .single-input .input-field .box-input:focus ~ .icon {
    color: #FC5D19 !important;
}


/* Select2 and Input Group Fixes for Auth Pages */
.split-auth-container .single-input.has-left-icon .input-field .box-input {
    padding-left: 45px !important;
}
.split-auth-container .single-input:not(.has-left-icon) .input-field .box-input {
    padding-left: 20px !important;
}

.split-auth-container .input-group .box-input {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}
.split-auth-container .input-group-text {
    border-radius: 12px 0 0 12px !important;
    border: 1.5px solid #e5e7eb !important;
    border-right: none !important;
    background: #f3f4f6 !important;
    color: #4b5563 !important;
    padding: 12px 20px !important;
    font-size: 15px !important;
}
.dark-theme .split-auth-container .input-group-text {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
}

.split-auth-container .select2-container--default .select2-selection--single {
    background: #f9fafb !important;
    border: 1.5px solid #e5e7eb !important;
    border-radius: 12px !important;
    height: 52px !important;
    padding: 0 20px !important;
    display: flex;
    align-items: center;
}
.split-auth-container .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100% !important;
    right: 15px !important;
}
.split-auth-container .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #374151 !important;
    padding-left: 0 !important;
    line-height: normal !important;
    font-size: 15px !important;
}
.dark-theme .split-auth-container .select2-container--default .select2-selection--single {
    background: rgba(255, 255, 255, 0.03) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}
.dark-theme .split-auth-container .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #ffffff !important;
}


/* Responsive Title Font Size for Auth Pages */
@media (max-width: 767px) {
    .auth-form-card .title {
        font-size: 1.4rem !important;
        flex-direction: column !important;
        gap: 5px !important;
    }
    .auth-form-card .title svg {
        width: 24px !important;
        height: 24px !important;
        margin-right: 0 !important;
        margin-bottom: 5px !important;
    }
}

