/* FÈ SA TaskRabbit-Inspired Design CSS */

:root {
    --primary: #FF5722;
    --secondary: #1A237E;
    --accent: #FF7043;
    --success: #4CAF50;
    --text: #212121;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg: #FFFFFF;
    --bg-light: #FAFAFA;
    --border: #E5E5E5;
    --border-light: #F0F0F0;
}

/* Hero Section */
.hero {
    padding: 80px 0 120px;
    background: #FFFFFF !important;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    color: #FFFFFF;
    margin-bottom: 0px;
    letter-spacing: -0.02em;
}

.hero .highlight {
    color: var(--primary);
}

.hero p {
    font-size: 20px;
    color: #FFFFFF;
    margin-bottom: 0px;
    line-height: 1.5;
}

/* Hero Search */
.hero-search {
    margin-bottom: 40px;
    width: 100%;
}

.search-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    overflow: hidden;
}

.search-input {
    flex: 1;
    padding: 20px 24px;
    border: none;
    font-size: 16px;
    color: var(--text);
    outline: none;
}

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

.search-button {
    background: var(--primary);
    border: none;
    padding: 20px 24px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.search-button:hover {
    background: var(--accent);
}

.search-button i {
    font-size: 18px;
    color: white;
}

/* Trending Services */
.trending-services {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    width: 100%;
}

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

.trending-items {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.trending-item {
    background: rgba(255, 87, 34, 0.1);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.trending-item:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-1px);
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

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

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

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--text);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Location Badge */
.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 8px 16px;
    font-size: 14px;
    color: var(--text);
    margin-bottom: 24px;
    justify-content: center;
}

.location-badge i {
    color: var(--primary);
}

/* Stats Section */
.stats {
    background: var(--bg);
    padding: 60px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

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

.stat-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

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

/* Service Selector */
.service-selector {
    padding: 100px 0;
    background: var(--bg-light);
}

.service-categories {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    overflow-x: auto;
    padding: 0 20px;
}

.category-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 3px solid transparent;
    min-width: 120px;
    text-align: center;
}

.category-tab:hover {
    background: var(--bg-light);
}

.category-tab.active {
    border-bottom-color: var(--primary);
}

.category-tab.active .category-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.category-tab.active .category-icon i {
    color: white;
}

.category-tab.active span {
    color: var(--primary);
    font-weight: 600;
}

.category-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.category-icon i {
    font-size: 24px;
    color: var(--text-light);
    transition: color 0.2s ease;
}

.category-tab span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    transition: all 0.2s ease;
}

/* Service Options */
.service-options {
    min-height: 200px;
}

.service-category-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.service-category-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.service-pill {
    background: white;
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.service-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.2);
}

.service-description {
    margin-top: 32px;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.service-benefit,
.service-trending {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-light);
}

.service-benefit i {
    color: var(--success);
}

.service-trending i {
    color: var(--primary);
}

/* Trust Section */
.trust {
    padding: 100px 0;
    background: var(--bg);
}

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

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-light);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

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

.trust-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary), #3949AB);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
}

.trust-icon i {
    font-size: 32px;
    color: white;
}

.trust-item h3 {
    font-weight: 600;
    font-size: 24px;
    color: var(--text);
    margin-bottom: 12px;
}

.trust-item p {
    color: var(--text-light);
    font-size: 16px;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.cta-content {
    text-align: center;
    color: white;
}

.cta h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-cta {
    background: white;
    color: var(--primary);
    font-weight: 700;
    font-size: 18px;
    padding: 20px 40px;
}

.btn-cta:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 40px 0 20px;
    }

    .hero-content {
        text-align: center;
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 40px;
        color: #FFFFFF;
    }

    .hero p {
        font-size: 16px;
        color: #FFFFFF;
        margin-bottom: 0px;
    }

    .search-form {
        margin: 0 0;
    }

    .search-input {
        padding: 16px 20px;
        font-size: 15px;
    }

    .search-button {
        padding: 16px 20px;
    }

    .service-selector {
        padding: 0 0 40px 0;
    }

    .service-categories {
        justify-content: flex-start;
        padding: 20px 0 0 20px;
        margin-bottom: 24px;
    }

    .category-tab {
        min-width: 90px;
        padding: 12px 16px 16px;
    }

    .category-icon {
        width: 36px;
        height: 36px;
    }

    .category-icon i {
        font-size: 16px;
    }

    .category-tab span {
        font-size: 12px;
    }

    .service-pills {
        gap: 8px;
        padding: 0 20px;
        justify-content: flex-start;
    }

    .service-pill {
        padding: 10px 16px;
        font-size: 13px;
    }

    .service-description {
        padding: 0 20px;
        margin-top: 24px;
    }

    .service-benefit,
    .service-trending {
        font-size: 14px;
    }

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

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 36px;
    }

    .cta h2 {
        font-size: 36px;
    }
} 