/* WADAI Modern Home Page Styles - Upwork Inspired */

/* Modern Color Variables */
:root {
    --wadai-modern-primary: #14a800;
    --wadai-modern-secondary: #1d4354;
    --wadai-modern-accent: #ffc107;
    --wadai-modern-light: #f7f7f7;
    --wadai-modern-dark: #111111;
    --wadai-modern-gray: #5e6d55;
    --wadai-modern-white: #ffffff;
}

/* Modern Hero Section */
.hero-modern-section {
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
}

.hero-modern-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-modern-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Modern Search */
.search-modern-container .form-control {
    border-radius: 8px 0 0 8px;
    border: none;
    padding: 15px 20px;
    font-size: 1rem;
    box-shadow: var(--brand-shadow-soft);
}

.search-modern-container .btn-wadai-primary-modern {
    background-color: var(--wadai-modern-accent);
    color: var(--wadai-modern-secondary);
    border: none;
    border-radius: 0 8px 8px 0;
    padding: 15px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.search-modern-container .btn-wadai-primary-modern:hover {
    background-color: #e0a800;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

/* Modern Stats */
.stat-modern-box {
    text-align: center;
}

.stat-modern-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-modern-label {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 0;
}

/* Mobile App Preview */
.mobile-app-preview-modern {
    position: relative;
    text-align: center;
}

.mobile-app-preview-modern img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Modern Categories Section */
.categories-modern-section {
    padding: 80px 0;
    background: var(--brand-neutral-100);
}

.section-modern-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--wadai-modern-secondary);
    margin-bottom: 3rem;
}

.category-modern-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.category-modern-item {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.category-modern-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: var(--brand-primary);
}

.category-modern-icon {
    font-size: 1.5rem;
    color: var(--brand-primary);
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.category-modern-item h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--wadai-modern-secondary);
    font-weight: 600;
}

/* Modern How It Works */
.how-it-works-modern-section {
    background: var(--brand-bg-light);
}

.process-modern-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.process-modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.process-modern-icon {
    width: 80px;
    height: 80px;
    background: var(--brand-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.process-modern-icon i {
    font-size: 2rem;
    color: white;
}

.process-modern-steps {
    text-align: left;
    margin: 25px 0;
    padding-left: 20px;
}

.process-modern-steps li {
    margin-bottom: 10px;
    padding-left: 5px;
    color: var(--wadai-modern-gray);
    line-height: 1.5;
}

.btn-wadai-outline-modern {
    border: 2px solid var(--brand-primary);
    color: var(--brand-primary);
    background: transparent;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-wadai-outline-modern:hover {
    background: var(--brand-primary);
    color: white;
    text-decoration: none;
}

/* Modern Offer Section */
.offer-modern-section {
    background: var(--brand-neutral-100);
}

.bg-wadai-gradient-modern {
    background: linear-gradient(90deg, var(--brand-primary) 0%, var(--brand-primary-light) 100%);
}

.offer-modern-banner h3 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Modern Mobile App Section */
.mobile-app-modern-section {
    background: var(--brand-neutral-100);
}

.app-modern-features-list {
    list-style: none;
    padding: 0;
}

.app-modern-features-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: var(--wadai-modern-gray);
}

.app-modern-download-buttons .btn {
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
}

.mobile-app-modern-showcase {
    position: relative;
    text-align: center;
}

.mobile-app-modern-showcase img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Modern Trust Section */
.trust-modern-section {
    background: var(--brand-neutral-100);
}

.trust-modern-logos img {
    max-width: 600px;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.trust-modern-logos img:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-modern-title {
        font-size: 2rem;
    }
    
    .section-modern-title {
        font-size: 1.8rem;
    }
    
    .stat-modern-number {
        font-size: 1.8rem;
    }
    
    .category-modern-item {
        padding: 12px 15px;
    }
    
    .process-modern-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .search-modern-container .input-group-lg {
        flex-direction: column;
    }
    
    .search-modern-container .form-control {
        border-radius: 8px 8px 0 0;
        margin-bottom: -1px;
    }
    
    .search-modern-container .btn-wadai-primary-modern {
        border-radius: 0 0 8px 8px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-modern-section {
        padding: 60px 0;
    }
    
    .categories-modern-section {
        padding: 60px 0;
    }
    
    .app-modern-download-buttons {
        text-align: center;
    }
    
    .app-modern-download-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .app-modern-download-buttons .btn:last-child {
        margin-bottom: 0;
    }
}