/* ===========================================
   WORLDEOO THEME - Playful/Dynamique
   Compiled CSS Version
   =========================================== */

/* -----------------------------
   Google Fonts Import
   ----------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400&display=swap');

/* -----------------------------
   CSS Variables
   ----------------------------- */
:root {
    --worldeoo-primary: #00c9a3;
    --worldeoo-primary-light: #00e6bb;
    --worldeoo-primary-dark: #00a88a;
    --worldeoo-secondary: #1b2f36;
    --worldeoo-secondary-light: #2a4550;
    --worldeoo-accent: #00f5d0;
    --worldeoo-bg-light: #f0fdfb;
    --worldeoo-radius-sm: 12px;
    --worldeoo-radius-md: 20px;
    --worldeoo-radius-lg: 28px;
    --worldeoo-radius-pill: 50px;
    --worldeoo-shadow-soft: 0 4px 20px rgba(0, 201, 163, 0.1);
    --worldeoo-shadow-medium: 0 8px 30px rgba(0, 201, 163, 0.15);
    --worldeoo-shadow-glow: 0 0 30px rgba(0, 201, 163, 0.3);
    --worldeoo-shadow-card: 0 10px 40px rgba(27, 47, 54, 0.08);
    --worldeoo-shadow-card-hover: 0 20px 50px rgba(0, 201, 163, 0.2);
    --worldeoo-transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --worldeoo-transition-fast: all 0.25s ease-out;
}

/* -----------------------------
   Typography
   ----------------------------- */
body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
    background-color: #f0fdfb;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1, .h1 {
    font-weight: 800;
}

h2, .h2 {
    position: relative;
    display: inline-block;
}

h2::after, .h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #00c9a3, #00f5d0);
    border-radius: 2px;
}

/* Gradient text utility */
.text-gradient {
    background: linear-gradient(135deg, #00c9a3, #00f5d0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* -----------------------------
   Cards - Style Playful
   ----------------------------- */
.card,
.worldeoo-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fffe 100%);
    border: none;
    border-radius: var(--worldeoo-radius-lg) !important;
    box-shadow: var(--worldeoo-shadow-card);
    transition: var(--worldeoo-transition);
    overflow: hidden;
    position: relative;
}

.card::before,
.worldeoo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00c9a3, #00f5d0, #00e6bb);
    opacity: 0;
    transition: var(--worldeoo-transition-fast);
}

.card:hover,
.worldeoo-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--worldeoo-shadow-card-hover);
}

.card:hover::before,
.worldeoo-card:hover::before {
    opacity: 1;
}

.card-header {
    background: transparent;
    border-bottom: 1px solid rgba(0, 201, 163, 0.1);
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
}

.card-body {
    padding: 1.5rem;
}

.card-footer {
    background: rgba(0, 201, 163, 0.03);
    border-top: 1px solid rgba(0, 201, 163, 0.1);
}

/* Card with accent */
.card-accent,
.worldeoo-card-accent {
    border-left: 4px solid #00c9a3 !important;
}

.card-accent:hover,
.worldeoo-card-accent:hover {
    border-left-color: #00f5d0 !important;
}

/* Stats Card */
.card-stats {
    text-align: center;
    padding: 2rem;
}

.card-stats .stats-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--worldeoo-radius-md);
    background: linear-gradient(135deg, #00c9a3, #00f5d0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: var(--worldeoo-shadow-glow);
}

.card-stats .stats-icon i,
.card-stats .stats-icon svg {
    font-size: 28px;
    color: white;
}

.card-stats .stats-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1b2f36;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.card-stats .stats-label {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

/* -----------------------------
   Buttons - Style Pill avec Glow
   ----------------------------- */
.btn {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    border-radius: var(--worldeoo-radius-pill) !important;
    padding: 0.75rem 1.75rem;
    transition: var(--worldeoo-transition);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::after {
    width: 300px;
    height: 300px;
}

.btn-primary,
.btn-custom {
    background: linear-gradient(135deg, #00c9a3 0%, #00e6bb 100%) !important;
    border: none !important;
    color: white !important;
    box-shadow: var(--worldeoo-shadow-soft);
}

.btn-primary:hover, .btn-primary:focus,
.btn-custom:hover, .btn-custom:focus {
    background: linear-gradient(135deg, #00e6bb 0%, #00f5d0 100%) !important;
    box-shadow: var(--worldeoo-shadow-glow);
    transform: translateY(-3px);
}

.btn-primary:active,
.btn-custom:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: linear-gradient(135deg, #1b2f36 0%, #2a4550 100%) !important;
    border: none !important;
    color: white !important;
}

.btn-secondary:hover, .btn-secondary:focus {
    box-shadow: 0 0 25px rgba(27, 47, 54, 0.4);
    transform: translateY(-3px);
}

.btn-outline-primary {
    background: transparent !important;
    border: 2px solid #00c9a3 !important;
    color: #00c9a3 !important;
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
    background: linear-gradient(135deg, #00c9a3 0%, #00e6bb 100%) !important;
    border-color: transparent !important;
    color: white !important;
    box-shadow: var(--worldeoo-shadow-glow);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

/* -----------------------------
   Form Elements
   ----------------------------- */
.form-control,
.form-select {
    border-radius: var(--worldeoo-radius-sm) !important;
    border: 2px solid #e5e7eb;
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
    transition: var(--worldeoo-transition-fast);
}

.form-control:focus,
.form-select:focus {
    border-color: #00c9a3;
    box-shadow: 0 0 0 4px rgba(0, 201, 163, 0.1);
    outline: none;
}

.form-control::placeholder {
    color: #9ca3af;
}

.form-control-lg {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border-radius: var(--worldeoo-radius-md) !important;
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #d1d5db;
    border-radius: 6px;
    transition: var(--worldeoo-transition-fast);
}

.form-check-input:checked {
    background-color: #00c9a3;
    border-color: #00c9a3;
}

.form-check-input:focus {
    box-shadow: 0 0 0 4px rgba(0, 201, 163, 0.15);
}

/* -----------------------------
   Badges
   ----------------------------- */
.badge {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--worldeoo-radius-pill);
}

.badge-primary,
.bg-primary {
    background: linear-gradient(135deg, #00c9a3, #00f5d0) !important;
}

/* -----------------------------
   Alerts
   ----------------------------- */
.alert {
    border: none;
    border-radius: var(--worldeoo-radius-md);
    padding: 1.25rem 1.5rem;
}

.alert-success {
    background: rgba(0, 201, 163, 0.1);
    color: #00a88a;
    border-left: 4px solid #00c9a3;
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    color: #1e40af;
    border-left: 4px solid #3b82f6;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    color: #92400e;
    border-left: 4px solid #f59e0b;
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

/* -----------------------------
   Tables
   ----------------------------- */
.table {
    border-radius: var(--worldeoo-radius-md);
    overflow: hidden;
}

.table thead {
    background: linear-gradient(135deg, #1b2f36, #2a4550);
}

.table thead th {
    color: white;
    font-weight: 600;
    padding: 1rem 1.25rem;
    border: none;
    font-family: 'Manrope', sans-serif;
}

.table tbody tr {
    transition: var(--worldeoo-transition-fast);
}

.table tbody tr:hover {
    background: rgba(0, 201, 163, 0.05);
}

.table tbody td {
    padding: 1rem 1.25rem;
    vertical-align: middle;
    border-color: rgba(0, 201, 163, 0.1);
}

/* -----------------------------
   Modal
   ----------------------------- */
.modal-content {
    border: none;
    border-radius: var(--worldeoo-radius-lg);
    box-shadow: var(--worldeoo-shadow-card-hover);
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, #00c9a3 0%, #1b2f36 100%);
    color: white;
    border: none;
    padding: 1.5rem;
}

.modal-header .modal-title {
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
}

.modal-header .btn-close {
    filter: brightness(0) invert(1);
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    border-top: 1px solid rgba(0, 201, 163, 0.1);
    padding: 1.25rem 2rem;
}

/* -----------------------------
   Navigation / Topbar
   ----------------------------- */
.navbar,
.topbar,
.horizontal-menu {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.navbar .nav-link,
.topbar .nav-link,
.horizontal-menu .nav-link {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    color: #1b2f36;
    padding: 0.75rem 1.25rem;
    border-radius: var(--worldeoo-radius-sm);
    transition: var(--worldeoo-transition-fast);
}

.navbar .nav-link:hover,
.navbar .nav-link.active,
.topbar .nav-link:hover,
.topbar .nav-link.active,
.horizontal-menu .nav-link:hover,
.horizontal-menu .nav-link.active {
    color: #00c9a3;
    background: rgba(0, 201, 163, 0.08);
}

/* =============================================
   Bottom navbar / Horizontal Menu - RESPONSIVE
   ============================================= */

/* Base styles for bottom navbar */
.bottom-navbar {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 100;
}

.bottom-navbar .page-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bottom-navbar .page-navigation .nav-item {
    display: flex;
    align-items: center;
    position: relative;
}

.bottom-navbar .page-navigation .nav-item .nav-link {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #1b2f36;
    text-decoration: none;
    transition: var(--worldeoo-transition-fast);
    border-radius: var(--worldeoo-radius-sm);
}

.bottom-navbar .page-navigation .nav-item .nav-link:hover {
    color: #00c9a3;
    background: rgba(0, 201, 163, 0.08);
}

.bottom-navbar .page-navigation .nav-item .nav-link .menu-icon {
    margin-right: 8px;
    font-size: 1.1rem;
}

.bottom-navbar .page-navigation .nav-item .nav-link .menu-title {
    font-family: 'Manrope', sans-serif;
}

/* Survey badge - positioned next to nav-link */
.bottom-navbar .survey-badge {
    font-size: 0.65rem;
    padding: 0.2rem 0.45rem;
    min-width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
    margin-right: 8px;
    vertical-align: middle;
    position: relative;
    top: 0;
}

/* Badge survey count styling */
.bottom-navbar .badge-danger {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    border-radius: var(--worldeoo-radius-pill);
    animation: pulse-glow-red 2s ease-in-out infinite;
}

@keyframes pulse-glow-red {
    0%, 100% { box-shadow: 0 0 5px rgba(239, 68, 68, 0.3); }
    50% { box-shadow: 0 0 15px rgba(239, 68, 68, 0.6); }
}

/* Submenu / Dropdown styles */
.bottom-navbar .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    border-radius: var(--worldeoo-radius-md);
    box-shadow: var(--worldeoo-shadow-medium);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.bottom-navbar .nav-item:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.bottom-navbar .submenu .submenu-item {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bottom-navbar .submenu .nav-link {
    padding: 0.75rem 1rem !important;
    font-size: 0.9rem !important;
    display: flex;
    align-items: center;
}

.bottom-navbar .submenu .nav-link i {
    width: 20px;
}

/* Navbar toggler button styling */
.navbar-toggler {
    border: 2px solid #00c9a3;
    border-radius: var(--worldeoo-radius-sm);
    padding: 0.5rem 0.75rem;
    background: transparent;
    cursor: pointer;
    transition: var(--worldeoo-transition-fast);
}

.navbar-toggler:hover,
.navbar-toggler:focus {
    background: rgba(0, 201, 163, 0.1);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 201, 163, 0.2);
}

.navbar-toggler .ti-menu {
    color: #00c9a3;
    font-size: 1.25rem;
}

/* =============================================
   DESKTOP (>= 992px) - Larger menu items
   ============================================= */
@media (min-width: 992px) {
    .bottom-navbar .page-navigation .nav-item .nav-link {
        padding: 1.1rem 1.5rem;
        font-size: 1rem;
    }

    .bottom-navbar .page-navigation .nav-item .nav-link .menu-icon {
        font-size: 1.2rem;
        margin-right: 10px;
    }
}

/* =============================================
   TABLET & MOBILE (< 992px) - Collapsible menu
   ============================================= */
@media (max-width: 991.98px) {
    .bottom-navbar {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        padding: 0;
    }

    .bottom-navbar.header-toggled {
        max-height: 500px;
        padding: 1rem 0;
        overflow-y: auto;
    }

    .bottom-navbar .container {
        padding: 0 15px;
    }

    .bottom-navbar .page-navigation {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .bottom-navbar .page-navigation .nav-item {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        border-bottom: 1px solid rgba(0, 201, 163, 0.1);
    }

    .bottom-navbar .page-navigation .nav-item:last-child {
        border-bottom: none;
    }

    .bottom-navbar .page-navigation .nav-item .nav-link {
        padding: 1rem 1.25rem;
        font-size: 1rem;
        width: 100%;
        justify-content: flex-start;
    }

    .bottom-navbar .page-navigation .nav-item .nav-link .menu-icon {
        font-size: 1.2rem;
        margin-right: 12px;
        width: 24px;
        text-align: center;
    }

    /* Survey badge on mobile */
    .bottom-navbar .survey-badge {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        margin-left: 0;
        margin-right: 0;
    }

    /* Submenu on mobile */
    .bottom-navbar .submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        padding-left: 2rem;
        background: rgba(0, 201, 163, 0.03);
        display: none; /* Hidden by default, shown via jQuery slideToggle */
    }

    .bottom-navbar .submenu .nav-link {
        padding: 0.875rem 1rem !important;
        font-size: 0.95rem !important;
    }

    /* Menu arrow rotation */
    .bottom-navbar .menu-arrow {
        margin-left: auto;
        transition: transform 0.3s ease;
    }

    .bottom-navbar .nav-item:hover .menu-arrow {
        transform: rotate(180deg);
    }
}

/* =============================================
   SMALL MOBILE (< 576px) - Even larger touch targets
   ============================================= */
@media (max-width: 575.98px) {
    .bottom-navbar .page-navigation .nav-item .nav-link {
        padding: 1.1rem 1rem;
        font-size: 1rem;
    }

    .bottom-navbar .page-navigation .nav-item .nav-link .menu-icon {
        font-size: 1.3rem;
        margin-right: 14px;
        width: 28px;
    }

    .bottom-navbar .submenu .nav-link {
        padding: 1rem !important;
        font-size: 0.95rem !important;
    }
}

/* =============================================
   Top Navbar adjustments
   ============================================= */
.horizontal-menu .top-navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.horizontal-menu .top-navbar .navbar-brand img {
    max-height: 40px;
}

@media (max-width: 991.98px) {
    .horizontal-menu .top-navbar .navbar-brand img {
        max-height: 35px;
    }

    .horizontal-menu .navbar-menu-wrapper {
        padding: 0.5rem 1rem;
    }
}

/* -----------------------------
   Section Backgrounds & Blobs
   ----------------------------- */
.section-light {
    background: #f0fdfb;
}

.section-gradient {
    background: linear-gradient(135deg, rgba(0, 201, 163, 0.05) 0%, rgba(27, 47, 54, 0.03) 100%);
}

.section-with-blobs {
    position: relative;
    overflow: hidden;
}

.section-with-blobs::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: #00c9a3;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: 0;
}

.section-with-blobs::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: #00f5d0;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.1;
    z-index: 0;
}

.section-with-blobs > * {
    position: relative;
    z-index: 1;
}

/* Decorative blobs */
.blob-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    pointer-events: none;
    z-index: 0;
}

.blob-primary {
    background: #00c9a3;
}

.blob-accent {
    background: #00f5d0;
}

.blob-secondary {
    background: #1b2f36;
    opacity: 0.2;
}

/* Wave separator */
.wave-separator {
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 100'%3E%3Cpath fill='%2300c9a3' fill-opacity='0.1' d='M0,32L48,37.3C96,43,192,53,288,58.7C384,64,480,64,576,58.7C672,53,768,43,864,42.7C960,43,1056,53,1152,53.3C1248,53,1344,43,1392,37.3L1440,32L1440,100L1392,100C1344,100,1248,100,1152,100C1056,100,960,100,864,100C768,100,672,100,576,100C480,100,384,100,288,100C192,100,96,100,48,100L0,100Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

/* -----------------------------
   Animations
   ----------------------------- */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: var(--worldeoo-shadow-soft); }
    50% { box-shadow: var(--worldeoo-shadow-glow); }
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* -----------------------------
   Utility Classes
   ----------------------------- */
.text-primary {
    color: #00c9a3 !important;
}

.text-secondary {
    color: #1b2f36 !important;
}

.bg-primary-soft {
    background: rgba(0, 201, 163, 0.1) !important;
}

.border-primary {
    border-color: #00c9a3 !important;
}

.glow-primary {
    box-shadow: var(--worldeoo-shadow-glow);
}

/* -----------------------------
   Scrollbar Custom
   ----------------------------- */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00c9a3, #00a88a);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #00e6bb, #00c9a3);
}

/* -----------------------------
   Survey Cards
   ----------------------------- */
.survey-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fffe 100%);
    border-radius: var(--worldeoo-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--worldeoo-shadow-card);
    transition: var(--worldeoo-transition);
    border: 2px solid transparent;
}

.survey-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--worldeoo-shadow-card-hover);
    border-color: rgba(0, 201, 163, 0.3);
}

.survey-card .survey-reward {
    background: linear-gradient(135deg, #00c9a3, #00f5d0);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--worldeoo-radius-pill);
    font-weight: 700;
    display: inline-block;
}

.survey-card .survey-duration {
    color: #6b7280;
    font-size: 0.875rem;
}

.survey-card .survey-duration i {
    color: #00c9a3;
}

/* -----------------------------
   Progress Bar
   ----------------------------- */
.progress {
    height: 10px;
    border-radius: var(--worldeoo-radius-pill);
    background: rgba(0, 201, 163, 0.1);
    overflow: hidden;
}

.progress .progress-bar {
    background: linear-gradient(90deg, #00c9a3, #00f5d0);
    border-radius: var(--worldeoo-radius-pill);
    transition: width 0.6s ease;
}

/* -----------------------------
   Dropdown
   ----------------------------- */
.dropdown-menu {
    border: none;
    border-radius: var(--worldeoo-radius-md);
    box-shadow: var(--worldeoo-shadow-medium);
    padding: 0.5rem;
}

.dropdown-menu .dropdown-item {
    border-radius: var(--worldeoo-radius-sm);
    padding: 0.75rem 1rem;
    transition: var(--worldeoo-transition-fast);
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
    background: rgba(0, 201, 163, 0.1);
    color: #00c9a3;
}

.dropdown-menu .dropdown-item.active {
    background: linear-gradient(135deg, #00c9a3, #00e6bb);
    color: white;
}

/* -----------------------------
   Accordion (FAQ style)
   ----------------------------- */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: var(--worldeoo-radius-md) !important;
    overflow: hidden;
    box-shadow: var(--worldeoo-shadow-soft);
}

.accordion-item .accordion-button {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    background: white;
    border-radius: var(--worldeoo-radius-md) !important;
}

.accordion-item .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(0, 201, 163, 0.05), rgba(0, 245, 208, 0.05));
    color: #00c9a3;
    box-shadow: none;
}

.accordion-item .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-item .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2300c9a3'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-item .accordion-body {
    padding: 1.25rem 1.5rem;
    background: rgba(0, 201, 163, 0.02);
}

/* -----------------------------
   SweetAlert2 Customization
   ----------------------------- */
.swal2-popup {
    border-radius: var(--worldeoo-radius-lg) !important;
    font-family: 'DM Sans', sans-serif !important;
}

.swal2-title {
    font-family: 'Manrope', sans-serif !important;
    font-weight: 700 !important;
}

.swal2-styled.swal2-confirm {
    background: linear-gradient(135deg, #00c9a3, #00e6bb) !important;
    border-radius: var(--worldeoo-radius-pill) !important;
    font-family: 'Manrope', sans-serif !important;
    font-weight: 600 !important;
    padding: 0.875rem 2rem !important;
}

.swal2-styled.swal2-cancel {
    border-radius: var(--worldeoo-radius-pill) !important;
    font-family: 'Manrope', sans-serif !important;
    font-weight: 600 !important;
}

/* -----------------------------
   DataTables Customization
   ----------------------------- */
.dataTables_wrapper .dataTables_paginate .paginate_button {
    border-radius: var(--worldeoo-radius-sm) !important;
    margin: 0 2px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: linear-gradient(135deg, #00c9a3, #00e6bb) !important;
    border-color: transparent !important;
    color: white !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: rgba(0, 201, 163, 0.1) !important;
    border-color: #00c9a3 !important;
    color: #00c9a3 !important;
}

/* -----------------------------
   Specific App Components
   ----------------------------- */

/* =============================================
   Offers List / Displays Box (Surveys Page)
   ============================================= */
.offers-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offers-list li {
    display: flex;
    align-items: center;
    background: linear-gradient(145deg, #ffffff 0%, #f8fffe 100%);
    border-radius: var(--worldeoo-radius-lg);
    padding: 1.25rem;
    margin-bottom: 1rem;
    box-shadow: var(--worldeoo-shadow-soft);
    transition: var(--worldeoo-transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.offers-list li:hover {
    transform: translateY(-4px);
    box-shadow: var(--worldeoo-shadow-card-hover);
    border-color: rgba(0, 201, 163, 0.2);
}

.offers-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #00c9a3, #00f5d0);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.offers-list li:hover::before {
    opacity: 1;
}

.offers-list .left-part {
    display: flex;
    align-items: center;
    flex: 1;
    text-decoration: none;
    color: inherit;
    min-width: 0;
}

.offers-list .logo-wrapper {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border-radius: var(--worldeoo-radius-md);
    overflow: hidden;
    margin-right: 1.25rem;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.offers-list .logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 8px;
}

.offers-list .details {
    flex: 1;
    min-width: 0;
    padding-right: 1rem;
}

.offers-list .details-inner {
    display: flex;
    flex-direction: column;
}

.offers-list .title {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: #1b2f36;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.offers-list .description {
    font-size: 0.9rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.offers-list .ratings-wrapper {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.offers-list .average-rating {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: #1b2f36;
    background: linear-gradient(135deg, rgba(0, 201, 163, 0.1), rgba(0, 245, 208, 0.1));
    padding: 0.5rem 0.75rem;
    border-radius: var(--worldeoo-radius-pill);
    white-space: nowrap;
}

/* Star rating visual */
.offers-list .average-rating::before {
    content: '';
    display: inline-block;
    width: 80px;
    height: 16px;
    background: linear-gradient(90deg,
        #00c9a3 calc(var(--rating) / 5 * 100%),
        #e5e7eb calc(var(--rating) / 5 * 100%));
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20'%3E%3Ctext x='0' y='16' font-size='18'%3E★★★★★%3C/text%3E%3C/svg%3E") no-repeat center;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20'%3E%3Ctext x='0' y='16' font-size='18'%3E★★★★★%3C/text%3E%3C/svg%3E") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
    margin-right: 8px;
    vertical-align: middle;
}

.offers-list .go-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #00c9a3 0%, #00e6bb 100%);
    border-radius: var(--worldeoo-radius-md);
    text-decoration: none;
    transition: var(--worldeoo-transition);
    box-shadow: var(--worldeoo-shadow-soft);
}

.offers-list .go-btn:hover {
    background: linear-gradient(135deg, #00e6bb 0%, #00f5d0 100%);
    box-shadow: var(--worldeoo-shadow-glow);
    transform: scale(1.05);
}

.offers-list .go-btn span {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .offers-list li {
        flex-wrap: wrap;
        padding: 1rem;
    }

    .offers-list .left-part {
        width: 100%;
        margin-bottom: 1rem;
    }

    .offers-list .logo-wrapper {
        width: 55px;
        height: 55px;
        min-width: 55px;
        margin-right: 1rem;
    }

    .offers-list .title {
        font-size: 1rem;
    }

    .offers-list .description {
        font-size: 0.85rem;
        -webkit-line-clamp: 2;
    }

    .offers-list .ratings-wrapper {
        margin-right: auto;
    }

    .offers-list .go-btn {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .offers-list .go-btn span {
        font-size: 0.9rem;
    }
}

@media (max-width: 575.98px) {
    .offers-list .logo-wrapper {
        width: 50px;
        height: 50px;
        min-width: 50px;
        margin-right: 0.75rem;
    }

    .offers-list .average-rating::before {
        width: 60px;
        height: 14px;
    }

    .offers-list .average-rating {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
}

/* =============================================
   Survey Box Styling (job-content-area)
   ============================================= */
.job-content-area {
    background: linear-gradient(145deg, #ffffff 0%, #f8fffe 100%);
    border-radius: var(--worldeoo-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--worldeoo-shadow-card);
    position: relative;
    height: 100%;
    border: 2px solid transparent;
    transition: var(--worldeoo-transition);
}

.job-content-area:hover {
    border-color: rgba(0, 201, 163, 0.3);
    box-shadow: var(--worldeoo-shadow-card-hover);
}

.job-content-area .job-desc-info h4 {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: #00c9a3;
    margin: 0;
}

.job-content-area.bg-primary {
    background: linear-gradient(135deg, #00c9a3 0%, #00a88a 100%) !important;
}

.job-content-area.bg-primary .job-desc-info h4,
.job-content-area.bg-primary p,
.job-content-area.bg-primary .provider {
    color: white !important;
}

/* Ribbon styling for surveys */
.ribbon-wrapper-reverse {
    position: relative;
}

.ribbon {
    position: absolute;
    top: 10px;
    right: -5px;
    background: linear-gradient(135deg, #00c9a3, #00f5d0);
    padding: 0.25rem 0.75rem;
    border-radius: var(--worldeoo-radius-sm) 0 0 var(--worldeoo-radius-sm);
    box-shadow: 0 2px 10px rgba(0, 201, 163, 0.3);
}

.ribbon-info {
    background: linear-gradient(135deg, #00c9a3, #00f5d0);
}

.ribbon svg {
    vertical-align: middle;
}

/* User balance card */
.balance-card {
    background: linear-gradient(135deg, #00c9a3 0%, #1b2f36 100%);
    border-radius: var(--worldeoo-radius-lg);
    color: white;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.balance-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.balance-card .balance-amount {
    font-size: 3rem;
    font-weight: 800;
    font-family: 'Manrope', sans-serif;
}

.balance-card .balance-label {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Notification badge pulse */
.notification-badge {
    animation: pulse-glow 2s ease-in-out infinite;
}

/* Payout method cards */
.payout-method-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: var(--worldeoo-radius-md);
    padding: 1.5rem;
    transition: var(--worldeoo-transition);
    cursor: pointer;
}

.payout-method-card:hover,
.payout-method-card.selected {
    border-color: #00c9a3;
    box-shadow: var(--worldeoo-shadow-soft);
}

.payout-method-card.selected {
    background: rgba(0, 201, 163, 0.05);
}

/* Level/Progress indicators */
.level-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.level-indicator .level-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e5e7eb;
}

.level-indicator .level-dot.active {
    background: linear-gradient(135deg, #00c9a3, #00f5d0);
    box-shadow: 0 0 10px rgba(0, 201, 163, 0.5);
}

/* Empty state */
.empty-state {
    text-align: center;
    padding: 3rem;
}

.empty-state .empty-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(0, 201, 163, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.empty-state .empty-icon i {
    font-size: 40px;
    color: #00c9a3;
}

.empty-state h4 {
    color: #1b2f36;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: #6b7280;
}
