/* ===== GLOBAL VARIABLES & RESET ===== */
:root {
    --primary: #00D084;
    --primary-dark: #00A86B;
    --secondary: #2563EB;
    --accent: #FF6B35;
    --dark: #0F172A;
    --dark-light: #1E293B;
    --light: #F8FAFC;
    --gray: #64748B;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.04);
    --shadow-md: 0 6px 10px rgba(0,0,0,0.06);
    --radius: 10px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--dark-light);
    background-color: var(--light);
    line-height: 1.5;
    font-size: 14px;
}

a { text-decoration: none; }

/* ===== HERO SECTION ===== */
.hero-compact {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    background: var(--dark);
}


.hero-content {
    width: 90%;
    max-width: 700px;
    z-index: 10;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 12px;
    backdrop-filter: blur(5px);
}

.hero-content h1 {
    font-size: 2.2rem;
    margin: 0 0 10px 0;
    font-weight: 800;
    color: white;
}

.hero-content h1 span { 
    background: linear-gradient(135deg, #00D084 0%, #2563EB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    font-size: 1rem;
    margin-bottom: 15px;
}

.btn-custom {
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-green { background: var(--primary); color: white; }
.btn-outline { background: transparent; border: 1px solid rgba(255,255,255,0.3); color: white; }

.search-wrap {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 5px;
    border-radius: 8px;
    display: flex;
    max-width: 480px;
    margin: 20px auto 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.search-wrap input { flex: 1; background: transparent; border: none; padding: 8px 15px; color: white; outline: none; }
.search-wrap button { background: var(--primary); color: white; border: none; padding: 6px 18px; border-radius: 6px; }

/* ===== COUNTER SECTION ===== */
.counter-section { 
    padding: 20px 0;
    background: transparent;
    margin-top: -40px;
    position: relative;
    z-index: 20;
}

.counter-card {
    background: white;
    border-radius: 8px;
    padding: 10px 5px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.counter-icon {
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--primary);
}

.counter-number {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0;
    display: block;
}

.counter-title {
    color: var(--gray);
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    margin: 0;
}

/* ===== PROMO BANNER SECTION ===== */
.promo-banner {
    margin: 10px 0 20px 0;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.promo-banner:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.promo-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}






/* ===== PAYMENT METHODS SECTION ===== */
.payment-methods {
    padding: 15px 0;
    background: #f0f2f5;
    position: relative;
    overflow: hidden;
    margin: 10px 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.payment-slider {
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 3px 0;
}

.slide-track {
    display: flex;
    gap: 15px;
    animation: scroll 20s linear infinite;
    width: fit-content;
}

.payment-slider:hover .slide-track {
    animation-play-state: paused;
}

.payment-item {
    width: 70px;
    height: 40px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.7);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.payment-item:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}





/* ===== CATEGORIES SECTION ===== */
.top-category { 
    padding: 40px 0; 
    background: white; 
}

.category-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); 
    gap: 12px; 
    margin-top: 25px; 
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.category-card { 
    background: #F8FAFC; 
    border: 1px solid #E2E8F0; 
    border-radius: 8px; 
    padding: 15px 8px; 
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.category-card:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
    background: white;
}

.category-icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0,208,132,0.1), rgba(37,99,235,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: var(--primary);
    font-size: 20px;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.category-card h3 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--dark);
}




























/* ===== FAQ SECTION ===== */
.faq-section { 
    padding: 40px 0; 
    background: #F1F5F9; 
}

.faq-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    text-align: center;
}

.faq-subtitle {
    font-size: 14px;
    color: var(--gray);
    text-align: center;
    margin-bottom: 30px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    border: 1px solid #eef2f6;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(0,208,132,0.08);
}

.faq-question {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.faq-question i {
    color: var(--primary);
    font-size: 16px;
}

.faq-answer {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.5;
    margin-left: 24px;
}

/* ===== AI SUPPORT SECTION ===== */
.ai-support-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f9fafc 0%, #f0f4fa 100%);
    position: relative;
    overflow: hidden;
}

.ai-support-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 40px;
    border: 1px solid rgba(0,208,132,0.1);
    position: relative;
}

.ai-avatar {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 4px;
    box-shadow: 0 10px 25px rgba(0,208,132,0.3);
}

.ai-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid white;
}

.ai-content {
    flex: 1;
}

.ai-badge {
    display: inline-block;
    background: rgba(0,208,132,0.1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.ai-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.ai-content h3 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ai-description {
    font-size: 15px;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.ai-features {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.ai-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--dark);
    background: #f8fafc;
    padding: 6px 12px;
    border-radius: 30px;
}

.ai-feature i {
    color: var(--primary);
    font-size: 12px;
}

.ai-chat-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,208,132,0.3);
}

.ai-chat-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,208,132,0.4);
    color: white;
}

.ai-chat-btn i {
    font-size: 18px;
}

.online-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.2);
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 12px;
    margin-left: 10px;
}

.online-badge i {
    font-size: 8px;
    color: #00ff00;
}

/* ===== REFERRAL SECTION ===== */
.referral-section { 
    background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%); 
    padding: 40px 0; 
    border-radius: 16px; 
    color: white; 
    margin: 30px 0;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 1.8rem; }
    .hero-content p { font-size: 0.9rem; }
    .category-grid { grid-template-columns: repeat(3, 1fr); }
    .counter-section .row { --bs-gutter-x: 0.5rem; }
    .counter-card { padding: 8px 2px; }
    
    .job-meta-top {
        padding-right: 70px;
    }
    
    .job-title-app {
        font-size: 0.9rem;
    }
    
    .price-badge {
        font-size: 0.85rem;
        padding: 3px 10px;
    }
    
    .section-main-title-left {
        font-size: 20px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .ai-support-container {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .ai-avatar {
        width: 120px;
        height: 120px;
    }

    .ai-features {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .campaign-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .campaign-btn-group {
        flex-wrap: wrap;
    }
    
    .campaign-btn {
        flex: 1 1 auto;
        padding: 6px 4px;
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    
    .job-footer-app {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .job-meta-left {
        gap: 8px;
    }
    
    .job-meta-item {
        font-size: 0.7rem;
    }
    
    .view-job-btn {
        padding: 3px 8px;
        font-size: 0.7rem;
    }
    
    .section-main-title-left {
        font-size: 18px;
    }

    .section-title-left {
        font-size: 22px;
    }

    .ai-content h3 {
        font-size: 24px;
    }

    .ai-avatar {
        width: 100px;
        height: 100px;
    }

    .campaign-btn-group {
        flex-wrap: wrap;
    }
    
    .campaign-btn {
        flex: 1 1 auto;
        min-width: 70px;
    }

    .stats-grid {
        gap: 10px;
    }

    .stat-card {
        padding: 12px;
    }
}