/* FÈ SA Provider Selection Styles - TaskRabbit Inspired */

/* Full-Screen Image Carousel */
.image-carousel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.image-carousel.active {
  display: flex;
}

.carousel-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #333;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-nav:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-nav.prev {
  left: 20px;
}

.carousel-nav.next {
  right: 20px;
}

.carousel-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #333;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-close:hover {
  background: white;
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

/* Provider Profile Modal */
.provider-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.provider-modal.active {
  display: flex;
}

.provider-modal-content {
  background: white;
  border-radius: 12px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.provider-modal-header {
  position: sticky;
  top: 0;
  background: white;
  border-bottom: 1px solid #e5e7eb;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  border-radius: 12px 12px 0 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #6b7280;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.2s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: #f3f4f6;
  color: #374151;
}

.provider-modal-body {
  padding: 0 20px 20px;
}

/* Modal Provider Header */
.modal-provider-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid #f3f4f6;
  margin-bottom: 20px;
}

.modal-provider-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 2px solid #f3f4f6;
    background: #f9fafb;
    flex-shrink: 0;
}

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

/* Responsive Provider Avatar - Perfect Circle Solution */
.provider-avatar-large {
    width: 150px; /* Fixed width */
    height: 150px; /* Fixed height - same as width for perfect circle */
    max-width: 200px; /* Prevent it from getting too large */
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    border: 3px solid #f3f4f6;
    background: #f9fafb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin: 0 auto; /* Center the avatar */
}

.provider-avatar-large img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the entire area while maintaining aspect ratio */
    transition: transform 0.2s ease;
    display: block; /* Prevents any inline spacing issues */
}

/* Responsive sizing for different screen sizes - Perfect Circles */
@media (max-width: 480px) {
    .provider-avatar-large {
        width: 100px; /* Smaller on mobile */
        height: 100px; /* Same height as width for perfect circle */
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .provider-avatar-large {
        width: 120px; /* Medium on tablet */
        height: 120px; /* Same height as width for perfect circle */
    }
}

@media (min-width: 769px) {
    .provider-avatar-large {
        width: 150px; /* Larger on desktop */
        height: 150px; /* Same height as width for perfect circle */
    }
}

.modal-provider-avatar .avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF5722, #FF7043);
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Avatar fallback for responsive avatars */
.provider-avatar-large .avatar-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF5722, #FF7043);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

/* Responsive font sizes for avatar fallback */
@media (max-width: 480px) {
    .provider-avatar-large .avatar-fallback {
        font-size: 14px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .provider-avatar-large .avatar-fallback {
        font-size: 16px;
    }
}

@media (min-width: 769px) {
    .provider-avatar-large .avatar-fallback {
        font-size: 20px;
    }
}

/* Verified badge positioning for responsive avatars */
.provider-avatar-large .verified-badge-large {
    position: absolute;
    bottom: -3px;
    right: -3px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* Responsive verified badge sizing */
@media (max-width: 480px) {
    .provider-avatar-large .verified-badge-large {
        width: 18px;
        height: 18px;
        font-size: 10px;
        border-width: 2px;
        bottom: -2px;
        right: -2px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .provider-avatar-large .verified-badge-large {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
}

@media (min-width: 769px) {
    .provider-avatar-large .verified-badge-large {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }
}

.modal-provider-info h2 {
  margin: 0 0 8px 0;
  font-size: 24px;
  font-weight: 600;
  color: #111827;
}

.modal-provider-minimum {
  font-size: 12px;
  color: #6b7280;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px;
}

.modal-provider-stats {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.modal-provider-stats .rating-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
}

.modal-provider-stats .task-count {
  font-size: 14px;
  color: #6b7280;
}

/* Action Button in Modal */
.modal-select-btn {
  background: #10b981;
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  margin: 20px 0;
}

.modal-select-btn:hover {
  background: #059669;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
}

/* Modal Sections */
.modal-section {
  margin-bottom: 24px;
}

.modal-section-title {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-section-icon {
  font-size: 16px;
  color: #6b7280;
}

/* About Me Section */
.about-me-content {
  color: #4b5563;
  line-height: 1.6;
  font-size: 15px;
}

/* Skills & Experience Section */
.skills-content {
  color: #4b5563;
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 16px;
}

.skills-list,
.certifications-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 20px 0;
}

.skill-item,
.certification-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
  transition: all 0.2s ease;
}

.skill-item:last-child,
.certification-item:last-child {
  border-bottom: none;
}

.skill-item:hover,
.certification-item:hover {
  background: rgba(255, 87, 34, 0.05);
  padding-left: 8px;
  margin-left: -8px;
  border-radius: 8px;
}

.skill-icon {
  color: #10b981;
  font-size: 14px;
  width: 16px;
}

.cert-icon {
  color: #f59e0b;
  font-size: 14px;
  width: 16px;
}

.provider-verification {
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border: 2px solid #bbf7d0;
  border-radius: 12px;
  padding: 16px;
  margin-top: 20px;
}

.verification-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  font-size: 14px;
  color: #065f46;
  font-weight: 500;
}

.verification-icon {
  color: #10b981;
  font-size: 16px;
  width: 18px;
}

/* Work Photos Section */
.work-photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.work-photo {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
}

.work-photo:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.work-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.work-photo:hover img {
  transform: scale(1.05);
}

.work-photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 87, 34, 0.9), rgba(255, 112, 67, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 20px;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.work-photo:hover .work-photo-overlay {
  opacity: 1;
}

.work-photo-overlay::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  border: 2px solid white;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.work-photo-overlay::after {
  content: '🔍';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  z-index: 1;
}

/* Reviews Section */
.reviews-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-item {
  background: white;
  border-radius: 16px;
  padding: 20px;
  border: 2px solid #f1f5f9;
  transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.review-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.review-item:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 25px rgba(255, 87, 34, 0.1);
  transform: translateY(-2px);
}

.review-item:hover::before {
  opacity: 1;
}

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  border: 3px solid white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.review-author-info {
  flex: 1;
  min-width: 0;
}

.review-author-name {
  font-weight: 700;
  color: #1e293b;
  font-size: 16px;
  margin-bottom: 6px;
  font-family: 'Montserrat', sans-serif;
}

.review-service-tag {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: #1e40af;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 6px;
  border: 1px solid rgba(30, 64, 175, 0.2);
}

.review-date {
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}

.review-rating {
  color: #fbbf24;
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.review-text {
  color: #475569;
  line-height: 1.6;
  font-size: 15px;
  font-weight: 400;
  margin: 0;
}

/* Pagination for Reviews */
.reviews-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 16px 0;
}

.pagination-number {
  background: white;
  border: 2px solid #e2e8f0;
  color: #64748b;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  min-width: 44px;
  min-height: 44px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.pagination-number::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 87, 34, 0.1), transparent);
  transition: left 0.5s;
}

.pagination-number:hover::before {
  left: 100%;
}

.pagination-number:hover {
  background: #f8fafc;
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.2);
}

.pagination-number.active {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
  transform: translateY(-1px);
}

.pagination-number.active:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
}

.pagination-dots {
  color: #94a3b8;
  padding: 0 8px;
  font-size: 16px;
  font-weight: 700;
}

/* Trust Note in Modal */
.modal-trust-note {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #065f46;
  margin-top: 16px;
}

.modal-trust-icon {
  color: #10b981;
  font-size: 14px;
  flex-shrink: 0;
}

/* Mobile Responsiveness for Modal */
@media (max-width: 768px) {
  .provider-modal {
    padding: 0;
    align-items: flex-end;
  }
  
  .provider-modal-content {
    max-height: 95vh;
    border-radius: 16px 16px 0 0;
    width: 100%;
    max-width: none;
  }
  
  .provider-modal-header {
    padding: 20px 16px 16px;
    border-radius: 16px 16px 0 0;
  }
  
  .provider-modal-body {
    padding: 0 16px 20px;
  }
  
  .modal-provider-header {
    padding: 16px 0;
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .modal-provider-info h2 {
    font-size: 20px;
  }
  
  .work-photos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  
  .modal-section-title {
    font-size: 16px;
  }
  
  .about-me-content,
  .skills-content {
    font-size: 14px;
  }
  
  .modal-select-btn {
    position: sticky;
    bottom: -20px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 10;
  }

  /* Mobile carousel improvements */
  .carousel-nav {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }
  
  .carousel-nav.prev {
    left: 10px;
  }
  
  .carousel-nav.next {
    right: 10px;
  }
  
  .carousel-close {
    top: 10px;
    right: 10px;
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  
  .carousel-counter {
    bottom: 10px;
    font-size: 12px;
    padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .provider-modal {
    padding: 5px;
    padding-top: 10px;
  }
  
  .provider-modal-content {
    border-radius: 8px;
  }
  
  .provider-modal-header {
    padding: 12px;
  }
  
  .provider-modal-body {
    padding: 0 12px 12px;
  }
  
  .work-photos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .modal-provider-avatar {
    width: 60px;
    height: 60px;
  }
  
  .modal-provider-info h2 {
    font-size: 18px;
  }
}

/* Animation for modal */
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes carouselFadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.provider-modal.active .provider-modal-content {
  animation: modalFadeIn 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.image-carousel.active {
  animation: carouselFadeIn 0.2s ease-out;
}

/* Mobile modal animations */
@media (max-width: 768px) {
  .provider-modal.active .provider-modal-content {
    animation: modalSlideUp 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  }
}

/* Smooth transitions for all interactive elements */
.work-photo,
.review-item,
.pagination-number,
.modal-select-btn,
.carousel-nav,
.carousel-close {
  transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Desktop/Mobile Layout Controls */
.desktop-only {
  display: none;
}

.mobile-only {
  display: block;
}

@media (min-width: 769px) {
  .desktop-only {
    display: block !important;
  }
  
  .mobile-only {
    display: none !important;
  }
  
  /* Override any conflicting mobile styles */
  .provider-card-taskrabbit > *:not(.provider-left-section):not(.provider-right-section) {
    display: none !important;
  }
  
  /* Ensure desktop sections are flex children */
  .provider-card-taskrabbit .provider-left-section.desktop-only,
  .provider-card-taskrabbit .provider-right-section.desktop-only {
    display: flex !important;
  }
  
  .provider-card-taskrabbit .provider-right-section.desktop-only {
    flex-direction: column !important;
  }
}

/* TaskRabbit-Style Two-Column Desktop Layout */
@media (min-width: 769px) {
  .provider-card-taskrabbit {
    display: flex !important;
    gap: 32px;
    align-items: flex-start;
    padding: 32px;
    background: linear-gradient(135deg, #ffffff, #fefefe);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
  }
  
  .provider-card-taskrabbit:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 87, 34, 0.2);
  }
  
  /* Hide ALL mobile elements on desktop */
  .provider-card-taskrabbit .provider-mobile-header,
  .provider-card-taskrabbit .provider-stats-list:not(.provider-left-section .provider-stats-list),
  .provider-card-taskrabbit .provider-description,
  .provider-card-taskrabbit .btn-select-continue:not(.provider-left-section .btn-select-continue),
  .provider-card-taskrabbit .provider-trust-note {
    display: none !important;
  }
  
  /* Show and style desktop sections */
  .provider-left-section {
    width: 32% !important;
    display: flex !important;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    flex-shrink: 0;
  }
  
  .provider-right-section {
    width: 68% !important;
    flex: 1;
    display: flex !important;
    flex-direction: column;
    gap: 28px;
    min-width: 0;
  }
  
  /* Ensure desktop elements are visible */
  .desktop-only {
    display: block !important;
  }
  
  .provider-left-section .provider-availability-status,
  .provider-left-section .view-profile-btn,
  .provider-left-section .btn-select-continue,
  .provider-left-section .provider-chat-note {
    display: block !important;
    width: 100%;
  }
  
  .provider-right-section .provider-header-taskrabbit,
  .provider-right-section .how-i-help-section,
  .provider-right-section .recent-review-section {
    display: block !important;
  }
  
  /* Desktop Header Styling */
  .provider-header-taskrabbit {
    display: flex !important;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 2px solid #f1f5f9;
  }
  
  .provider-header-taskrabbit .provider-name-btn {
    text-align: left;
    margin: 0;
  }
  
  .provider-header-taskrabbit .provider-price-large {
    text-align: right;
    margin: 0;
  }
  
  /* Desktop Chat Note Styling */
  .provider-chat-note {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border: 2px solid #bae6fd;
    border-radius: 12px;
    padding: 16px;
    font-size: 13px;
    color: #0369a1;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
  }
}

/* Enhanced Avatar Hover Effects */
.provider-avatar-large:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.2);
    border-color: var(--primary);
}

.provider-avatar-large:hover img {
    transform: scale(1.1);
}

/* Availability Status Indicator */
.provider-availability-status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 20px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.provider-availability-status:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.provider-availability-status.available {
    background: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.provider-availability-status.busy {
    background: #fff3cd;
    border-color: #ffeaa7;
    color: #856404;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

.provider-availability-status.available .status-indicator {
    background: #28a745;
    box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.2);
}

.provider-availability-status.busy .status-indicator {
    background: #ffc107;
    box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.2);
}

/* Status indicator with animated pulse for availability */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    70% {
        box-shadow: 0 0 0 4px rgba(40, 167, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

.provider-availability-status.busy .status-indicator {
    animation: pulse-warning 2s infinite;
}

@keyframes pulse-warning {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
    }
    70% {
        box-shadow: 0 0 0 4px rgba(255, 193, 7, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
    }
}

/* Responsive status indicator sizing */
@media (max-width: 480px) {
    .provider-availability-status {
        padding: 6px 10px;
        font-size: 12px;
    }
    
    .status-indicator {
        width: 6px;
        height: 6px;
    }
}

@media (min-width: 769px) {
    .provider-availability-status {
        padding: 10px 14px;
        font-size: 14px;
    }
    
    .status-indicator {
        width: 10px;
        height: 10px;
    }
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 2rem 0;
    border-bottom: 1px solid var(--bg-secondary);
    margin-bottom: 2rem;
}

.page-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.filter-status {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Providers Container */
.providers-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.provider-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 2px solid transparent;
}

.provider-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(255, 87, 34, 0.15);
    border-color: var(--primary);
}

.provider-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

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

.verified-badge {
    position: absolute;
    bottom: -5px;
    right: -5px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    border: 2px solid white;
}

.provider-info {
    flex: 1;
}

.provider-name {
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
}

.provider-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.provider-rating .fas.fa-star,
.provider-rating .fas.fa-star-half-alt {
    color: #FFC107;
}

.provider-rating .far.fa-star {
    color: #e0e0e0;
}

.rating-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.provider-specialties {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.specialty-tag {
    background: var(--bg);
    color: var(--primary);
    padding: 0.25rem 0.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.provider-location {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.provider-price {
    text-align: center;
    margin: 0 1rem;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
}

.price-unit {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.provider-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Loading and Error States */
.no-results,
.loading-container,
.error-container {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
}

.no-results-icon,
.error-icon {
    font-size: 3rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .provider-card {
        flex-direction: column;
        text-align: center;
    }
    
    .provider-actions {
        flex-direction: row;
        width: 100%;
    }
    
    .provider-actions .btn {
        flex: 1;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .provider-avatar {
        width: 60px;
        height: 60px;
    }
    
    .provider-price {
        margin: 1rem 0;
    }
}

/* Enhanced Search Integration */
.search-integration {
    margin-bottom: 2rem;
}

.search-integration .search-container {
    max-width: 100%;
}

/* Filter Status */
.filter-status {
    background: var(--bg);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 500;
    color: var(--text);
}

/* Provider Grid Layout */
.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .providers-grid {
        grid-template-columns: 1fr;
    }
}

/* Provider Card Hover Effects */
.provider-card {
    position: relative;
    overflow: hidden;
}

.provider-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 87, 34, 0.1), transparent);
    transition: left 0.5s;
}

.provider-card:hover::before {
    left: 100%;
}

/* Action Buttons */
.provider-actions .btn {
    min-width: 120px;
    justify-content: center;
}

.provider-actions .btn-outline {
    border-color: var(--primary);
    color: var(--primary);
}

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

.provider-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.provider-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.4);
}

/* Distance Filter Slider */
.distance-filter {
    padding: 16px 0;
}

.range-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
}

.distance-slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: #e5e7eb;
    outline: none;
    margin-bottom: 8px;
    -webkit-appearance: none;
    appearance: none;
}

.distance-slider::-webkit-slider-thumb {
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(255, 87, 34, 0.3);
    transition: all 0.2s ease;
}

.distance-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.4);
}

.distance-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 6px rgba(255, 87, 34, 0.3);
    transition: all 0.2s ease;
}

.distance-slider::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.4);
}

.range-markers {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: #6b7280;
    margin-top: 4px;
}

/* Advanced Booking Flow Modal */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.booking-modal.active {
    display: flex;
}

.booking-modal-content {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    animation: bookingModalFadeIn 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

@keyframes bookingModalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.booking-modal-header {
    position: sticky;
    top: 0;
    background: white;
    border-bottom: 2px solid #f1f5f9;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 10;
    border-radius: 16px 16px 0 0;
}

.booking-modal-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #1e293b;
    margin: 0;
}

/* Booking Progress Indicator */
.booking-progress {
    display: flex;
    justify-content: space-between;
    padding: 20px 24px;
    background: #f8fafc;
    position: relative;
}

.booking-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 24px;
    right: 24px;
    height: 2px;
    background: #e2e8f0;
    transform: translateY(-50%);
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
}

.progress-step.active .step-circle {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.progress-step.completed .step-circle {
    background: #10b981;
    color: white;
}

.step-label {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-align: center;
}

.progress-step.active .step-label {
    color: var(--primary);
}

.progress-step.completed .step-label {
    color: #10b981;
}

/* Booking Modal Body */
.booking-modal-body {
    padding: 0 24px 20px;
}

.booking-step h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #1e293b;
    margin: 24px 0 16px 0;
}

.booking-step h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #1e293b;
    margin: 20px 0 12px 0;
}

/* Provider Booking Summary */
.provider-booking-summary {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    margin-bottom: 24px;
}

.provider-summary-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

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

.provider-summary-info h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.provider-summary-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.rating-stars {
    color: #fbbf24;
    font-size: 14px;
}

.provider-summary-price {
    font-weight: 700;
    font-size: 16px;
    color: var(--primary);
}

/* Service Selection */
.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    margin-bottom: 24px;
}

.service-option {
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    background: white;
}

.service-option:hover {
    border-color: var(--primary);
    background: #fef7f0;
}

.service-option.selected {
    border-color: var(--primary);
    background: linear-gradient(135deg, #fef7f0, #fff);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.2);
}

.service-option-icon {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 8px;
}

.service-option-name {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.service-option-desc {
    font-size: 12px;
    color: #64748b;
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.1);
}

.form-input::placeholder {
    color: #94a3b8;
}

label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
    font-size: 14px;
}

/* Date/Time Selection */
.date-time-selection {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.duration-section {
    grid-column: 1 / -1;
}

/* Price Estimate */
.price-estimate {
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
    border: 2px solid #bbf7d0;
    border-radius: 12px;
    padding: 20px;
    margin-top: 24px;
}

.estimate-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.estimate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #065f46;
}

.estimate-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 16px;
    color: #065f46;
    padding-top: 12px;
    border-top: 1px solid #bbf7d0;
}

/* Booking Summary */
.booking-summary {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.summary-section {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.summary-section h6 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 4px 0;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    min-width: 120px;
}

.summary-section p {
    margin: 0;
    font-weight: 600;
    color: #1e293b;
    flex: 1;
}

.summary-section i {
    color: var(--primary);
    width: 16px;
}

/* WhatsApp Action */
.whatsapp-booking-action {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    border: 2px solid #86efac;
    border-radius: 12px;
    padding: 20px;
}

.whatsapp-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.whatsapp-info i {
    font-size: 32px;
    color: #25d366;
}

.whatsapp-info p {
    margin: 0 0 4px 0;
    color: #065f46;
}

.whatsapp-info p:last-child {
    font-size: 14px;
    color: #047857;
}

/* Modal Footer */
.booking-modal-footer {
    position: sticky;
    bottom: 0;
    background: white;
    border-top: 2px solid #f1f5f9;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    border-radius: 0 0 16px 16px;
}

.btn-success {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-success:hover {
    background: linear-gradient(135deg, #128c7e, #075e54);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Mobile Booking Modal Responsiveness */
@media (max-width: 768px) {
    .booking-modal {
        padding: 0;
        align-items: flex-end;
    }
    
    .booking-modal-content {
        max-height: 95vh;
        border-radius: 16px 16px 0 0;
        width: 100%;
        max-width: none;
        animation: bookingModalSlideUp 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    }
    
    @keyframes bookingModalSlideUp {
        from {
            opacity: 0;
            transform: translateY(100%);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .booking-modal-header {
        padding: 20px 16px 16px;
        border-radius: 16px 16px 0 0;
    }
    
    .booking-progress {
        padding: 16px;
        overflow-x: auto;
    }
    
    .step-circle {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .step-label {
        font-size: 11px;
    }
    
    .booking-modal-body {
        padding: 0 16px 16px;
    }
    
    .provider-booking-summary {
        padding: 16px;
        gap: 12px;
    }
    
    .provider-summary-avatar {
        width: 50px;
        height: 50px;
    }
    
    .provider-summary-info h4 {
        font-size: 16px;
    }
    
    .service-options {
        grid-template-columns: 1fr;
    }
    
    .date-time-selection {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .booking-modal-footer {
        padding: 16px;
        flex-direction: column;
        gap: 8px;
    }
    
    .booking-modal-footer .btn {
        width: 100%;
        justify-content: center;
    }
    
    #bookingBackBtn {
        order: 2;
    }
    
    #bookingNextBtn,
    #bookingConfirmBtn {
        order: 1;
    }
}

/* TaskRabbit-Level Provider Card Improvements */

/* 1. ENHANCED LAYOUT STRUCTURE - Two Column Desktop Layout */
@media (min-width: 769px) {
    .provider-card-taskrabbit {
        display: flex !important;
        gap: 32px;
        align-items: flex-start;
        padding: 32px;
        background: linear-gradient(135deg, #ffffff, #fefefe);
        border-radius: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid #f1f5f9;
        transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
        margin-bottom: 32px;
        position: relative;
        overflow: hidden;
    }
    
    .provider-card-taskrabbit:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        border-color: rgba(255, 87, 34, 0.2);
    }
    
    .provider-left-section {
        width: 32% !important;
        display: flex !important;
        flex-direction: column;
        gap: 24px;
        position: sticky;
        top: 24px;
        align-items: center;
    }
    
    .provider-right-section {
        width: 68% !important;
        flex: 1;
        display: flex !important;
        flex-direction: column;
        gap: 28px;
    }
    
    /* Desktop Header Enhancement */
    .provider-header-taskrabbit {
        display: flex !important;
        justify-content: space-between;
        align-items: flex-start;
        margin-bottom: 28px;
        padding-bottom: 24px;
        border-bottom: 2px solid #f1f5f9;
    }
    
    /* Hide mobile-only elements on desktop */
    .provider-mobile-header,
    .provider-description,
    .provider-trust-note {
        display: none !important;
    }
    
    /* Ensure desktop elements are visible */
    .provider-stats-list,
    .btn-select-continue,
    .view-profile-btn,
    .how-i-help-section,
    .recent-review-section,
    .provider-availability-status {
        display: flex !important;
    }
    
    .how-i-help-section {
        display: block !important;
    }
}

/* 2. ENHANCED TYPOGRAPHY HIERARCHY */
.provider-name-btn {
    background: none;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0.0, 0.2, 1);
    padding: 0;
    margin: 0 0 8px 0;
    line-height: 1.2;
    text-decoration: none;
    letter-spacing: -0.025em;
}

.provider-name-btn:hover {
    color: var(--primary);
    text-decoration: none;
    transform: translateX(2px);
}

.provider-name-btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
    border-radius: 6px;
}

.provider-header-taskrabbit {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
}

.provider-price-large {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: #0f172a;
    text-align: right;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 4px;
}

.provider-minimum {
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.75px;
    margin-top: 2px;
    font-family: 'Montserrat', sans-serif;
}

/* 3. ORGANIZED STATS AS CLEAN LIST */
.provider-stats-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.provider-stats-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #475569;
    font-weight: 500;
    line-height: 1.4;
    padding: 0;
    transition: all 0.2s ease;
}

.provider-stats-list li:hover {
    transform: translateX(2px);
    color: #1e293b;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: #0f172a;
    font-family: 'Montserrat', sans-serif;
}

.rating-star {
    color: #f59e0b;
    font-size: 18px;
    font-weight: 900;
    text-shadow: 0 1px 2px rgba(245, 158, 11, 0.3);
}

.rating-score {
    color: #0f172a;
    font-weight: 800;
    font-size: 16px;
    margin-right: 4px;
}

.rating-count {
    color: #64748b;
    font-weight: 500;
    font-size: 14px;
}

.task-count-primary {
    color: #0f172a;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}

.task-count-secondary {
    color: #64748b;
    font-weight: 500;
}

.vehicle-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
}

.vehicle-icon {
    color: var(--primary);
    font-size: 14px;
    width: 16px;
}

/* 4. PROFESSIONAL BUTTON STYLING */
.view-profile-btn {
    background: none;
    border: 2px solid #e2e8f0;
    color: #64748b;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0.0, 0.2, 1);
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    width: 100%;
    letter-spacing: 0.025em;
}

.view-profile-btn:hover {
    color: white;
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3);
}

.view-profile-btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 10px;
}

.btn-select-continue {
    background: linear-gradient(135deg, #059669, #047857);
    color: white;
    border: none;
    padding: 20px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
    letter-spacing: 0.025em;
    text-transform: none;
    width: 100%;
    position: relative;
    overflow: hidden;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-select-continue::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-select-continue:hover::before {
    left: 100%;
}

.btn-select-continue:hover {
    background: linear-gradient(135deg, #047857, #065f46);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
}

.btn-select-continue:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
}

.btn-select-continue:focus {
    outline: 3px solid rgba(5, 150, 105, 0.5);
    outline-offset: 2px;
}

/* 5. ENHANCED REVIEW SECTION */
.recent-review-section {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    position: relative;
}

.recent-review-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    border-radius: 2px 0 0 2px;
}

.recent-review-section {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.review-content {
    flex: 1;
    min-width: 0;
}

.review-author-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
}

.review-author-name {
    font-weight: 600;
    color: #1e293b;
    font-family: 'Montserrat', sans-serif;
}

.review-date {
    color: #64748b;
    font-weight: 500;
}

.review-text {
    color: #475569;
    line-height: 1.5;
    font-size: 14px;
    margin: 0;
    font-style: italic;
}

/* 6. PROFESSIONAL VISUAL POLISH */
.how-i-help-section {
    background: white;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #f1f5f9;
    position: relative;
}

.how-i-help-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.025em;
}

.how-i-help-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(255, 87, 34, 0.3);
}

.how-i-help-text {
    color: #475569;
    line-height: 1.65;
    font-size: 16px;
    margin: 0 0 16px 0;
    font-weight: 400;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.read-more-btn:hover {
    color: var(--accent);
}

.provider-chat-note {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 16px;
    font-size: 13px;
    color: #0369a1;
    line-height: 1.4;
    text-align: center;
    font-weight: 500;
}

/* Enhanced Availability Status */
.provider-availability-status {
    width: 100%;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Layout Enhancements */
@media (max-width: 768px) {
    .provider-card-taskrabbit {
        background: linear-gradient(135deg, #ffffff, #fefefe);
        border-radius: 16px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        border: 1px solid #f1f5f9;
        padding: 24px;
        margin-bottom: 24px;
        transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
        position: relative;
        overflow: hidden;
    }
    
    .provider-card-taskrabbit:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        border-color: rgba(255, 87, 34, 0.2);
    }
    
    .provider-card-taskrabbit:active {
        transform: translateY(-2px);
        transition: all 0.15s ease;
    }
    
    .provider-mobile-header {
        display: flex;
        gap: 20px;
        align-items: flex-start;
        margin-bottom: 24px;
        padding-bottom: 20px;
        border-bottom: 2px solid #f1f5f9;
    }
    
    .provider-mobile-info {
        flex: 1;
        min-width: 0;
    }
    
    .provider-mobile-title {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 12px;
    }
    
    .provider-price-section {
        text-align: right;
        flex-shrink: 0;
    }
    
    /* Mobile-specific typography enhancements */
    .provider-name-btn {
        font-size: 24px !important;
        font-weight: 800 !important;
        color: #0f172a !important;
        margin-bottom: 8px !important;
        line-height: 1.2 !important;
    }
    
    .provider-price-large {
        font-size: 28px !important;
        font-weight: 900 !important;
        color: #0f172a !important;
    }
    
    .provider-minimum {
        font-size: 11px !important;
        font-weight: 700 !important;
        letter-spacing: 0.5px !important;
    }
    
    .provider-description {
        margin-bottom: 20px;
    }
    
    .provider-description-text {
        color: #475569;
        line-height: 1.5;
        margin: 0 0 12px 0;
    }
    
    .provider-trust-note {
        background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
        border: 2px solid #bae6fd;
        border-radius: 12px;
        padding: 16px;
        font-size: 13px;
        color: #0369a1;
        display: flex;
        align-items: center;
        gap: 12px;
        margin-top: 20px;
        font-weight: 500;
        line-height: 1.4;
    }
    
    .trust-icon {
        color: #0369a1;
        font-size: 16px;
        flex-shrink: 0;
    }
    
    /* Touch-friendly mobile buttons */
    .btn-select-continue {
        min-height: 56px !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        border-radius: 14px !important;
        padding: 20px 32px !important;
        margin-top: 20px !important;
    }
    
    .view-profile-btn {
        min-height: 48px !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        border-radius: 12px !important;
        padding: 16px 24px !important;
    }
    
    /* Enhanced mobile stats section */
    .provider-stats-list {
        margin-bottom: 20px !important;
        padding: 20px !important;
        border-radius: 14px !important;
        gap: 14px !important;
    }
    
    .provider-stats-list li {
        font-size: 14px !important;
        padding: 4px 0 !important;
    }
    
    .rating-score {
        font-size: 15px !important;
    }
    
    .rating-star {
        font-size: 16px !important;
    }
}

/* Premium Card Hover Effects */
.provider-card-taskrabbit {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff, #fefefe);
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
}

.provider-card-taskrabbit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 87, 34, 0.05), transparent);
    transition: left 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);
    pointer-events: none;
}

.provider-card-taskrabbit:hover::before {
    left: 100%;
}

.provider-card-taskrabbit::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 87, 34, 0.02), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.provider-card-taskrabbit:hover::after {
    opacity: 1;
}

/* Enhanced Focus States for Accessibility */
.provider-name-btn:focus,
.view-profile-btn:focus,
.btn-select-continue:focus,
.read-more-btn:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Loading State Animation */
@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

.provider-card-loading {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
}

/* High Contrast Support */
@media (prefers-contrast: high) {
    .provider-card-taskrabbit {
        border-width: 2px;
        border-color: #000;
    }
    
    .provider-name-btn,
    .view-profile-btn,
    .btn-select-continue {
        border-width: 2px;
    }
}

/* Print Styles */
@media print {
    .provider-card-taskrabbit {
        break-inside: avoid;
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .btn-select-continue,
    .view-profile-btn {
        display: none;
    }
}

/* ===========================================
   TASKRABBIT-LEVEL IMPROVEMENTS - v2.0
   =========================================== */

/* 1. REFINED LAYOUT PROPORTIONS */
@media (min-width: 769px) {
    .provider-left-section {
        width: 28% !important;
        max-width: 240px;
    }
    
    .provider-right-section {
        width: 72% !important;
        padding-left: 16px;
    }
}

/* 2. TASKRABBIT-STYLE AVATAR */
.provider-avatar-large {
    width: 120px !important;
    height: 120px !important;
    border: 3px solid #f8fafc !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

.provider-avatar-large:hover {
    transform: scale(1.02) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12) !important;
}

/* 3. TASKRABBIT TYPOGRAPHY */
.provider-name-btn {
    font-size: 32px !important;
    font-weight: 900 !important;
    color: #0f172a !important;
    line-height: 1.1 !important;
    margin-bottom: 4px !important;
    letter-spacing: -0.02em !important;
}

.provider-price-large {
    font-size: 40px !important;
    font-weight: 900 !important;
    color: #0f172a !important;
    line-height: 1 !important;
}

.provider-minimum {
    font-size: 11px !important;
    color: #64748b !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px !important;
    margin-top: 2px !important;
}

/* 4. TASKRABBIT BUTTONS */
.view-profile-btn {
    background: transparent !important;
    border: 2px solid #e2e8f0 !important;
    color: #64748b !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    padding: 12px 16px !important;
    border-radius: 8px !important;
}

.view-profile-btn:hover {
    color: white !important;
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3) !important;
}

.btn-select-continue {
    background: #059669 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 16px 28px !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    min-height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}

.btn-select-continue:hover {
    background: #047857 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25) !important;
}

/* 5. REFINED STATS LIST */
.provider-stats-list {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    gap: 16px !important;
}

.provider-stats-list li {
    font-size: 14px !important;
    color: #374151 !important;
    font-weight: 400 !important;
    padding: 4px 0 !important;
    border-bottom: none !important;
    background: none !important;
}

.provider-stats-list li:hover {
    transform: none !important;
    color: #374151 !important;
}

.rating-item {
    font-weight: 600 !important;
    color: #1f2937 !important;
}

.rating-star {
    color: #f59e0b !important;
    font-size: 16px !important;
    margin-right: 4px !important;
}

/* 6. CONTENT REFINEMENT */
.how-i-help-section {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin-bottom: 24px !important;
}

.how-i-help-title {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
    margin-bottom: 12px !important;
}

.how-i-help-title::before {
    display: none !important;
}

.how-i-help-text {
    font-size: 14px !important;
    color: #4b5563 !important;
    line-height: 1.5 !important;
    margin-bottom: 8px !important;
}

.read-more-btn {
    font-size: 14px !important;
    color: #0369a1 !important;
    font-weight: 500 !important;
}

/* 7. REVIEW SECTION */
.recent-review-section {
    background: transparent !important;
    border: none !important;
    padding: 16px 0 0 0 !important;
    margin-top: 16px !important;
    border-top: 1px solid #f1f5f9 !important;
    display: flex !important;
    gap: 12px !important;
    align-items: flex-start !important;
}

.recent-review-section::before {
    display: none !important;
}

.reviewer-avatar {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    border: 2px solid #f3f4f6 !important;
}

.review-content {
    flex: 1 !important;
}

.review-author-line {
    font-size: 14px !important;
    margin-bottom: 6px !important;
    color: #374151 !important;
}

.review-author-name {
    font-weight: 600 !important;
}

.review-date {
    color: #6b7280 !important;
}

.review-text {
    font-size: 14px !important;
    color: #4b5563 !important;
    line-height: 1.4 !important;
    font-style: italic !important;
    margin: 0 !important;
}

/* 8. CARD CONTAINER */
.provider-card-taskrabbit {
    background: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 12px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05) !important;
    padding: 24px !important;
    margin-bottom: 16px !important;
}

.provider-card-taskrabbit:hover {
    border-color: #d1d5db !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    transform: none !important;
}

.provider-card-taskrabbit::before,
.provider-card-taskrabbit::after {
    display: none !important;
}

/* 9. MOBILE ADJUSTMENTS */
@media (max-width: 768px) {
    .provider-name-btn {
        font-size: 24px !important;
        font-weight: 800 !important;
    }
    
    .provider-price-large {
        font-size: 28px !important;
    }
    
    .provider-avatar-large {
        width: 100px !important;
        height: 100px !important;
    }
}

/* 10. TASKRABBIT ICON IMPROVEMENTS */
.task-icon {
    color: #6b7280 !important;
    font-size: 14px !important;
    width: 16px !important;
    margin-right: 8px !important;
}

.vehicle-icon {
    color: var(--primary) !important;
    font-size: 14px !important;
    width: 16px !important;
    margin-right: 8px !important;
}

.verified-badge-large i {
    font-size: 12px !important;
    color: white !important;
}

.how-i-help-title i {
    color: var(--primary) !important;
    font-size: 16px !important;
    margin-right: 8px !important;
}

.provider-chat-note i {
    color: #0369a1 !important;
    font-size: 14px !important;
    margin-right: 8px !important;
}

/* 11. TASKRABBIT REVIEW IMPROVEMENTS */
.review-item {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
}

.review-item::before {
    display: none !important;
}

.review-header {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 8px !important;
}

.review-avatar {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background: #e5e7eb !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    color: #6b7280 !important;
    border: 1px solid #d1d5db !important;
}

.review-author-info {
    flex: 1 !important;
}

.review-author-name {
    font-weight: 600 !important;
    font-size: 14px !important;
    color: #1f2937 !important;
    margin: 0 !important;
}

.review-date {
    font-size: 13px !important;
    color: #6b7280 !important;
    margin: 0 !important;
}

/* 12. TASKRABBIT LEFT SECTION ORGANIZATION */
.provider-left-section {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px !important;
    text-align: center !important;
}

.provider-left-section .provider-name-btn {
    margin: 8px 0 4px 0 !important;
    text-align: center !important;
}

.provider-left-section .provider-price-section {
    text-align: center !important;
    margin-bottom: 8px !important;
}

.provider-left-section .provider-stats-list {
    width: 100% !important;
    margin: 8px 0 !important;
    text-align: left !important;
}

.provider-left-section .provider-availability-status {
    width: 100% !important;
    justify-content: center !important;
    margin: 8px 0 !important;
}

.provider-left-section .view-profile-btn,
.provider-left-section .btn-select-continue {
    width: 100% !important;
    margin: 4px 0 !important;
}

.provider-left-section .provider-chat-note {
    width: 100% !important;
    text-align: center !important;
    font-size: 12px !important;
    line-height: 1.4 !important;
    margin-top: 8px !important;
}

.provider-chat-note span {
    margin-left: 4px !important;
}

/* 13. TASKRABBIT RIGHT SECTION IMPROVEMENTS */
.provider-right-section {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
}

.provider-right-section .how-i-help-section {
    border-bottom: 1px solid #f1f5f9 !important;
    padding-bottom: 16px !important;
}

.provider-right-section .recent-review-section {
    padding-top: 16px !important;
}

/* 14. PRICE SECTION ALIGNMENT */
.provider-price-section {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 2px !important;
}

/* 15. FINAL OVERRIDE FOR VIEW PROFILE BUTTON HOVER */
.view-profile-btn:hover,
.provider-card .view-profile-btn:hover,
.taskrabbit-card .view-profile-btn:hover,
button.view-profile-btn:hover,
a.view-profile-btn:hover {
    color: white !important;
    background: #FF5722 !important;
    border-color: #FF5722 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(255, 87, 34, 0.3) !important;
    text-decoration: none !important;
}

/* 16. RESPONSIVE LAYOUT OPTIMIZATION */

/* Hide mobile elements on desktop */
@media (min-width: 769px) {
    .provider-card > .provider-header,
    .provider-info-mobile,
    .provider-stats-mobile,
    .provider-description-mobile,
    .provider-actions-mobile,
    .provider-card > .provider-chat-note {
        display: none !important;
    }
}

/* MOBILE TASKRABBIT-STYLE OPTIMIZATION */
@media (max-width: 768px) {
    .provider-card {
        padding: 16px !important;
        margin-bottom: 16px !important;
        border-radius: 12px !important;
    }
    
    /* Mobile header layout - compact like TaskRabbit */
    .provider-header {
        display: flex !important;
        align-items: flex-start !important;
        gap: 12px !important;
        margin-bottom: 12px !important;
    }
    
    /* Smaller avatar on mobile */
    .provider-avatar-large {
        width: 60px !important;
        height: 60px !important;
        flex-shrink: 0 !important;
    }
    
    /* Mobile name and price section */
    .provider-info-mobile {
        flex: 1 !important;
        min-width: 0 !important;
    }
    
    .provider-name {
        font-size: 18px !important;
        font-weight: 700 !important;
        margin-bottom: 2px !important;
        line-height: 1.2 !important;
    }
    
    .provider-price-section {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        margin-bottom: 8px !important;
    }
    
    .provider-price {
        font-size: 16px !important;
        font-weight: 700 !important;
        color: var(--text) !important;
    }
    
    .provider-minimum {
        font-size: 12px !important;
        color: var(--text-secondary) !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
    }
    
    /* Mobile stats row - more compact */
    .provider-stats-mobile {
        display: flex !important;
        align-items: center !important;
        gap: 16px !important;
        margin-bottom: 12px !important;
        font-size: 14px !important;
    }
    
    .provider-rating {
        display: flex !important;
        align-items: center !important;
        gap: 4px !important;
    }
    
    .provider-missions {
        color: var(--text-secondary) !important;
        font-weight: 500 !important;
    }
    
    /* Mobile description */
    .provider-description-mobile {
        font-size: 14px !important;
        line-height: 1.4 !important;
        color: var(--text-secondary) !important;
        margin-bottom: 12px !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    
    /* Mobile vehicle info */
    .provider-vehicle-mobile {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        font-size: 13px !important;
        color: var(--text-secondary) !important;
        margin-bottom: 16px !important;
    }
    
    /* Mobile buttons stack */
    .provider-actions-mobile {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
    }
    
    /* Hide desktop elements on mobile */
    .provider-content,
    .provider-description:not(.provider-description-mobile),
    .provider-service-type,
    .provider-additional-info {
        display: none !important;
    }
    
    /* Mobile button styles */
    .view-profile-btn {
        padding: 10px 16px !important;
        font-size: 14px !important;
        border-radius: 8px !important;
        text-align: center !important;
        width: 100% !important;
    }
    
    .btn-select-continue {
        padding: 16px 24px !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        border-radius: 12px !important;
        min-height: 52px !important;
        width: 100% !important;
    }
    
    /* Mobile trust section */
    .provider-chat-note {
        background: rgba(59, 130, 246, 0.1) !important;
        border: 1px solid rgba(59, 130, 246, 0.2) !important;
        padding: 12px !important;
        border-radius: 8px !important;
        font-size: 13px !important;
        line-height: 1.4 !important;
        text-align: center !important;
        color: #3b82f6 !important;
        margin-top: 16px !important;
    }
}