/* Enhanced Hero Section */
.hero {
    background: linear-gradient(rgba(0, 86, 179, 0.8), rgba(0, 86, 179, 0.9)), url('../images/hero-bg.jpg') no-repeat center center/cover;
    color: white;
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png');
    opacity: 0.1;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    animation: fadeInDown 1s ease;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    animation: fadeIn 1.5s ease;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 2s ease;
}

.hero .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    min-width: 180px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.hero .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Services section enhancement */
.services {
    padding: 100px 0;
}

.service-card {
    padding: 40px 25px;
    border-radius: 15px;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    transition: transform 0.5s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2);
}

.service-title {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.service-card p {
    margin-bottom: 25px;
    color: var(--gray-600);
    flex-grow: 1;
}

.service-card .btn {
    margin-top: auto;
    width: 100%;
    border-radius: 8px;
}

/* Featured workers enhancements */
.worker-card {
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.4s ease;
    height: 100%;
}

.worker-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.worker-image {
    height: 220px;
    transition: all 0.5s ease;
}

.worker-card:hover .worker-image {
    transform: scale(1.05);
}

.worker-info {
    padding: 25px;
}

.worker-name {
    font-weight: 700;
    margin-bottom: 8px;
}

.worker-profession {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.worker-rating {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.rating {
    color: #ffc107;
    margin-right: 10px;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Make sure the site looks good on mobile */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero .btn {
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        flex-direction: column;
    }
    
    .step {
        margin-bottom: 30px;
    }
    
    .workers-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}