/* =====================================================
   MODERN HOMEPAGE REDESIGN CSS - ZIRVE360
   Complete Professional Freelancer Platform Design
   ===================================================== */

/* ===== ROOT VARIABLES ===== */
:root {
    /* Primary Colors */
    --primary-color: #FF6B35;
    --primary-hover: #e55a2b;
    --primary-light: rgba(255, 107, 53, 0.1);

    /* Secondary Colors */
    --secondary-color: #2C3E50;
    --secondary-light: #34495e;

    /* Accent Colors */
    --accent-blue: #3498DB;
    --accent-purple: #9B59B6;
    --accent-green: #27AE60;

    /* Neutral Colors */
    --text-dark: #2C3E50;
    --text-gray: #6C757D;
    --text-light: #95A5A6;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --gray-light: #E9ECEF;
    --gray-medium: #DEE2E6;
    --gray-dark: #495057;

    /* Shadows */
    --shadow-xs: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.18);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Z-Index */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-modal: 1000;
    --z-tooltip: 1100;
}

/* ===== GLOBAL STYLES ===== */
.modern-homepage {
    overflow-x: hidden;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== 1. HERO SECTION REDESIGN ===== */
.hero-section-redesign {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    min-height: 85vh;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-section-redesign::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-section-redesign::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-content-modern {
    position: relative;
    z-index: 10;
}

.hero-title-modern {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle-modern {
    font-size: 1.4rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
}

/* Modern Search Box */
.hero-search-modern {
    margin-bottom: 48px;
}

.search-box-modern {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 700px;
    border: 1px solid var(--gray-light);
    transition: var(--transition-base);
}

.search-box-modern:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-2px);
}

.search-field-group {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0;
}

.category-select-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 16px;
    border-right: 1px solid var(--gray-light);
}

.category-select-wrapper i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 18px;
}

.category-select-modern {
    border: none;
    background: transparent;
    padding: 16px 8px;
    font-size: 15px;
    color: var(--text-dark);
    min-width: 160px;
    outline: none;
    cursor: pointer;
}

.search-input-wrapper {
    flex: 1;
    padding: 0 20px;
}

.search-input-modern {
    width: 100%;
    border: none;
    padding: 16px 0;
    font-size: 15px;
    color: var(--text-dark);
    outline: none;
    background: transparent;
}

.search-input-modern::placeholder {
    color: var(--text-light);
}

.search-btn-modern {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--radius-md);
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition-base);
}

.search-btn-modern:hover {
    background: var(--primary-hover);
    transform: scale(1.02);
}

/* Hero Features */
.hero-features-modern {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Hero Statistics - Bottom Corner Cards */
.hero-stats-bottom {
    position: absolute;
    bottom: 40px;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stats-row {
    display: flex;
    gap: 12px;
}

.stat-card-mini {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    min-width: 120px;
}

.stat-card-mini:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
}

.stat-card-mini i {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
    flex-shrink: 0;
}

.stat-value {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.stat-text {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon-modern {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
}

.hero-feature-item span {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

/* Hero Illustration */
.hero-illustration-modern {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.gradient-circle-bg {
    position: absolute;
    width: 580px;
    height: 580px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue), var(--accent-purple));
    border-radius: 50%;
    opacity: 0.9;
    animation: rotate 20s linear infinite;
}

.circle-dots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.3) 2px, transparent 2px);
    background-size: 40px 40px;
    border-radius: 50%;
    animation: rotate -15s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.rocket-container {
    position: relative;
    z-index: 20;
}

.rocket-icon-modern {
    width: 144px;
    height: 144px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    animation: float 6s ease-in-out infinite;
}

.rocket-icon-modern i {
    font-size: 72px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rocket-trail {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 100px;
    background: linear-gradient(to bottom, rgba(255,107,53,0.3), transparent);
    border-radius: 50%;
    filter: blur(20px);
    animation: trail 2s ease-in-out infinite;
}

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

@keyframes trail {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scaleY(0.8); }
    50% { opacity: 1; transform: translateX(-50%) scaleY(1.2); }
}

/* Success Cards */
.success-card-1,
.success-card-2 {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    min-width: 280px;
    z-index: 30;
}

.success-card-1 {
    top: 20%;
    right: -100px;
}

.success-card-2 {
    bottom: 20%;
    left: -100px;
}

.animate-float {
    animation: floatCard 8s ease-in-out infinite;
}

.animate-float-delayed {
    animation: floatCard 8s ease-in-out infinite;
    animation-delay: 2s;
}

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

.success-card-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-light);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-details {
    flex: 1;
}

.user-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.user-role {
    font-size: 13px;
    color: var(--text-gray);
}

.earnings-info {
    text-align: center;
    padding: 12px;
    background: var(--off-white);
    border-radius: var(--radius-sm);
}

.earnings-amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-green);
    margin-bottom: 4px;
}

.earnings-period {
    font-size: 12px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-success-message {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    background: rgba(255, 255, 255, 0.95);
    padding: 24px 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.hero-success-message h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.hero-success-message p {
    font-size: 14px;
    color: var(--text-gray);
}

/* ===== 2. STATISTICS BAR ===== */
.statistics-bar-modern {
    background: var(--white);
    padding: 60px 0;
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(7, auto);
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.stat-item-modern {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
}

.stat-icon-wrapper {
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    transition: var(--transition-base);
}

.stat-item-modern:hover .stat-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary-color);
    color: var(--white);
}

.stat-content {
    text-align: left;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-suffix {
    font-size: 20px;
    color: var(--primary-color);
}

.stat-label {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: var(--gray-light);
}

/* ===== 3. CATEGORIES SECTION ===== */
.categories-section-modern {
    padding: 100px 0;
    background: var(--off-white);
}

.section-header-modern {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-modern {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle-modern {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.categories-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.category-card-redesign {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    cursor: pointer;
}

.category-card-redesign:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.category-link-modern {
    display: block;
    text-decoration: none;
    color: inherit;
}

.category-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.category-img-modern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.category-placeholder-modern {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--white);
}

.category-card-redesign:hover .category-img-modern {
    transform: scale(1.1);
}

.category-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: var(--transition-base);
}

.category-card-redesign:hover .category-hover-overlay {
    opacity: 1;
}

.view-services-btn {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-info-modern {
    padding: 20px;
}

.category-title-modern {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.category-service-count {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 14px;
}

.count-number {
    font-weight: 600;
    color: var(--primary-color);
}

/* ===== 4. FEATURED SERVICES ===== */
.featured-services-modern {
    padding: 100px 0;
    background: var(--white);
}

.category-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 24px;
    background: var(--off-white);
    border: 2px solid transparent;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-tab:hover {
    border-color: var(--primary-color);
    background: var(--primary-light);
}

.filter-tab.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card-redesign {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
    transition: var(--transition-base);
    position: relative;
}

.service-card-redesign:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-card-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-img-modern {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card-redesign:hover .service-img-modern {
    transform: scale(1.05);
}

.favorite-btn-modern {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
}

.favorite-btn-modern:hover,
.favorite-btn-modern.active {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.featured-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    background: var(--accent-green);
    color: var(--white);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-content-redesign {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-header-modern {
    margin-bottom: 12px;
}

.service-category-badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.service-title-redesign {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0;
}

.service-title-redesign a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-base);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-title-redesign a:hover {
    color: var(--primary-color);
}

.service-rating-redesign {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.rating-stars i {
    font-size: 12px;
}

.rating-stars i.filled {
    color: #FFC107;
}

.rating-stars i.empty {
    color: var(--gray-light);
}

.rating-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.rating-count {
    font-size: 13px;
    color: var(--text-gray);
}

.seller-info-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 16px;
}

.seller-avatar-wrapper {
    position: relative;
}

.seller-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gray-light);
}

.verified-icon {
    position: absolute;
    bottom: -2px;
    right: -2px;
    background: var(--white);
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-green);
    font-size: 10px;
}

.seller-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.seller-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.seller-level {
    font-size: 12px;
    color: var(--text-gray);
}

.service-footer-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.service-price-wrapper {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 11px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.view-service-btn {
    padding: 8px 16px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-base);
}

.view-service-btn:hover {
    background: var(--primary-hover);
    transform: translateX(2px);
}

.more-services-btn,
.view-all-btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
}

.more-services-btn:hover,
.view-all-btn-modern:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== 5. CTA SECTION ===== */
.cta-section-modern {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue), var(--accent-purple));
    z-index: 1;
}

.gradient-shape-1,
.gradient-shape-2,
.gradient-shape-3 {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.gradient-shape-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -100px;
    animation: float 15s ease-in-out infinite;
}

.gradient-shape-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -50px;
    animation: float 20s ease-in-out infinite reverse;
}

.gradient-shape-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 20%;
    animation: float 12s ease-in-out infinite;
}

.cta-content-modern {
    position: relative;
    z-index: 10;
}

.cta-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.cta-title-modern {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.cta-subtitle-modern {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 48px;
}

.cta-benefit-item {
    display: flex;
    gap: 16px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.benefit-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.benefit-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.cta-action-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
    box-shadow: var(--shadow-md);
}

.cta-primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--off-white);
}

.cta-secondary-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-base);
}

.cta-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.cta-stats-modern {
    position: relative;
    z-index: 10;
}

.success-stories-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stories-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.stories-header h3 {
    font-size: 20px;
    color: var(--white);
    margin: 0;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
}

.pulse {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.success-metrics {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.metric-card {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.metric-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(4px);
}

.metric-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.metric-data {
    flex: 1;
}

.metric-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.metric-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== 6. TESTIMONIALS SECTION ===== */
.reviews-section-modern {
    padding: 100px 0;
    background: var(--off-white);
}

.review-summary {
    margin-top: 24px;
}

.overall-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.overall-rating .rating-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
}

.overall-rating .rating-stars {
    display: flex;
    gap: 4px;
}

.overall-rating .rating-stars i {
    font-size: 20px;
    color: #FFC107;
}

.overall-rating .total-reviews {
    font-size: 16px;
    color: var(--text-gray);
    font-weight: 500;
}

.testimonials-container {
    margin-top: 60px;
}

.testimonial-card-modern {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.testimonial-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.quote-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
}

.testimonial-rating {
    display: flex;
    gap: 2px;
}

.testimonial-rating i {
    font-size: 14px;
    color: #FFC107;
}

.testimonial-content {
    flex: 1;
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.customer-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 2px solid var(--primary-light);
}

.customer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.customer-details {
    display: flex;
    flex-direction: column;
}

.customer-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.customer-role {
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: var(--accent-green);
    color: var(--white);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* ===== 7. JOB LISTINGS SECTION ===== */
.job-listings-modern {
    padding: 100px 0;
    background: var(--white);
}

.jobs-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.job-card-modern {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-light);
    transition: var(--transition-base);
    overflow: hidden;
}

.job-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.job-card-inner {
    padding: 24px;
}

.job-header-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.urgent-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: #FF5722;
    color: var(--white);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.job-posted-time {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--text-gray);
}

.job-content-modern {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.job-title-modern {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.job-title-modern a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-base);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.job-title-modern a:hover {
    color: var(--primary-color);
}

.job-company-modern {
    display: flex;
    gap: 12px;
}

.company-logo-wrapper {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.company-logo {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.company-logo-placeholder {
    width: 100%;
    height: 100%;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 20px;
}

.company-info {
    flex: 1;
}

.company-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 4px 0;
}

.job-meta-info {
    display: flex;
    gap: 12px;
}

.job-location,
.job-category {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--text-gray);
}

.job-location i,
.job-category i {
    color: var(--primary-color);
    font-size: 11px;
}

.job-details-modern {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.job-detail-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-gray);
}

.job-detail-item i {
    color: var(--primary-color);
    font-size: 14px;
}

.job-footer-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--gray-light);
}

.job-budget-modern {
    display: flex;
    flex-direction: column;
}

.budget-label {
    font-size: 11px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.budget-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-green);
}

.apply-btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-base);
}

.apply-btn-modern:hover {
    background: var(--primary-hover);
    transform: translateX(2px);
}

/* ===== 8. TOP SELLERS SECTION ===== */
.top-sellers-modern {
    padding: 100px 0;
    background: var(--off-white);
}

.sellers-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.seller-card-modern {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.seller-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.seller-card-inner {
    position: relative;
    z-index: 10;
}

.top-seller-ribbon {
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: var(--white);
    padding: 8px 24px;
    transform: rotate(45deg) translateY(-20px) translateX(30px);
    transform-origin: center;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 4px;
}

.seller-profile-modern {
    text-align: center;
}

.seller-avatar-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.seller-avatar-img {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 4px solid var(--primary-light);
}

.online-indicator {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    background: #4CAF50;
    border: 3px solid var(--white);
    border-radius: var(--radius-full);
}

.verified-badge-modern {
    position: absolute;
    top: 0;
    right: 0;
    width: 28px;
    height: 28px;
    background: var(--accent-green);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    border: 2px solid var(--white);
}

.seller-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.seller-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.seller-expertise {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.seller-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.seller-rating .rating-stars {
    display: flex;
    gap: 2px;
}

.seller-rating .rating-stars i {
    font-size: 14px;
}

.seller-rating .rating-stars i.filled {
    color: #FFC107;
}

.rating-info {
    font-size: 14px;
    color: var(--text-gray);
}

.seller-skills {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.skill-tag {
    padding: 4px 12px;
    background: var(--primary-light);
    color: var(--primary-color);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.seller-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.seller-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-gray);
}

.seller-stats .stat-item i {
    color: var(--accent-green);
    font-size: 14px;
}

.seller-rate {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px;
    background: var(--off-white);
    border-radius: var(--radius-md);
}

.rate-label {
    font-size: 11px;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.rate-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.view-profile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-base);
}

.view-profile-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up {
    animation: fadeIn 0.6s ease-out;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-title-modern { font-size: 3rem; }
    .section-title-modern { font-size: 2.5rem; }
    .categories-grid-modern { grid-template-columns: repeat(3, 1fr); }
    .services-grid-modern { grid-template-columns: repeat(3, 1fr); }
    .jobs-grid-modern { grid-template-columns: repeat(2, 1fr); }
    .sellers-grid-modern { grid-template-columns: repeat(2, 1fr); }
    .success-card-1 { right: -50px; }
    .success-card-2 { left: -50px; }
}

@media (max-width: 992px) {
    .hero-title-modern { font-size: 2.5rem; }
    .hero-subtitle-modern { font-size: 1.2rem; }
    .section-title-modern { font-size: 2.2rem; }

    .stats-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-divider:nth-child(4),
    .stat-divider:nth-child(2) { display: none; }

    .categories-grid-modern { grid-template-columns: repeat(2, 1fr); }
    .services-grid-modern { grid-template-columns: repeat(2, 1fr); }

    .cta-benefits-grid { grid-template-columns: 1fr; }

    .success-card-1,
    .success-card-2 { display: none; }

    .hero-illustration-modern { height: 400px; }
    .gradient-circle-bg { width: 350px; height: 350px; }
}

@media (max-width: 768px) {
    .hero-section-redesign {
        padding: 80px 0 60px;
        min-height: auto;
    }

    .hero-title-modern {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .hero-subtitle-modern {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .hero-stats-bottom {
        position: static;
        margin-top: 30px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .stats-row {
        gap: 8px;
    }

    .stat-card-mini {
        min-width: 100px;
        padding: 10px 12px;
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }

    .stat-card-mini i {
        width: 24px;
        height: 24px;
        font-size: 10px;
        margin-bottom: 2px;
    }

    .stat-value {
        font-size: 1rem;
    }

    .stat-text {
        font-size: 10px;
    }

    .search-box-modern {
        flex-direction: column;
        gap: 0;
    }

    .search-field-group {
        flex-direction: column;
        width: 100%;
    }

    .category-select-wrapper {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--gray-light);
    }

    .search-input-wrapper {
        width: 100%;
        padding: 0 16px;
    }

    .search-btn-modern {
        width: 100%;
        justify-content: center;
        margin-top: 8px;
    }

    .hero-features-modern {
        flex-direction: column;
        gap: 16px;
    }

    .stats-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-divider { display: none; }

    .section-title-modern { font-size: 1.8rem; }
    .section-subtitle-modern { font-size: 1rem; }

    .categories-grid-modern,
    .services-grid-modern,
    .jobs-grid-modern,
    .sellers-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-title-modern { font-size: 2rem; }
    .cta-subtitle-modern { font-size: 1.1rem; }

    .cta-action-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-primary-btn,
    .cta-secondary-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-success-message {
        position: static;
        margin-top: 40px;
        transform: none;
    }

    .category-filter-tabs {
        overflow-x: auto;
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 8px;
        padding-bottom: 10px;
    }

    .filter-tab {
        white-space: nowrap;
    }
}

@media (max-width: 576px) {
    .hero-title-modern { font-size: 1.75rem; }
    .section-title-modern { font-size: 1.5rem; }

    .hero-illustration-modern {
        height: 300px;
        margin-top: 40px;
    }

    .gradient-circle-bg {
        width: 250px;
        height: 250px;
    }

    .rocket-icon-modern {
        width: 80px;
        height: 80px;
    }

    .rocket-icon-modern i {
        font-size: 40px;
    }

    .stat-number {
        font-size: 24px;
    }

    .category-image-wrapper {
        height: 160px;
    }

    .service-image-wrapper {
        height: 180px;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.mt-5 { margin-top: 3rem; }
.mb-5 { margin-bottom: 3rem; }
.gap-4 { gap: 1.5rem; }
.gap-3 { gap: 1rem; }

/* ===== LOADING STATES ===== */
.skeleton {
    background: linear-gradient(90deg, var(--gray-light) 25%, var(--gray-medium) 50%, var(--gray-light) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== PRINT STYLES ===== */
@media print {
    .hero-section-redesign,
    .cta-section-modern,
    .category-filter-tabs,
    .favorite-btn-modern,
    .view-all-btn-modern {
        display: none;
    }
}