/* Enhanced InstaPink styles.css - Professional Visual Hierarchy */

/* CSS Variables and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-yellow: #fcda2b;
    --primary-dark: #0e0e0e;
    --secondary-green: #00bf6f;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #999999;
    --border-light: #e0e0e0;
    --background-light: #fafafa;
    --white: #ffffff;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.16);
    --transition: all 0.2s ease;
    
    /* Enhanced priority colors */
    --priority-gold: #fcda2b;
    --priority-gold-light: #fff9e6;
    --priority-gold-border: #f1c40f;
    --priority-shadow: rgba(252, 218, 43, 0.4);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--white);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.header {
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-dark);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--secondary-green);
}

.nav-link svg {
    width: 16px;
    height: 16px;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-login {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 16px;
    transition: var(--transition);
}

.btn-login:hover {
    color: var(--secondary-green);
}

.btn-signup {
    background: var(--primary-yellow);
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    transition: var(--transition);
}

.btn-signup:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero {
    padding: 120px 0 40px;
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-illustration {
    flex: 0 0 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.illustration-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
    min-width: 320px;
}

.illustration-card-header {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.illustration-card-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--primary-dark);
}

.illustration-card-time {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
}

.illustration-card-badges {
    display: flex;
    gap: 8px;
}

.illustration-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.badge-confirmed {
    background: #e8f5e9;
    color: #2e7d32;
}

.badge-virtual {
    background: #fff3cd;
    color: #856404;
}

.illustration-decoration {
    position: absolute;
    right: -50px;
    top: -30px;
    width: 150px;
    height: 150px;
    background: var(--primary-yellow);
    border-radius: 50%;
    opacity: 0.3;
}

/* Search Section */
.search-section {
    padding: 40px 0;
    background: var(--white);
}

.search-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.search-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid var(--border-light);
}

.search-form {
    display: grid;
    grid-template-columns: 1.5fr 3fr 1fr auto;
    gap: 16px;
    align-items: end;
}

/* Trust Badges Section */
.trust-badges {
    text-align: center;
    padding: 40px 0 20px;
    background: var(--white);
}

.trust-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.trust-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.trust-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.trust-stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
}

.trust-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: left;
    line-height: 1.4;
}

.trust-reviews {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.review-platform {
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-stars {
    color: #00bf6f;
    font-size: 20px;
    display: flex;
    gap: 2px;
}

.review-text {
    font-size: 14px;
    color: var(--text-secondary);
}

.verification-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light);
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
}

.badge-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary-green);
    color: white;
    border-radius: 50%;
    font-size: 14px;
}

.search-field {
    position: relative;
}

.search-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-input-wrapper {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
}

.search-input {
    width: 100%;
    height: 48px;
    padding: 0 16px 0 44px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
    background: var(--white);
}

.search-input:focus {
    outline: none;
    border-color: var(--secondary-green);
    box-shadow: 0 0 0 3px rgba(0, 191, 111, 0.1);
}

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

/* Enhanced Autocomplete Dropdown */
.autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 12px 12px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    display: none;
}

.autocomplete-dropdown.active {
    display: block;
}

.autocomplete-item {
    padding: 16px 20px 16px 44px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    position: relative;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover {
    background: #f0fbf4;
    border-left: 3px solid var(--secondary-green);
}

.autocomplete-item-icon {
    position: absolute;
    left: 16px;
    color: var(--secondary-green);
    font-size: 16px;
}

.autocomplete-item-text {
    flex: 1;
    font-weight: 500;
}

.search-select {
    width: 100%;
    height: 48px;
    padding: 0 40px 0 36px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
    background: var(--white);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-left: 36px !important;
}

.search-select:focus {
    outline: none;
    border-color: var(--secondary-green);
    box-shadow: 0 0 0 3px rgba(0, 191, 111, 0.1);
}

.search-button {
    height: 48px;
    padding: 0 32px;
    background: var(--primary-yellow);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.search-button:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.search-button svg {
    width: 20px;
    height: 20px;
}

/* AI Assistant Strip */
.ai-assistant {
    background: linear-gradient(135deg, #00bf6f 0%, #00a861 100%);
    padding: 20px 0;
    margin-bottom: 40px;
}

.ai-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.ai-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
}

.ai-content {
    flex: 1;
    color: white;
}

.ai-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.ai-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.ai-chip {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.ai-chip:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* Results Section */
.results-section {
    padding: 0 0 60px;
    background: var(--background-light);
    min-height: 600px;
}

.results-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
}

/* Filters Sidebar */
.filters-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    height: fit-content;
    position: sticky;
    top: 96px;
    box-shadow: var(--shadow-sm);
}

.filters-header {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--primary-dark);
}

.filter-group {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    cursor: pointer;
    transition: var(--transition);
}

.filter-option:hover {
    color: var(--secondary-green);
}

.filter-checkbox {
    width: 20px;
    height: 20px;
    accent-color: var(--secondary-green);
    cursor: pointer;
}

.filter-label {
    flex: 1;
    font-size: 14px;
    cursor: pointer;
}

/* Results List */
.results-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.results-count {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-dark);
}

.sort-dropdown {
    padding: 8px 32px 8px 16px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: var(--white);
    font-size: 14px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23666666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

/* 🏆 PRIORITY SECTIONS - Professional Visual Hierarchy */

/* Priority Section Headers */
.priority-section {
    margin-bottom: 32px;
}

.priority-header {
    margin-bottom: 24px;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.instapink-priority .priority-header {
    background: linear-gradient(135deg, var(--priority-gold-light) 0%, #fffbf0 100%);
    border: 2px solid var(--priority-gold);
    box-shadow: 0 4px 16px var(--priority-shadow);
}

.local-providers .priority-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 2px solid #dee2e6;
}

.priority-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.instapink-priority .priority-title {
    color: var(--primary-dark);
}

.local-providers .priority-title {
    color: #495057;
}

.priority-icon {
    font-size: 28px;
}

.priority-badge {
    background: var(--secondary-green);
    color: white;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
    margin-left: 8px;
}

.instapink-priority .priority-badge {
    background: var(--priority-gold);
    color: var(--primary-dark);
}

.priority-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
}

/* 🎨 ENHANCED SPECIALIST CARDS */

/* Base Specialist Card */
.specialist-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    margin-bottom: 16px;
    position: relative;
}

.specialist-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

/* 🏆 InstaPink Priority Specialists - Premium Styling */
.instapink-specialist {
    background: linear-gradient(135deg, var(--priority-gold-light) 0%, #fffbf0 100%) !important;
    border: 2px solid var(--priority-gold) !important;
    position: relative;
    box-shadow: 0 8px 32px var(--priority-shadow) !important;
    overflow: hidden;
}

.instapink-specialist::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--priority-gold) 0%, #f39c12 50%, var(--priority-gold) 100%);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.instapink-specialist:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 16px 48px rgba(252, 218, 43, 0.4) !important;
}

/* InstaPink Priority Badge */
.instapink-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--priority-gold) 0%, var(--priority-gold-border) 100%);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 12px var(--priority-shadow);
    z-index: 10;
    animation: pulse-glow 3s infinite;
    border: 2px solid rgba(241, 196, 15, 0.3);
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 12px var(--priority-shadow);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 20px rgba(252, 218, 43, 0.6);
        transform: scale(1.02);
    }
}

/* Standard Specialist Cards */
.standard-specialist {
    background: var(--white);
    border: 2px solid #e5e7eb;
}

.standard-specialist:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* Specialist Avatar Enhancements */
.specialist-avatar {
    width: 120px;
    height: 120px;
    background: var(--background-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--text-secondary);
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.instapink-specialist .specialist-avatar {
    border: 3px solid var(--priority-gold);
    box-shadow: 0 8px 24px var(--priority-shadow);
}

.instapink-specialist .specialist-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px var(--priority-shadow);
}

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

/* Enhanced Badge System */
.badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 4px;
    transition: all 0.2s ease;
}

/* Priority Badge - InstaPink Verified */
.priority-badge {
    background: linear-gradient(135deg, var(--priority-gold) 0%, var(--priority-gold-border) 100%);
    color: var(--primary-dark);
    font-weight: 700;
    box-shadow: 0 2px 8px var(--priority-shadow);
    animation: priority-pulse 2s infinite;
}

@keyframes priority-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Service Badges */
.consultation-badge {
    background: #e8f5e9;
    color: #2e7d32;
}

.mobile-badge {
    background: #e3f2fd;
    color: #1976d2;
}

.virtual-badge {
    background: #f3e5f5;
    color: #7b1fa2;
}

.weekend-badge {
    background: #fff3e0;
    color: #f57c00;
}

.payment-badge {
    background: #fce4ec;
    color: #c2185b;
}

.language-badge {
    background: #f0f4c3;
    color: #827717;
}

.badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Sponsored Card (Legacy) */
.sponsored-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0ea5e9;
    position: relative;
}

.sponsored-label {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #0ea5e9;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

/* User Menu Styles */
.user-menu {
    position: relative;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--secondary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid transparent;
}

.user-avatar:hover {
    border-color: var(--secondary-green);
    transform: scale(1.05);
}

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

.user-avatar span {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.user-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
}

.user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-info {
    padding: 16px 20px;
}

.user-name {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.user-email {
    font-size: 14px;
    color: var(--text-secondary);
}

.dropdown-divider {
    height: 1px;
    background: var(--border-light);
    margin: 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.dropdown-item:hover {
    background: var(--background-light);
    color: var(--secondary-green);
}

.dropdown-item:first-child {
    border-radius: 0;
}

.dropdown-item:last-child {
    border-radius: 0 0 12px 12px;
}

/* Enhanced Loading States */
.loading {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-light);
}

.loading p:first-of-type {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.loading p:last-of-type {
    font-size: 14px;
    color: #888;
    margin-top: 8px;
}

/* Enhanced Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-card {
    height: 180px;
    border-radius: 16px;
    margin-bottom: 16px;
}

.spinner {
    display: inline-block;
    width: 56px;
    height: 56px;
    border: 4px solid rgba(0,191,111,0.1);
    border-top-color: var(--secondary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Enhanced No Results State */
.no-results {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-secondary);
}

.no-results-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-results h3 {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.no-results p {
    font-size: 16px;
    color: var(--text-secondary);
}

/* Profile styles for specialist profile page */
.profile-container {
    max-width: 800px;
    margin: 100px auto 40px;
    padding: 0 20px;
}

.profile-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 40px;
}

.profile-card h1 {
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.form-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-light);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h2 {
    font-size: 24px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.form-section h3 {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="url"],
.form-group input[type="number"],
.form-group input[type="tel"],
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-green);
    box-shadow: 0 0 0 3px rgba(0, 191, 111, 0.1);
}

.form-group small {
    display: block;
    margin-top: 4px;
    color: var(--text-secondary);
    font-size: 14px;
}

.form-group small a {
    color: var(--secondary-green);
}

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

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 12px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: normal;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--secondary-green);
}

.form-actions {
    margin-top: 40px;
    text-align: center;
}

.btn-primary {
    background: var(--secondary-green);
    color: white;
    border: none;
    padding: 16px 48px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: #00a861;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.payment-note {
    margin-top: 16px;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Results count enhancement for mixed results */
#resultsCount small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #666;
    font-weight: normal;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-illustration {
        display: none;
    }

    .search-form {
        grid-template-columns: 1fr;
    }

    .results-container {
        grid-template-columns: 1fr;
    }

    .filters-card {
        position: static;
        margin-bottom: 24px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .specialist-card {
        padding: 16px;
    }

    .specialist-avatar {
        width: 80px;
        height: 80px;
        font-size: 32px;
    }

    .ai-container {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-card {
        padding: 24px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }

    /* Mobile Priority Sections */
    .priority-header {
        padding: 16px;
    }

    .priority-title {
        font-size: 20px;
    }

    .instapink-badge {
        font-size: 11px;
        padding: 6px 12px;
        top: 8px;
        right: 8px;
    }

    .specialist-card {
        margin-bottom: 20px;
    }

    /* Mobile-specific InstaPink styling */
    .instapink-specialist {
        border-width: 2px !important;
    }

    .instapink-specialist:hover {
        transform: translateY(-2px) !important;
    }
}

/* Small mobile screens */
@media (max-width: 480px) {
    .priority-title {
        font-size: 18px;
        flex-direction: column;
        gap: 8px;
    }

    .priority-badge {
        margin-left: 0;
        margin-top: 4px;
    }

    .specialist-card {
        padding: 12px;
    }

    .instapink-badge {
        position: static;
        display: block;
        width: fit-content;
        margin: 0 auto 12px;
    }
}

/* Print styles */
@media print {
    .header,
    .search-section,
    .ai-assistant,
    .filters-card {
        display: none !important;
    }

    .specialist-card {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ccc !important;
        margin-bottom: 20px;
    }

    .instapink-specialist {
        background: #f9f9f9 !important;
        border-color: #333 !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .instapink-specialist {
        border-width: 3px !important;
        border-color: #000 !important;
    }

    .priority-badge,
    .instapink-badge {
        background: #000 !important;
        color: #fff !important;
        border: 2px solid #fff !important;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .instapink-badge {
        animation: none !important;
    }

    .priority-badge {
        animation: none !important;
    }
}