/* ========================================
   KHALIWORK MODERN DESIGN ENHANCEMENTS
   Fiverr & Upwork Inspired Design
   ======================================== */

/* ============ ROOT VARIABLES ============ */
:root {
    --primary-color: #1dbf73;
    --primary-dark: #19a463;
    --secondary-color: #ff6b35;
    --accent-color: #4a90e2;
    --dark-color: #222325;
    --light-gray: #f5f5f5;
    --border-color: #e4e5e7;
    --text-dark: #404145;
    --text-light: #62646a;
    --success-color: #1dbf73;
    --warning-color: #ffbe5b;
    --danger-color: #ff6b6b;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ MODERN HERO SECTION ============ */
.banner-area {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.banner-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.banner-area .banner-content {
    position: relative;
    z-index: 2;
}

/* ============ ENHANCED SEARCH BAR ============ */
.banner-inner-search {
    background: white;
    border-radius: 50px;
    padding: 8px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.banner-inner-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.banner-inner-search input {
    border: none;
    padding: 15px 25px;
    font-size: 16px;
    border-radius: 50px;
}

.banner-inner-search input:focus {
    outline: none;
    box-shadow: none;
}

.banner-inner-search .cmn-btn {
    border-radius: 50px;
    padding: 15px 35px;
    background: var(--primary-color);
    border: none;
    font-weight: 600;
    transition: var(--transition);
}

.banner-inner-search .cmn-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* ============ TRUST BADGES ============ */
.trust-badges {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 24px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    color: white;
    font-weight: 500;
    transition: var(--transition);
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.trust-badge i {
    font-size: 20px;
    color: var(--success-color);
}

/* ============ MODERN PROJECT CARDS ============ */
.single-project {
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    background: white;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.single-project-thumb {
    position: relative;
    overflow: hidden;
    padding-top: 66.67%;
    /* 3:2 Aspect Ratio */
}

.single-project-thumb img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.single-project:hover .single-project-thumb img {
    transform: scale(1.1);
}

/* Seller Badge on Image */
.seller-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

/* Quick Action Buttons */
.quick-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition);
}

.single-project:hover .quick-actions {
    opacity: 1;
    transform: translateY(0);
}

.quick-action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: var(--transition);
}

.quick-action-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* ============ ENHANCED CONTENT AREA ============ */
.single-project-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.single-project-content-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 12px 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.single-project-content-title a {
    color: var(--text-dark);
    transition: var(--transition);
}

.single-project-content-title a:hover {
    color: var(--primary-color);
}

/* Rating Stars */
.single-project-content-review-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--warning-color);
    font-weight: 600;
}

.single-project-content-review-rating i {
    color: var(--warning-color);
}

/* ============ PRICE & DELIVERY ============ */
.single-project-bottom {
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.single-project-content-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
}

.single-project-content-price del {
    font-size: 14px;
    color: var(--text-light);
    margin-left: 8px;
}

.single-project-delivery {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-light);
}

.single-project-delivery-icon i {
    color: var(--primary-color);
}

.single-project-delivery-days {
    font-weight: 600;
    color: var(--text-dark);
}

/* ============ CATEGORY CARDS ============ */
.category-slider-item,
.single-category {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.category-slider-item:hover,
.single-category:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.category-slider-item .category-icon,
.single-category .category-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    transition: var(--transition);
}

.category-slider-item:hover .category-icon,
.single-category:hover .category-icon {
    transform: rotate(360deg) scale(1.1);
}

/* ============ SECTION HEADERS ============ */
.section-title {
    margin-bottom: 50px;
}

.section-title .title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title .title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-para {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============ BUTTONS ============ */
.cmn-btn {
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-bg-1 {
    background: var(--primary-color);
    color: white;
}

.btn-bg-1:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============ HOW IT WORKS SECTION ============ */
.how-it-works-item {
    background: white;
    padding: 40px 25px;
    border-radius: 16px;
    position: relative;
    transition: var(--transition);
    border: 2px solid transparent;
    height: 100%;
}

.how-it-works-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(29, 191, 115, 0.1), rgba(74, 144, 226, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.step-icon i {
    font-size: 36px;
    color: var(--primary-color);
    transition: var(--transition);
}

.how-it-works-item:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.how-it-works-item:hover .step-icon i {
    color: var(--accent-color);
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 20px 0 12px;
}

.step-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Connection Line Between Steps */
.how-it-works-item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    transform: translateY(-50%);
    z-index: -1;
}

.how-it-works-item:last-child::after {
    display: none;
}

/* ============ TOP SELLERS SECTION ============ */
.seller-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid var(--border-color);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.seller-card-header {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    height: 80px;
}

.seller-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--warning-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

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

.seller-favorite:hover {
    background: white;
    transform: scale(1.1);
}

.seller-favorite i {
    color: white;
    font-size: 14px;
}

.seller-favorite:hover i {
    color: var(--danger-color);
}

.seller-card-body {
    padding: 60px 20px 20px;
    text-align: center;
    flex-grow: 1;
    position: relative;
}

.seller-avatar {
    width: 90px;
    height: 90px;
    margin: -65px auto 15px;
    border-radius: 50%;
    border: 4px solid white;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

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

.seller-online-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 16px;
    height: 16px;
    background: var(--success-color);
    border: 3px solid white;
    border-radius: 50%;
}

.seller-name {
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0 5px;
}

.seller-name a {
    color: var(--text-dark);
    transition: var(--transition);
}

.seller-name a:hover {
    color: var(--primary-color);
}

.seller-location {
    font-size: 13px;
    color: var(--text-light);
    margin: 0 0 12px;
}

.seller-location i {
    color: var(--primary-color);
    margin-right: 4px;
}

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

.rating-stars {
    color: var(--warning-color);
    font-weight: 700;
    font-size: 14px;
}

.rating-stars i {
    margin-right: 4px;
}

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

.seller-card-footer {
    padding: 15px 20px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.seller-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-label {
    font-size: 11px;
    color: var(--text-light);
    text-transform: uppercase;
}

.stat-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.btn-view-profile {
    padding: 8px 16px;
    background: var(--primary-color);
    color: white;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

.btn-view-profile:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
    color: white;
}

/* ============ PROJECT SELLER INFO ============ */
.project-seller-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.seller-avatar-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--border-color);
}

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

.seller-name-small {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.project-orders-count {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 4px;
}

.project-orders-count i {
    color: var(--primary-color);
}

/* ============ TESTIMONIAL ENHANCEMENTS ============ */
.testimonial-item,
.single-testimonial {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.testimonial-item:hover,
.single-testimonial:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-item::before,
.single-testimonial::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    color: rgba(29, 191, 115, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.testimonial-author-thumb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.testimonial-author-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-author-content h6 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 5px;
}

.testimonial-author-content p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* ============ FAQ ENHANCEMENTS ============ */
.faq-item,
.accordion-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 2px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover,
.accordion-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.faq-title,
.accordion-button {
    background: white;
    padding: 20px 25px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.faq-title:hover,
.accordion-button:hover {
    background: rgba(29, 191, 115, 0.05);
}

.faq-title.active,
.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: white;
}

.faq-content,
.accordion-body {
    padding: 20px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ============ NEWSLETTER ENHANCEMENTS ============ */
.newsletter-area {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    position: relative;
    overflow: hidden;
}

.newsletter-area::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
    padding: 15px 35px;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* ============ PRICE PLAN ENHANCEMENTS ============ */
.single-pricing {
    background: white;
    padding: 35px 30px;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.single-pricing:hover {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.single-pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: var(--transition);
}

.single-pricing:hover::before {
    opacity: 1;
}

/* Popular Badge */
.single-pricing.popular {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.single-pricing.popular::after {
    content: 'POPULAR';
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-color);
    color: white;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.single-pricing-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.single-pricing-price {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 25px 0;
}

.single-pricing-price sub {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 400;
}

.single-pricing-list-item {
    padding: 12px 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.single-pricing-list-item-icon {
    width: 24px;
    height: 24px;
    background: rgba(29, 191, 115, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 12px;
}

.single-pricing-list-item-icon.cross-icon {
    background: rgba(255, 107, 107, 0.1);
    color: var(--danger-color);
}

.single-pricing .btn-wrapper .cmn-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.single-pricing .btn-wrapper .cmn-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* ============ TRUST STATS SECTION ============ */
.trust-stats-area {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.trust-stat-item {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.trust-stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.trust-stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
}

.trust-stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-stat-label {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
}

/* ============ FEATURED SERVICES SECTION ============ */
.featured-service-card {
    display: block;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
}

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

.featured-service-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

.featured-service-card:hover .featured-service-image img {
    transform: scale(1.1);
}

.featured-service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(29, 191, 115, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.featured-service-card:hover .featured-service-overlay {
    opacity: 1;
}

.explore-btn {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.featured-service-content {
    padding: 20px;
}

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

.featured-service-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* ============ SERVICE GUARANTEES SECTION ============ */
.guarantee-card {
    background: white;
    padding: 35px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--border-color);
}

.guarantee-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.guarantee-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(29, 191, 115, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
}

.guarantee-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.guarantee-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ============ CALL TO ACTION SECTION ============ */
.cta-area {
    position: relative;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(29, 191, 115, 0.9);
    z-index: 1;
}

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

.cta-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-bg-white {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.btn-bg-white:hover {
    background: transparent;
    color: white;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-color);
}

/* ============ HEADER STYLE THREE ============ */
.header-style-three {
    position: relative;
    overflow: hidden;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.85);
    z-index: 1;
}

.header-content-three {
    position: relative;
    z-index: 2;
}

.header-title-three {
    font-size: 52px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.header-description-three {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.search-wrapper-three {
    display: flex;
    background: white;
    border-radius: 50px;
    overflow: visible;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.search-input-three {
    border: none;
    padding: 18px 30px;
    font-size: 16px;
    flex: 1;
}

.search-input-three:focus {
    outline: none;
    box-shadow: none;
}

.search-btn-three {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 18px 40px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.search-btn-three:hover {
    background: var(--primary-dark);
}

.popular-searches {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

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

.popular-tag {
    color: white;
    text-decoration: none;
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 14px;
    transition: var(--transition);
}

.popular-tag:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.header-image-three {
    position: relative;
    z-index: 2;
}

/* Search Results Dropdown for Header Three */
.display_search_result_three {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 10px;
    display: none;
}

.display_search_result_three ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.display_search_result_three ul li {
    padding: 12px 20px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s;
}

.display_search_result_three ul li:last-child {
    border-bottom: none;
}

.display_search_result_three ul li:hover {
    background-color: #f8f9fa;
}

.display_search_result_three ul li a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #333;
}

.display_search_result_three ul li a:hover {
    color: var(--main-color-one);
}

.display_search_result_three .search-item-image {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
}

.display_search_result_three .search-item-content {
    flex: 1;
}

.display_search_result_three .search-item-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #333;
}

.display_search_result_three .search-item-price {
    font-size: 13px;
    color: var(--main-color-one);
    font-weight: 600;
}

.display_search_result_three .no-results {
    padding: 20px;
    text-align: center;
    color: #999;
}

/* ============ TRUST STATS STYLE TWO - MINIMAL ============ */
.trust-stat-minimal {
    text-align: center;
    padding: 20px;
}

.stat-number-minimal {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label-minimal {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

/* ============ TRUST STATS STYLE THREE - WITH OVERLAY ============ */
.trust-stats-three-area {
    position: relative;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(29, 191, 115, 0.9);
    z-index: 1;
}

.trust-stat-overlay {
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 2;
}

.stat-number-overlay {
    font-size: 56px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label-overlay {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-weight: 500;
}

/* ============ CTA STYLE TWO ============ */
.cta-two-wrapper {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--shadow-md);
}

.cta-two-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.cta-two-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 0;
}

.btn-bg-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-bg-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* ============ CTA STYLE THREE - OPTIONS ============ */
.cta-option-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
}

.cta-option-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.cta-option-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
}

.cta-option-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.cta-option-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-option-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.cta-option-btn:hover {
    background: var(--primary-dark);
    color: white;
    gap: 15px;
}

/* ============ RECENT VIEWED GIGS ============ */
.recent-gig-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.recent-gig-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.recent-gig-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.recent-gig-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.recent-gig-card:hover .recent-gig-image img {
    transform: scale(1.1);
}

.recent-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(29, 191, 115, 0.95);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.recent-gig-content {
    padding: 15px;
}

.seller-info-small {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.seller-avatar-tiny {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    overflow: hidden;
}

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

.seller-name-tiny {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.recent-gig-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 12px;
}

.recent-gig-title a {
    color: var(--text-dark);
    text-decoration: none;
}

.recent-gig-title a:hover {
    color: var(--primary-color);
}

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

.gig-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

/* ============ TESTIMONIAL STYLE TWO - GRID ============ */
.testimonial-card-two {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.testimonial-rating-two {
    color: #ffa500;
    margin-bottom: 15px;
}

.testimonial-text-two {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author-two {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image-two {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

.author-image-two img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.author-designation-two {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
}

/* ============ TESTIMONIAL STYLE THREE - SLIDER ============ */
.testimonial-three-area {
    position: relative;
}

.testimonial-overlay-three {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(29, 191, 115, 0.9);
    z-index: 1;
}

.testimonial-slide-three {
    text-align: center;
    position: relative;
    z-index: 2;
}

.quote-icon-three {
    font-size: 60px;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.testimonial-text-three {
    font-size: 20px;
    color: white;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author-three {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.author-image-three {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
}

.author-image-three img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name-three {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 3px;
}

.author-company-three {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ============ FEATURED SERVICES STYLE TWO - ICON BASED ============ */
.service-icon-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-icon-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    transition: var(--transition);
}

.service-icon-card:hover .service-icon-box {
    transform: scale(1.1) rotate(10deg);
}

.service-icon-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.service-icon-count {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 0;
}

.service-arrow {
    margin-top: 10px;
    color: var(--primary-color);
    opacity: 0;
    transition: var(--transition);
}

.service-icon-card:hover .service-arrow {
    opacity: 1;
}

/* ============ FEATURED SERVICES STYLE THREE - LARGE CARDS ============ */
.service-large-card {
    display: block;
    text-decoration: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.service-large-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

.service-large-card:hover .service-large-image img {
    transform: scale(1.1);
}

.service-large-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.service-large-content {
    width: 100%;
}

.service-large-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.service-large-description {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.service-large-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.service-large-card:hover .service-large-btn {
    gap: 12px;
}

/* ============ SERVICE GUARANTEES STYLE TWO - HORIZONTAL ============ */
.guarantee-horizontal-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.guarantee-horizontal-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.guarantee-horizontal-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    flex-shrink: 0;
}

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

.guarantee-horizontal-description {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* ============ SERVICE GUARANTEES STYLE THREE - WITH IMAGE ============ */
.guarantee-list-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.guarantee-list-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
}

.guarantee-list-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.guarantee-list-description {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .section-title .title {
        font-size: 28px;
    }

    .trust-badges {
        gap: 15px;
    }

    .trust-badge {
        padding: 10px 16px;
        font-size: 14px;
    }

    .how-it-works-item::after {
        display: none;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

    .single-pricing-price {
        font-size: 36px;
    }

    .trust-stat-number {
        font-size: 36px;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .cmn-btn {
        width: 100%;
    }
}

/* ============ HOW IT WORKS STYLE TWO - TIMELINE ============ */
.timeline-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        gap: 15px;
        padding-left: 20px !important;
    }

    .timeline-number {
        width: 45px !important;
        height: 45px !important;
        font-size: 18px !important;
    }

    .timeline-item:not(:last-child)::after {
        left: 42px !important;
        top: 50px !important;
    }
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 70px;
    width: 2px;
    height: calc(100% + 10px);
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(29, 191, 115, 0.3);
}

.timeline-content {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: rgba(29, 191, 115, 0.1);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.timeline-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.timeline-description {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.timeline-company {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* ============ HOW IT WORKS STYLE THREE - IMAGE BASED ============ */
.works-overlay-three {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.step-image-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.step-image-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.step-number-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: white;
    z-index: 2;
}

.step-image {
    height: 200px;
    overflow: hidden;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-image-content {
    padding: 20px;
}

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

.step-image-description {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* ============ TOP SELLERS STYLE TWO - GRID ============ */
.seller-grid-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.seller-grid-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.seller-grid-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.seller-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.verified-badge-grid {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.seller-grid-content {
    padding: 20px;
}

.seller-grid-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.seller-grid-name a {
    color: var(--text-dark);
    text-decoration: none;
}

.seller-grid-name a:hover {
    color: var(--primary-color);
}

.seller-grid-title {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}

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

.stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: var(--text-light);
}

.stat-item i {
    color: #ffa500;
}

.seller-grid-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.seller-grid-btn:hover {
    background: var(--primary-dark);
    color: white;
}

/* ============ TOP SELLERS STYLE THREE - HORIZONTAL ============ */
.seller-horizontal-card {
    display: flex;
    gap: 20px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-decoration: none;
}

.seller-horizontal-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.seller-horizontal-image {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.seller-horizontal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.verified-badge-horizontal {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 25px;
    height: 25px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
}

.seller-horizontal-content {
    flex: 1;
}

.seller-horizontal-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.seller-horizontal-name a {
    color: var(--text-dark);
    text-decoration: none;
}

.seller-horizontal-name a:hover {
    color: var(--primary-color);
}

.seller-horizontal-title {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.seller-horizontal-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--text-light);
}

.meta-item i {
    color: #ffa500;
}

.seller-horizontal-description {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.seller-horizontal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.seller-horizontal-btn:hover {
    gap: 12px;
    color: var(--primary-dark);
}

/* ============ NEWSLETTER STYLE TWO ============ */
.newsletter-two-wrapper {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.newsletter-two-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.newsletter-two-description {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.newsletter-two-input-group {
    display: flex;
    gap: 10px;
}

.newsletter-two-input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
}

.newsletter-two-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-two-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-two-btn:hover {
    background: var(--primary-dark);
}

/* ============ NEWSLETTER STYLE THREE ============ */
.newsletter-overlay-three {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(29, 191, 115, 0.9);
    z-index: 1;
}

.newsletter-three-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.newsletter-three-description {
    font-size: 18px;
    margin-bottom: 30px;
}

.newsletter-three-input-wrapper {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.newsletter-three-input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
}

.newsletter-three-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-three-btn {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-three-btn:hover {
    transform: scale(1.05);
}

.newsletter-privacy-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* ============ RECENT VIEWED JOBS ============ */
.recent-job-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.recent-job-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.recent-job-header {
    position: relative;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.job-company-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
}

.job-company-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-badge-job {
    background: rgba(29, 191, 115, 0.95);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.recent-job-content {
    padding: 20px;
}

.recent-job-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.recent-job-title a {
    color: var(--text-dark);
    text-decoration: none;
}

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

.job-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.job-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--text-light);
}

.job-meta-item i {
    color: var(--primary-color);
}

.job-budget-info {
    background: rgba(29, 191, 115, 0.1);
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 15px;
}

.budget-label {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 3px;
}

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

.recent-job-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.recent-job-btn:hover {
    background: var(--primary-dark);
    color: white;
    gap: 12px;
}