/* ========================================
   XidmətTap.az - TaskRabbit Style Design
   Clean, Simple, Professional
   ======================================== */

/* Hero Section - TaskRabbit Style */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    padding: 100px 0 60px;
    overflow: visible;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.05) 0%, rgba(26, 26, 26, 0.05) 100%);
    border-radius: 0 0 0 100px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: rgba(26, 26, 26, 0.1);
    color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-text {
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6C757D;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

/* TaskRabbit Style Search */
.search-panel {
    margin-bottom: 40px;
}

.search-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: stretch;
    max-width: 700px;
    border: 1px solid #E9ECEF;
    overflow: hidden;
}

.search-input-group {
    flex: 2;
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-right: 1px solid #E9ECEF;
}

.search-icon {
    color: #6C757D;
    font-size: 1.25rem;
    margin-right: 12px;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    color: #1A1A1A;
    padding: 18px 0;
    font-weight: 400;
}

.search-input::placeholder {
    color: #ADB5BD;
}

.search-location-group {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 20px;
    border-right: 1px solid #E9ECEF;
}

.location-icon {
    color: #6C757D;
    font-size: 1.1rem;
    margin-right: 10px;
}

.location-select {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: #1A1A1A;
    cursor: pointer;
    background: transparent;
    padding: 18px 0;
}

.search-button {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 18px 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    font-size: 1rem;
}

.search-button:hover {
    background: #000000;
}

/* Stats - Clean Style */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: #6C757D;
    font-weight: 500;
}

/* Trust Badges - Minimal */
.trust-badges {
    display: flex;
    justify-content: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #495057;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    font-size: 1.1rem;
    color: #1a1a1a;
}

/* CTA Buttons - Simple */
.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-cta-primary {
    background: #1a1a1a;
    color: white;
    border: 2px solid #1a1a1a;
}

.btn-cta-primary:hover {
    background: #000000;
    border-color: #000000;
    transform: translateY(-2px);
    color: white;
}

.btn-cta-secondary {
    background: white;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.btn-cta-secondary:hover {
    background: #FFF5F2;
    transform: translateY(-2px);
}

/* Categories Section - TaskRabbit Grid */
.categories-section {
    padding: 80px 0;
    background: white;
}

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

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6C757D;
    font-weight: 400;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

/* TaskRabbit Style Category Cards */
.category-card-visual {
    display: block;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E9ECEF;
    transition: all 0.2s;
    text-decoration: none;
    height: 100%;
}

.category-card-visual:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #1a1a1a;
}

.category-visual-container {
    position: relative;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F8F9FA;
}

.category-visual-icon i {
    font-size: 4rem;
    color: #1a1a1a;
    position: relative;
    z-index: 2;
}

.category-title-overlay-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-top: 1px solid #E9ECEF;
}

.category-title-visual {
    color: #1A1A1A;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

.category-info-visual {
    padding: 16px 20px;
    background: white;
}

.category-stats-visual {
    display: flex;
    justify-content: space-around;
    gap: 15px;
}

.category-stat-visual {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    color: #6C757D;
}

.category-stat-visual i {
    font-size: 1rem;
    color: #1a1a1a;
}

.category-stat-visual strong {
    color: #1A1A1A;
    font-weight: 600;
}

/* VIP Section - Clean Style */
.vip-section {
    padding: 80px 0;
    background: #FAFBFC;
}

.vip-badge-large {
    display: inline-block;
    background: #FFF3E0;
    color: #1a1a1a;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 15px;
    border: 1px solid #FFE0B2;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.provider-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #E9ECEF;
    transition: all 0.2s;
}

.vip-provider {
    border-color: #FFE0B2;
    background: #FFFAF5;
}

.provider-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.provider-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #1a1a1a;
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.provider-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #1a1a1a;
}

.provider-image-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #1a1a1a;
    color: white;
    font-size: 2rem;
    border: 3px solid #1a1a1a;
}

.provider-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1A1A1A;
}

.provider-profession {
    color: #1a1a1a;
    font-weight: 500;
}

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

.btn-primary-custom {
    background: #1a1a1a;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-primary-custom:hover {
    background: #000000;
    transform: translateY(-2px);
}

/* How It Works - Clean */
.how-it-works-section {
    padding: 80px 0;
    background: white;
}

.steps-container {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.step-card {
    flex: 1;
    background: white;
    border: 1px solid #E9ECEF;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.2s;
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    color: white;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.step-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 12px;
}

.step-description {
    color: #6C757D;
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-arrow {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    color: #DEE2E6;
}

/* Testimonials - Simple */
.testimonials-section {
    padding: 80px 0;
    background: #FAFBFC;
}

.testimonial-card {
    background: white;
    border: 1px solid #E9ECEF;
    border-radius: 12px;
    padding: 28px;
    transition: all 0.2s;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-stars i {
    color: #FFC107;
    font-size: 1rem;
}

.testimonial-text {
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.testimonial-author {
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 0.875rem;
    color: #6C757D;
}

/* CTA Section - Simple */
.cta-section {
    background: #1A1A1A;
    padding: 60px 0;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.cta-text p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Feature Box - Minimal */
.feature-box {
    text-align: center;
    padding: 24px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(26, 26, 26, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.feature-icon i {
    font-size: 1.75rem;
    color: #1a1a1a;
}

.feature-box h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.feature-box p {
    font-size: 0.875rem;
    color: #6C757D;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .search-container {
        flex-direction: column;
    }

    .search-input-group,
    .search-location-group {
        border-right: none;
        border-bottom: 1px solid #E9ECEF;
        padding: 16px 20px;
    }

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

    .steps-container {
        flex-direction: column;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

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

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