/* ========================================
   PROLINKU - PROFESSIONAL ANIMATED STYLES
   ======================================== */

/* CSS VARIABLES */
:root {
    --primary: #009fd4;
    --primary-dark: #007ba3;
    --primary-light: #e6f7fc;
    --secondary: #ff6b35;
    --secondary-light: #fff0eb;
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    --dark: #1a1a2e;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --white: #ffffff;
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--gray-50);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

.app {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(100px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeOut {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(100px); }
}

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px var(--primary), 0 0 10px var(--primary); }
    50% { box-shadow: 0 0 20px var(--primary), 0 0 30px var(--primary); }
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Animation Classes */
.fade-in { animation: fadeIn 0.6s ease forwards; }
.fade-in-up { animation: fadeInUp 0.6s ease forwards; }
.fade-in-down { animation: fadeInDown 0.6s ease forwards; }
.slide-in-left { animation: slideInLeft 0.6s ease forwards; }
.slide-in-right { animation: slideInRight 0.6s ease forwards; }
.slide-in-up { animation: fadeInUp 0.6s ease forwards; }
.scale-in { animation: scaleIn 0.4s ease forwards; }
.bounce { animation: bounce 2s infinite; }
.pulse { animation: pulse 2s infinite; }
.float { animation: float 3s ease-in-out infinite; }

/* ========================================
   NAVBAR
   ======================================== */

.navbar {
    background: var(--white);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(0, 159, 212, 0.3);
}

.nav-search {
    flex: 1;
    max-width: 400px;
    display: flex;
    background: var(--gray-100);
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition);
}

.nav-search:focus-within {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 159, 212, 0.1);
}

.nav-search input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    outline: none;
}

.nav-search button {
    padding: 12px 24px;
    background: var(--primary);
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.nav-search button:hover {
    background: var(--primary-dark);
}

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-links a {
    padding: 10px 16px;
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 80%;
}

.nav-auth {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-auth a {
    color: var(--gray-600);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.nav-auth a:hover {
    color: var(--primary);
}

.nav-user {
    position: relative;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.user-menu:hover {
    background: var(--gray-100);
}

.user-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    min-width: 200px;
    padding: 8px;
    animation: fadeInDown 0.2s ease;
}

.user-dropdown a {
    display: block;
    padding: 12px 16px;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: var(--radius);
    transition: var(--transition);
}

.user-dropdown a:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.user-dropdown hr {
    border: none;
    border-top: 1px solid var(--gray-200);
    margin: 8px 0;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    background: var(--gray-100);
}

.mobile-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    animation: fadeInDown 0.3s ease;
}

.mobile-menu a {
    display: block;
    padding: 16px;
    color: var(--gray-700);
    text-decoration: none;
    border-radius: var(--radius);
    transition: var(--transition);
}

.mobile-menu a:hover {
    background: var(--gray-100);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(0, 159, 212, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 159, 212, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), #e55a2b);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-outline {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn-success {
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

.btn-glow {
    animation: glow 2s ease-in-out infinite;
}

.btn-arrow {
    transition: var(--transition);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, var(--primary) 100%);
    background-size: 200% 200%;
    animation: gradientMove 15s ease infinite;
    padding: 100px 24px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

.hero-search {
    display: flex;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 8px;
    gap: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: scaleIn 0.6s ease 0.3s backwards;
}

.search-field {
    flex: 1;
    padding: 12px 20px;
    text-align: left;
}

.search-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.search-field input {
    width: 100%;
    border: none;
    font-size: 1rem;
    color: var(--dark);
    outline: none;
    background: transparent;
}

.hero-search .btn {
    padding: 20px 40px;
}

/* ========================================
   SECTIONS
   ======================================== */

.section {
    padding: 80px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.section.bg-light {
    background: var(--gray-100);
    max-width: 100%;
}

.section.bg-light > * {
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.section.bg-dark {
    background: linear-gradient(135deg, var(--dark) 0%, #16213e 100%);
    max-width: 100%;
    color: white;
}

.section.bg-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    max-width: 100%;
    color: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    margin: 16px auto 0;
    border-radius: 2px;
}

.section-title.light {
    color: white;
}

.section-title.light::after {
    background: linear-gradient(90deg, var(--white), rgba(255,255,255,0.5));
}

.section-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.8);
    margin-top: -30px;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* ========================================
   CATEGORIES
   ======================================== */

.categories-slider {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
}

.category-item {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: var(--shadow);
}

.category-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.category-item .icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
    transition: var(--transition);
}

.category-item:hover .icon {
    transform: scale(1.2);
}

.category-item h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-700);
}

/* ========================================
   PRO CARDS
   ======================================== */

.pros-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.pro-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.pro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: var(--transition);
}

.pro-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pro-card:hover::before {
    transform: scaleX(1);
}

.pro-card-cover {
    height: 160px;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
    position: relative;
    overflow: hidden;
}

.pro-card-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.pro-card:hover .pro-card-cover img {
    transform: scale(1.1);
}

.pro-card-logo {
    position: absolute;
    bottom: -30px;
    left: 20px;
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--white);
    overflow: hidden;
}

.pro-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pro-card-body {
    padding: 50px 20px 20px;
}

.pro-card-body h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--dark);
}

.pro-card-category {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.pro-card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.pro-card-rating .stars {
    color: var(--warning);
    font-size: 0.9rem;
}

.pro-card-rating .rating-number {
    font-weight: 700;
    color: var(--dark);
}

.pro-card-rating .rating-count {
    color: var(--gray-500);
    font-size: 0.85rem;
}

.pro-card-location {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.pro-card-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

/* ========================================
   BADGES
   ======================================== */

.badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
}

.badge-verified {
    background: var(--success);
    color: white;
}

.badge-top {
    background: linear-gradient(135deg, var(--warning), #d97706);
    color: white;
}

/* ========================================
   STEPS / HOW IT WORKS
   ======================================== */

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.step-icon {
    font-size: 3rem;
    margin: 20px 0;
    display: block;
}

.step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark);
}

.step p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* ========================================
   PROCESS TIMELINE
   ======================================== */

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-circle {
    width: 80px;
    height: 80px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.process-step:hover .step-circle {
    transform: scale(1.1);
    background: var(--primary);
    color: white;
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-content p {
    opacity: 0.9;
    font-size: 0.95rem;
}

/* ========================================
   FOR PROS PAGE
   ======================================== */

.for-pros-hero {
    background: linear-gradient(135deg, var(--dark) 0%, #16213e 50%, var(--primary-dark) 100%);
    background-size: 200% 200%;
    animation: gradientMove 15s ease infinite;
    padding: 120px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.animated-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: float 20s linear infinite;
}

.for-pros-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.for-pros-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.for-pros-content p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.hero-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

.stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

/* ========================================
   BENEFITS GRID
   ======================================== */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.benefit-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-quote {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--primary);
    line-height: 0;
    display: block;
    margin-bottom: 10px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.author-info strong {
    display: block;
    color: var(--dark);
}

.author-info span {
    color: var(--gray-500);
    font-size: 0.9rem;
}

.testimonial-stats {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    padding: 100px 24px;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 60px;
    border-radius: var(--radius-xl);
    text-align: center;
    color: white;
    box-shadow: 0 20px 60px rgba(0, 159, 212, 0.3);
}

.cta-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-note {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta-pros {
    text-align: center;
    padding: 60px 24px;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* ========================================
   FORMS
   ======================================== */

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 159, 212, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: var(--danger);
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-group small {
    display: block;
    margin-top: 6px;
    color: var(--gray-500);
    font-size: 0.85rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: normal !important;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-section {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.form-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--gray-100);
    color: var(--dark);
}

/* ========================================
   AUTH PAGES
   ======================================== */

.auth-container {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-50) 100%);
}

.auth-card {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 450px;
    animation: scaleIn 0.4s ease;
}

.auth-card h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-align: center;
}

.auth-card > p {
    text-align: center;
    color: var(--gray-500);
    margin-bottom: 30px;
}

.auth-divider {
    text-align: center;
    margin: 24px 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: var(--gray-200);
}

.auth-divider span {
    background: var(--white);
    padding: 0 16px;
    color: var(--gray-500);
    position: relative;
}

.auth-switch {
    text-align: center;
    margin-top: 16px;
    color: var(--gray-500);
}

.auth-switch a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.auth-switch a:hover {
    text-decoration: underline;
}

/* ========================================
   REGISTER PRO
   ======================================== */

.register-pro-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 24px;
}

.register-pro-header {
    text-align: center;
    margin-bottom: 40px;
}

.register-pro-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.register-pro-header p {
    color: var(--gray-500);
    font-size: 1.1rem;
}

/* ========================================
   LEAD PLAN OPTIONS
   ======================================== */

.lead-plan-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.lead-plan-option {
    cursor: pointer;
}

.lead-plan-option input[type="radio"] {
    display: none;
}

.plan-card {
    padding: 24px 20px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    background: var(--white);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.plan-card h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.plan-card .plan-leads {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.plan-card .plan-desc {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.plan-card.featured {
    border-color: var(--primary);
    background: var(--primary-light);
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.lead-plan-option input[type="radio"]:checked + .plan-card {
    border-color: var(--primary);
    background: var(--primary-light);
    box-shadow: 0 0 0 4px rgba(0, 159, 212, 0.2);
}

/* ========================================
   DASHBOARD
   ======================================== */

.dashboard-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: calc(100vh - 80px);
}

.dashboard-sidebar {
    background: var(--white);
    padding: 30px;
    border-right: 1px solid var(--gray-200);
}

.sidebar-profile {
    text-align: center;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.sidebar-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 16px;
    overflow: hidden;
}

.sidebar-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-profile h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.sidebar-profile p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.sidebar-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.sidebar-stats .stat {
    text-align: center;
}

.sidebar-stats .stat strong {
    display: block;
    font-size: 1.3rem;
    color: var(--primary);
}

.sidebar-stats .stat span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: var(--gray-600);
    text-decoration: none;
    border-radius: var(--radius);
    margin-bottom: 4px;
    transition: var(--transition);
    font-weight: 500;
}

.sidebar-nav a:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.sidebar-nav a.active {
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
}

.dashboard-main {
    padding: 40px;
    background: var(--gray-50);
}

.dashboard-main h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 8px;
}

/* ========================================
   PAYMENT CARD STYLES
   ======================================== */

.payment-card-display {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 30px;
    border-radius: var(--radius-xl);
    color: white;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.payment-card-display::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.card-chip {
    width: 50px;
    height: 40px;
    background: linear-gradient(135deg, #d4af37, #c5a028);
    border-radius: 8px;
    margin-bottom: 30px;
    position: relative;
}

.card-chip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 8px;
    right: 8px;
    height: 4px;
    background: rgba(0,0,0,0.2);
    transform: translateY(-50%);
}

.card-number {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-family: 'Courier New', monospace;
}

.card-details {
    display: flex;
    justify-content: space-between;
}

.card-holder, .card-expiry {
    font-size: 0.85rem;
}

.card-holder span, .card-expiry span {
    display: block;
    font-size: 0.7rem;
    opacity: 0.7;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.card-brand {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
}

/* ========================================
   SEARCH RESULTS
   ======================================== */

.search-results-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
}

.search-header {
    margin-bottom: 30px;
}

.search-header h1 {
    font-size: 2rem;
    font-weight: 800;
}

.search-header p {
    color: var(--gray-500);
}

.search-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}

.search-filters {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.search-filters h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.filter-group select {
    width: 100%;
    padding: 10px 12px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-group select:focus {
    border-color: var(--primary);
    outline: none;
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.search-pro-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 20px;
    align-items: start;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.search-pro-card:hover {
    border-color: var(--primary);
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.search-pro-logo {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    overflow: hidden;
}

.search-pro-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-pro-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.search-pro-info .category {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.search-pro-info .description {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-pro-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.search-pro-meta .stars {
    color: var(--warning);
}

.search-pro-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

/* ========================================
   PRO PROFILE
   ======================================== */

.pro-profile-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pro-profile-header {
    position: relative;
}

.pro-cover {
    height: 300px;
    background: linear-gradient(135deg, var(--gray-300), var(--gray-400));
    overflow: hidden;
}

.pro-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pro-header-content {
    display: flex;
    gap: 30px;
    padding: 0 40px;
    margin-top: -60px;
    position: relative;
}

.pro-logo-large {
    width: 140px;
    height: 140px;
    background: var(--white);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--white);
    overflow: hidden;
    flex-shrink: 0;
}

.pro-logo-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pro-header-info {
    padding-top: 70px;
}

.pro-header-info h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.pro-header-info .category {
    color: var(--gray-500);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.pro-header-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 20px;
}

.pro-stat {
    text-align: center;
}

.pro-stat strong {
    display: block;
    font-size: 1.1rem;
}

.pro-stat span {
    color: var(--gray-500);
    font-size: 0.85rem;
}

.pro-header-actions {
    display: flex;
    gap: 12px;
}

.pro-profile-body {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    padding: 40px;
}

.pro-section {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}

.pro-section h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-100);
}

.pro-services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pro-services-list span {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.portfolio-item {
    aspect-ratio: 1;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.pro-contact-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
}

.pro-contact-item:last-child {
    border-bottom: none;
}

.pro-contact-item .icon {
    font-size: 1.5rem;
}

.pro-contact-item strong {
    display: block;
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.pro-contact-item p {
    color: var(--dark);
}

.pro-contact-item small {
    color: var(--gray-500);
    font-size: 0.85rem;
}

/* ========================================
   REVIEWS
   ======================================== */

.review-item {
    padding: 24px 0;
    border-bottom: 1px solid var(--gray-100);
}

.review-item:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 16px;
}

.review-author {
    display: flex;
    gap: 12px;
}

.review-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.review-author-info h4 {
    font-weight: 600;
    margin-bottom: 2px;
}

.review-author-info span {
    color: var(--gray-500);
    font-size: 0.85rem;
}

.review-rating .stars {
    color: var(--warning);
    font-size: 1.1rem;
}

.review-title {
    font-weight: 700;
    margin-bottom: 8px;
}

.review-text {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 12px;
}

.review-photos {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.review-photos img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.review-photos img:hover {
    transform: scale(1.1);
}

.review-response {
    background: var(--gray-50);
    padding: 16px;
    border-radius: var(--radius);
    margin-top: 16px;
    border-left: 3px solid var(--primary);
}

.review-response h5 {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.review-response p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* ========================================
   STAR RATING INPUT
   ======================================== */

.star-rating {
    display: flex;
    gap: 8px;
}

.star-rating .star {
    font-size: 2.5rem;
    color: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
}

.star-rating .star:hover,
.star-rating .star.active {
    color: var(--warning);
    transform: scale(1.1);
}

.rating-text {
    margin-top: 8px;
    color: var(--gray-500);
    font-size: 0.9rem;
}

/* ========================================
   REQUEST FORM
   ======================================== */

.request-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 24px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
}

.request-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.request-pro-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.request-form-container {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.request-progress {
    margin-bottom: 30px;
}

.progress-bar {
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
    transition: width 0.5s ease;
}

.request-step {
    display: none;
}

.request-step.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.request-step h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.btn-row {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

/* ========================================
   SUCCESS PAGE
   ======================================== */

.success-container {
    min-height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 30px;
    animation: scaleIn 0.5s ease, bounce 1s ease 0.5s;
}

.success-container h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.success-container p {
    color: var(--gray-500);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
}

/* ========================================
   CLIENT DASHBOARD
   ======================================== */

.client-dashboard {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 24px;
}

.client-dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.client-dash-header h1 {
    font-size: 2rem;
    font-weight: 800;
}

.client-dash-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
}

.client-dash-tabs button {
    padding: 12px 24px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.client-dash-tabs button:hover {
    border-color: var(--primary);
}

.client-dash-tabs button.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* ========================================
   HOW IT WORKS PAGE
   ======================================== */

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.how-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.how-card.highlight {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.how-card h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
}

.how-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.how-step {
    display: flex;
    gap: 16px;
    align-items: start;
}

.how-step .num {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.how-card.highlight .num {
    background: var(--white);
    color: var(--primary);
}

.how-step h4 {
    font-weight: 700;
    margin-bottom: 4px;
}

.how-step p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* ========================================
   REVIEW PAGE
   ======================================== */

.review-container {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    background: var(--gray-100);
}

.review-card {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 600px;
}

.review-card h1 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 24px;
    text-align: center;
}

.review-pro-info {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    margin-bottom: 30px;
}

/* ========================================
   MODAL
   ======================================== */

.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-xl);
    max-width: 90%;
    max-height: 90vh;
    overflow: auto;
    animation: scaleIn 0.3s ease;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: var(--dark);
    color: white;
    margin-top: auto;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.footer-section a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    padding: 6px 0;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 24px;
    text-align: center;
    color: rgba(255,255,255,0.5);
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.hidden {
    display: none !important;
}

.page {
    display: none;
}

.page.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .nav-search {
        display: none;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-search {
        flex-direction: column;
    }
    
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
    
    .dashboard-container {
        grid-template-columns: 1fr;
    }
    
    .dashboard-sidebar {
        display: none;
    }
    
    .search-content {
        grid-template-columns: 1fr;
    }
    
    .search-filters {
        position: static;
    }
    
    .pro-profile-body {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 16px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section {
        padding: 50px 16px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .for-pros-content h1 {
        font-size: 2rem;
    }
    
    .lead-plan-options {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .request-container {
        grid-template-columns: 1fr;
    }
    
    .request-sidebar {
        position: static;
    }
    
    .how-it-works-grid {
        grid-template-columns: 1fr;
    }
    
    .pro-header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 20px;
    }
    
    .pro-header-info {
        padding-top: 20px;
    }
    
    .pro-header-stats {
        justify-content: center;
    }
    
    .pro-header-actions {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-box {
        padding: 40px 20px;
    }
    
    .cta-box h2 {
        font-size: 1.8rem;
    }
    
    .auth-card {
        padding: 30px 20px;
    }
    
    .pros-grid {
        grid-template-columns: 1fr;
    }
    
    .search-pro-card {
        grid-template-columns: 1fr;
    }
    
    .search-pro-logo {
        margin: 0 auto;
    }
    
    .search-pro-info {
        text-align: center;
    }
    
    .search-pro-meta {
        justify-content: center;
    }
    
    .search-pro-actions {
        align-items: center;
    }
}

/* ========================================
   IMAGE UPLOAD STYLES
   ======================================== */

.upload-area {
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.upload-area:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.upload-area.drag-over {
    border-color: var(--primary);
    background: var(--primary-light);
    transform: scale(1.02);
}

.upload-area-wide {
    min-height: 150px;
}

.upload-area-small {
    width: 120px;
    height: 120px;
    padding: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.upload-placeholder {
    color: var(--gray-500);
}

.upload-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
}

.upload-area-small .upload-icon {
    font-size: 2rem;
    margin-bottom: 4px;
}

.upload-placeholder p {
    font-weight: 500;
    margin-bottom: 4px;
}

.upload-placeholder small {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.upload-preview {
    position: relative;
    width: 100%;
    height: 100%;
}

.upload-preview img {
    max-width: 100%;
    max-height: 200px;
    border-radius: var(--radius);
    object-fit: contain;
}

.upload-area-wide .upload-preview img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.remove-btn {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 28px;
    height: 28px;
    background: var(--danger);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.remove-btn:hover {
    background: #dc2626;
    transform: scale(1.1);
}

.portfolio-upload-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.portfolio-item-uploaded {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow);
    animation: scaleIn 0.3s ease;
}

.portfolio-item-uploaded img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-item-uploaded .remove-btn {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    font-size: 12px;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item-uploaded:hover .remove-btn {
    opacity: 1;
}

.upload-loading {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@media (max-width: 768px) {
    .upload-area-small {
        width: 100px;
        height: 100px;
    }
    
    .portfolio-item-uploaded {
        width: 100px;
        height: 100px;
    }
}

/* ========================================
   SERVICE AREA MAP STYLES
   ======================================== */

.location-section {
    margin-top: 1.5rem;
}

.location-section > label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--dark);
}

.label-hint {
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--gray-500);
}

.location-search-wrapper {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.address-search-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.95rem;
    transition: var(--transition);
}

.address-search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 159, 212, 0.1);
}

.btn-search-address {
    padding: 0.75rem;
    background: var(--gray-100);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-search-address:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.btn-use-location {
    padding: 0.75rem 1rem;
    background: var(--primary-light);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-dark);
    white-space: nowrap;
}

.btn-use-location:hover {
    background: var(--primary);
    color: white;
}

.btn-use-location svg {
    flex-shrink: 0;
}

.service-area-map {
    width: 100%;
    height: 350px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}

.radius-selector {
    margin-bottom: 1rem;
}

.radius-selector > label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.radius-options {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.radius-btn {
    padding: 0.5rem 1rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 50px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition);
}

.radius-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.radius-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.radius-selector-inline {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.radius-selector-inline > span {
    font-size: 0.9rem;
    color: var(--gray-600);
    white-space: nowrap;
}

.radius-selector-inline .radius-options {
    display: flex;
    gap: 0.4rem;
}

.radius-selector-inline .radius-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
}

.map-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.map-hint svg {
    color: var(--primary);
    flex-shrink: 0;
}

.service-locations-list {
    margin-bottom: 1rem;
}

.no-locations-message {
    padding: 2rem;
    text-align: center;
    background: var(--gray-50);
    border-radius: var(--radius);
    border: 2px dashed var(--gray-200);
}

.no-locations-message p {
    margin: 0;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.location-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1rem;
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.location-item:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 159, 212, 0.1);
}

.location-item-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.location-pin-number {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--primary) 0%, #0284c7 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.location-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.location-city {
    font-weight: 600;
    color: var(--gray-800);
}

.location-radius {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.btn-remove-location {
    width: 32px;
    height: 32px;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    transition: var(--transition);
}

.btn-remove-location:hover {
    background: #fee2e2;
    color: #dc2626;
}

.location-item-radius {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-100);
}

.location-item-radius label {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.location-item-radius select {
    padding: 0.3rem 0.6rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.8rem;
    background: var(--white);
    cursor: pointer;
}

.custom-pin-marker {
    background: transparent;
}

.custom-pin-marker .pin-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary) 0%, #0284c7 100%);
    color: white;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    border: 2px solid white;
}

.custom-pin-marker .pin-number::after {
    content: attr(data-num);
    transform: rotate(45deg);
}

.location-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--primary-light);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--primary-dark);
    animation: fadeIn 0.3s ease;
}

.location-info.success {
    background: #d1fae5;
    color: #065f46;
}

.location-icon {
    font-size: 1.2rem;
}

#selected-location-text {
    flex: 1;
}

/* Leaflet custom marker */
.custom-marker {
    background: var(--primary);
    border: 3px solid white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Map popup styles */
.leaflet-popup-content-wrapper {
    border-radius: var(--radius) !important;
    padding: 0 !important;
    box-shadow: var(--shadow-lg) !important;
}

.leaflet-popup-content {
    margin: 0.75rem !important;
    font-family: 'Inter', sans-serif !important;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .location-search-wrapper {
        flex-wrap: wrap;
    }
    
    .address-search-input {
        width: 100%;
        order: 1;
    }
    
    .btn-search-address {
        order: 2;
    }
    
    .btn-use-location {
        order: 3;
        flex: 1;
        justify-content: center;
    }
    
    .service-area-map {
        height: 280px;
    }
    
    .radius-options {
        justify-content: center;
    }
    
    .radius-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
}

/* ========================================
   REGISTRATION STEPPER & MULTI-STEP FORM
   ======================================== */

.registration-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.step-number {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.step.active .step-number,
.step.completed .step-number {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 159, 212, 0.4);
}

.step.completed .step-number {
    background: var(--success);
}

.step-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-500);
    text-align: center;
    transition: var(--transition);
}

.step.active .step-label,
.step.completed .step-label {
    color: var(--dark);
}

.step-line {
    flex: 1;
    height: 3px;
    background: var(--gray-200);
    margin: 0 1rem;
    max-width: 100px;
    border-radius: 3px;
    transition: var(--transition);
}

.step-line.completed {
    background: var(--success);
}

.form-step {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.form-step.active {
    display: block;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.form-navigation .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section-subtitle {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

/* ========================================
   PAYMENT FORM STYLES
   ======================================== */

.payment-section {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid var(--gray-200);
}

.payment-card-form {
    max-width: 500px;
}

.card-preview {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    color: white;
    aspect-ratio: 1.586;
    max-width: 380px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.card-preview::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    pointer-events: none;
}

.card-preview-inner {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-chip {
    width: 50px;
    height: 40px;
    background: linear-gradient(135deg, #d4af37 0%, #f9d976 50%, #d4af37 100%);
    border-radius: 6px;
    margin-bottom: 1rem;
}

.card-number-preview {
    font-size: 1.4rem;
    font-family: 'Courier New', monospace;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

.card-details-preview {
    display: flex;
    justify-content: space-between;
}

.card-details-preview small {
    font-size: 0.7rem;
    opacity: 0.7;
    text-transform: uppercase;
}

.card-details-preview div > div {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.card-input-wrapper {
    position: relative;
}

.card-icons {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 8px;
}

.card-icon {
    font-size: 0.7rem;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
    opacity: 0.4;
    transition: var(--transition);
}

.card-icon.visa {
    background: #1a1f71;
    color: white;
}

.card-icon.mastercard {
    background: #eb001b;
    color: white;
}

.card-icon.active {
    opacity: 1;
}

.payment-security-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #d1fae5;
    border-radius: var(--radius);
    color: #065f46;
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

.payment-security-note svg {
    flex-shrink: 0;
    color: var(--success);
}

/* ========================================
   LEAD PRICING SLIDER
   ======================================== */

.category-price-notice {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #f59e0b;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    color: #92400e;
    font-size: 0.95rem;
    font-weight: 500;
    animation: fadeIn 0.3s ease;
}

.category-price-notice.updated {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border-color: #10b981;
    color: #065f46;
}

.category-price-notice svg {
    flex-shrink: 0;
}

.approval-notice {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #3b82f6;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    color: #1e40af;
}

.approval-notice svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.approval-notice strong {
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.approval-notice p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.input-hint {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.lead-pricing-slider {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 2px solid var(--gray-200);
}

.pricing-display {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.price-per-lead,
.leads-estimate {
    text-align: center;
}

.price-label,
.estimate-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.price-value span {
    font-size: 3rem;
}

.estimate-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slider-container {
    position: relative;
    padding: 0 10px;
    margin-bottom: 2rem;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
}

.price-slider {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.slider-track {
    position: absolute;
    top: 50%;
    left: 10px;
    right: 10px;
    height: 8px;
    background: var(--gray-200);
    border-radius: 4px;
    transform: translateY(-50%);
    margin-top: 12px;
    z-index: 1;
}

.slider-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 4px;
    width: 33%;
    transition: width 0.2s ease;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--white);
    border: 4px solid var(--primary);
    cursor: grab;
    box-shadow: 0 4px 12px rgba(0, 159, 212, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.price-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 159, 212, 0.5);
}

.price-slider::-webkit-slider-thumb:active {
    cursor: grabbing;
    transform: scale(1.15);
}

.price-slider::-moz-range-thumb {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--white);
    border: 4px solid var(--primary);
    cursor: grab;
    box-shadow: 0 4px 12px rgba(0, 159, 212, 0.4);
}

.pricing-tiers {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tier {
    flex: 1;
    padding: 1rem;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
    opacity: 0.6;
}

.tier.active {
    border-color: var(--primary);
    opacity: 1;
    box-shadow: 0 4px 15px rgba(0, 159, 212, 0.2);
}

.tier-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    margin: 0 auto 0.75rem;
    transition: var(--transition);
}

.tier.active .tier-indicator {
    background: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 159, 212, 0.2);
}

.tier[data-tier="premium"].active .tier-indicator {
    background: var(--secondary);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.2);
}

.tier-range {
    display: block;
    font-weight: 700;
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.tier-leads {
    display: block;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.tier-placement {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-500);
}

.pricing-benefits {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-400);
    transition: var(--transition);
}

.benefit.active {
    color: var(--success);
}

.benefit.active svg {
    color: var(--success);
}

.benefit svg {
    color: var(--gray-400);
    transition: var(--transition);
}

/* Mobile responsiveness for stepper */
@media (max-width: 768px) {
    .registration-stepper {
        padding: 1rem;
    }
    
    .step-number {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }
    
    .step-label {
        font-size: 0.75rem;
        max-width: 70px;
    }
    
    .step-line {
        margin: 0 0.5rem;
        max-width: 50px;
    }
    
    .card-preview {
        max-width: 100%;
    }
    
    .card-number-preview {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-navigation .btn {
        width: 100%;
        justify-content: center;
    }
    
    .form-navigation > div:empty {
        display: none;
    }
    
    .lead-pricing-slider {
        padding: 1.5rem 1rem;
    }
    
    .pricing-display {
        flex-direction: column;
        gap: 1rem;
    }
    
    .price-value {
        font-size: 2.5rem;
    }
    
    .estimate-value {
        font-size: 2rem;
    }
    
    .pricing-tiers {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .tier {
        padding: 0.75rem;
    }
    
    .pricing-benefits {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
}

/* ========================================
   LEGAL PAGES (Privacy Policy & Terms)
   ======================================== */

.legal-page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gray-200);
}

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.legal-updated {
    color: var(--gray-500);
    font-size: 0.95rem;
}

.legal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.legal-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-100);
}

.legal-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legal-section h2::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--primary);
    border-radius: 4px;
}

.legal-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-700);
    margin: 1.5rem 0 0.75rem;
}

.legal-section p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.legal-section li {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-section li strong {
    color: var(--dark);
}

.contact-box {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-top: 1rem;
}

.contact-box p {
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.legal-footer {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
}

.checkbox-label a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 500;
}

.checkbox-label a:hover {
    color: var(--primary-dark);
}

.footer-bottom a {
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-bottom a:hover {
    opacity: 1;
    color: var(--primary);
}

@media (max-width: 768px) {
    .legal-page-container {
        padding: 20px 15px 40px;
    }
    
    .legal-header h1 {
        font-size: 1.8rem;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
    
    .legal-section h2 {
        font-size: 1.2rem;
    }
}

/* ========================================
   ADMIN DASHBOARD
   ======================================== */

.admin-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.admin-header {
    margin-bottom: 2rem;
}

.admin-header h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.admin-header p {
    color: var(--gray-500);
}

.admin-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--gray-200);
    padding-bottom: 0.5rem;
}

.admin-tab {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: none;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-500);
    cursor: pointer;
    border-radius: var(--radius) var(--radius) 0 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.admin-tab:hover {
    color: var(--primary);
    background: var(--gray-50);
}

.admin-tab.active {
    color: var(--primary);
    background: var(--white);
    border-bottom: 2px solid var(--primary);
    margin-bottom: -2px;
}

.admin-tab .badge {
    background: var(--danger);
    color: white;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 50px;
    font-weight: 600;
}

.admin-tab-content {
    display: none;
}

.admin-tab-content.active {
    display: block;
}

.admin-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.admin-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1.5rem;
    align-items: start;
}

.admin-card-logo {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    overflow: hidden;
}

.admin-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-card-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.admin-card-info .ein {
    font-family: monospace;
    background: var(--gray-100);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
    display: inline-block;
}

.admin-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.admin-card-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.admin-card-actions {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.btn-approve {
    background: var(--success);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-approve:hover {
    background: #059669;
}

.btn-reject {
    background: var(--danger);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-reject:hover {
    background: #dc2626;
}

.btn-view {
    background: var(--gray-100);
    color: var(--gray-700);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-view:hover {
    background: var(--gray-200);
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.pending {
    background: #fef3c7;
    color: #92400e;
}

.status-badge.approved {
    background: #d1fae5;
    color: #065f46;
}

.status-badge.rejected {
    background: #fee2e2;
    color: #991b1b;
}

.empty-state {
    text-align: center;
    padding: 3rem;
    color: var(--gray-500);
    font-size: 1rem;
}

/* ========================================
   CATEGORY QUESTIONS
   ======================================== */

.category-questions {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: var(--radius-lg);
    border: 1px solid #7dd3fc;
}

.questions-header {
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(125, 211, 252, 0.5);
}

.questions-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.questions-header p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}

.category-questions .form-group {
    margin-bottom: 1rem;
}

.category-questions .form-group:last-child {
    margin-bottom: 0;
}

.category-questions label {
    font-weight: 500;
    color: #0c4a6e;
}

.category-questions select {
    background: var(--white);
}

/* ========================================
   SEARCH QUESTIONS PAGE
   ======================================== */

.search-questions-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem 1rem;
    min-height: calc(100vh - 70px);
}

.search-questions-header {
    margin-bottom: 2rem;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: var(--gray-600);
    font-size: 0.95rem;
    cursor: pointer;
    padding: 0.5rem 0;
    margin-bottom: 1rem;
    transition: color 0.2s;
}

.back-btn:hover {
    color: var(--primary);
}

.search-questions-title h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.search-questions-title p {
    color: var(--gray-500);
    font-size: 1.05rem;
}

.search-questions-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 2rem;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-info-summary {
    display: flex;
    gap: 2rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, #e0f2fe 100%);
    border-radius: var(--radius);
    margin-bottom: 2rem;
}

.search-info-summary .info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.search-info-summary .info-label {
    font-size: 0.8rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-info-summary .info-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
}

.questions-form {
    margin-bottom: 2rem;
}

.questions-form .form-group {
    margin-bottom: 1.5rem;
    animation: fadeIn 0.3s ease-out;
    animation-fill-mode: backwards;
}

.questions-form .form-group:nth-child(1) { animation-delay: 0.1s; }
.questions-form .form-group:nth-child(2) { animation-delay: 0.2s; }
.questions-form .form-group:nth-child(3) { animation-delay: 0.3s; }
.questions-form .form-group:nth-child(4) { animation-delay: 0.4s; }
.questions-form .form-group:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.questions-form label {
    display: block;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.questions-form select {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: all 0.2s;
    background: var(--white);
    cursor: pointer;
}

.questions-form select:hover {
    border-color: var(--gray-300);
}

.questions-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 159, 212, 0.1);
}

.questions-form select.answered {
    border-color: var(--success);
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.questions-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.questions-actions .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.questions-actions .btn-primary {
    flex: 2;
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.2s;
}

.btn:hover .btn-icon {
    transform: translateX(3px);
}

.no-questions-message {
    text-align: center;
    padding: 3rem 2rem;
    color: var(--gray-500);
}

.no-questions-message h3 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.no-questions-message p {
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .search-questions-container {
        padding: 1rem;
    }
    
    .search-questions-title h1 {
        font-size: 1.5rem;
    }
    
    .search-questions-card {
        padding: 1.5rem;
    }
    
    .search-info-summary {
        flex-direction: column;
        gap: 1rem;
    }
    
    .questions-actions {
        flex-direction: column;
    }
    
    .questions-actions .btn {
        width: 100%;
    }
}

/* Project Summary in Search Results */
.search-header {
    margin-bottom: 1.5rem;
}

.search-header-main {
    margin-bottom: 1rem;
}

.search-project-summary {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid #86efac;
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    margin-top: 1rem;
}

.project-summary-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #166534;
}

.summary-icon {
    font-size: 1.1rem;
}

.edit-project-btn {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: background 0.2s;
}

.edit-project-btn:hover {
    background: rgba(0, 159, 212, 0.1);
}

.project-summary-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tag {
    background: var(--white);
    border: 1px solid #86efac;
    border-radius: 20px;
    padding: 0.35rem 0.75rem;
    font-size: 0.85rem;
    color: #166534;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.project-tag-label {
    color: #4ade80;
    font-weight: 500;
}

/* ========================================
   DEMAND BADGES & SEARCH IMPROVEMENTS
   ======================================== */

.pro-name-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.pro-name-row h3 {
    margin: 0;
}

.demand-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.demand-badge.high {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
    border: 1px solid #fbbf24;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.4); }
    50% { box-shadow: 0 0 8px 2px rgba(251, 191, 36, 0.3); }
}

.demand-badge.medium {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    color: #1e40af;
    border: 1px solid #60a5fa;
}

.demand-badge.low {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: #166534;
    border: 1px solid #86efac;
}

.jobs-badge {
    background: var(--gray-100);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: var(--gray-700);
}

/* ========================================
   SCHEDULE SYSTEM
   ======================================== */

.schedule-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.schedule-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.schedule-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
    transition: all 0.2s;
}

.schedule-item:hover {
    background: var(--gray-100);
    transform: translateX(4px);
}

.schedule-item.today {
    border-left-color: #f59e0b;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.schedule-item.upcoming {
    border-left-color: var(--success);
}

.schedule-item.past {
    border-left-color: var(--gray-400);
    opacity: 0.7;
}

.schedule-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 50px;
    padding: 0.5rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.schedule-date .day {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.schedule-date .month {
    font-size: 0.7rem;
    color: var(--gray-500);
    text-transform: uppercase;
}

.schedule-details {
    flex: 1;
}

.schedule-details h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.schedule-details p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin: 0;
}

.schedule-time {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
    margin-top: 0.5rem;
}

.schedule-actions {
    display: flex;
    gap: 0.5rem;
}

.schedule-actions button {
    padding: 0.4rem 0.75rem;
    font-size: 0.8rem;
    border-radius: 6px;
}

.empty-schedule {
    text-align: center;
    padding: 2rem;
    color: var(--gray-500);
}

.empty-schedule p {
    margin-bottom: 1rem;
}

/* Schedule Modal */
.schedule-modal-content {
    max-width: 500px;
}

.schedule-form .form-group {
    margin-bottom: 1rem;
}

.schedule-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.schedule-form input,
.schedule-form select,
.schedule-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 1rem;
}

.time-inputs {
    display: flex;
    gap: 1rem;
}

.time-inputs .form-group {
    flex: 1;
}

/* ========================================
   REVIEW REQUEST SYSTEM
   ======================================== */

.review-request-card {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #fbbf24;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 1rem;
}

.review-request-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #92400e;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-request-card p {
    font-size: 0.9rem;
    color: #78350f;
    margin-bottom: 1rem;
}

.review-stars-input {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.review-stars-input .star {
    font-size: 2rem;
    cursor: pointer;
    color: #d1d5db;
    transition: all 0.2s;
}

.review-stars-input .star:hover,
.review-stars-input .star.active {
    color: #fbbf24;
    transform: scale(1.1);
}

.review-textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #fbbf24;
    border-radius: var(--radius);
    font-size: 0.95rem;
    resize: vertical;
    min-height: 80px;
    margin-bottom: 1rem;
}

.review-submit-btn {
    background: #f59e0b;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.review-submit-btn:hover {
    background: #d97706;
}

/* ========================================
   PAYMENT MODAL
   ======================================== */

.payment-modal-content {
    max-width: 550px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 0;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--gray-500);
    z-index: 10;
}

.modal-close:hover {
    color: var(--dark);
}

.payment-modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.payment-modal-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.payment-modal-header p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

.payment-modal-body {
    padding: 1.5rem 2rem;
}

.payment-modal-body .form-section {
    margin-bottom: 1.5rem;
}

.payment-modal-body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.lead-preview-box {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.lead-preview-box h4 {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.lead-preview-box .lead-title {
    font-weight: 600;
    color: var(--dark);
}

.lead-preview-box .lead-meta {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-top: 0.5rem;
}

.lead-pricing-slider.compact {
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius);
}

.pricing-display-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.price-label-sm {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.price-value-lg {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.pricing-note {
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.pricing-note strong {
    display: block;
    color: var(--dark);
    font-size: 0.9rem;
}

.pricing-note span {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.payment-card-form.compact .form-group {
    margin-bottom: 0.75rem;
}

.payment-security-note.compact {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    margin-top: 1rem;
}

.payment-modal-footer {
    padding: 1.5rem 2rem;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.charge-summary {
    font-size: 0.95rem;
    color: var(--gray-600);
}

.charge-summary strong {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0 0.25rem;
}

@media (max-width: 768px) {
    .payment-modal-content {
        max-width: 100%;
        margin: 10px;
        max-height: calc(100vh - 20px);
    }
    
    .payment-modal-header,
    .payment-modal-body,
    .payment-modal-footer {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    
    .payment-modal-footer {
        flex-direction: column;
        text-align: center;
    }
    
    .payment-modal-footer .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .admin-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .admin-card-logo {
        margin: 0 auto;
    }
    
    .admin-card-meta {
        justify-content: center;
    }
    
    .admin-card-actions {
        flex-direction: row;
        justify-content: center;
    }
    
    .admin-tabs {
        flex-wrap: wrap;
    }
}

/* ========================================
   DOWNLOAD APP SECTION
   ======================================== */

.download-app-section {
    background: linear-gradient(135deg, #0c4a6e 0%, #075985 50%, #0369a1 100%);
    padding: 4rem 2rem;
}

.download-app-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.download-app-content {
    color: white;
}

.app-icon-large {
    margin-bottom: 1.5rem;
}

.app-icon-large .logo-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.download-app-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.download-app-content > p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.app-features-mini {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.app-features-mini span {
    background: rgba(255,255,255,0.15);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.store-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #000;
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s;
}

.store-badge:hover {
    transform: scale(1.05);
    background: #1a1a1a;
}

.store-badge svg {
    flex-shrink: 0;
}

.store-badge-small {
    display: block;
    font-size: 0.65rem;
    opacity: 0.8;
}

.store-badge-large {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
}

.pwa-note {
    font-size: 0.85rem;
    opacity: 0.7;
}

.download-app-mockup {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: #1a1a1a;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.5);
    position: relative;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 25px;
    background: #000;
    border-radius: 20px;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 30px;
    padding: 50px 16px 20px;
    overflow: hidden;
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--dark);
}

.mockup-search {
    background: var(--gray-100);
    padding: 12px 16px;
    border-radius: 10px;
    margin-bottom: 1rem;
    color: var(--gray-500);
    font-size: 0.9rem;
}

.mockup-categories {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.mockup-categories span {
    background: var(--gray-100);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.mockup-pro {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 12px;
    background: var(--gray-50);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
}

.mockup-pro-avatar {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.mockup-pro strong {
    display: block;
    font-size: 0.9rem;
    color: var(--dark);
}

.mockup-pro span {
    font-size: 0.75rem;
    color: var(--gray-500);
}

@media (max-width: 768px) {
    .download-app-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .download-app-content h2 {
        font-size: 1.8rem;
    }
    
    .app-features-mini {
        justify-content: center;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .store-badge {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    .download-app-mockup {
        order: -1;
    }
    
    .phone-mockup {
        width: 220px;
        height: 440px;
    }
}

/* ========================================
   CHAT SYSTEM
   ======================================== */

.chat-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 159, 212, 0.4);
    z-index: 1000;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 159, 212, 0.5);
}

.chat-fab .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ef4444;
    color: white;
    font-size: 0.75rem;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.chat-window {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 380px;
    height: 500px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.2);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: chatSlideUp 0.3s ease-out;
}

@keyframes chatSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    background: var(--primary);
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chat-header-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.chat-header-name {
    font-weight: 600;
}

.chat-header-status {
    font-size: 0.75rem;
    opacity: 0.8;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.chat-close:hover {
    opacity: 1;
}

.chat-list {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.chat-list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-100);
    cursor: pointer;
    transition: background 0.2s;
}

.chat-list-item:hover {
    background: var(--gray-50);
}

.chat-list-item.unread {
    background: #eff6ff;
}

.chat-list-avatar {
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.chat-list-info {
    flex: 1;
    min-width: 0;
}

.chat-list-name {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.15rem;
}

.chat-list-preview {
    font-size: 0.85rem;
    color: var(--gray-500);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chat-list-time {
    font-size: 0.75rem;
    color: var(--gray-400);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: var(--gray-50);
}

.chat-message {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: 16px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.chat-message.sent {
    background: var(--primary);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.chat-message.received {
    background: white;
    color: var(--dark);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.chat-message-time {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-top: 0.25rem;
}

.chat-input-area {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    border-top: 1px solid var(--gray-200);
    background: white;
}

.chat-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 24px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.2s;
}

.chat-input:focus {
    border-color: var(--primary);
}

.chat-send-btn {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.chat-send-btn:hover {
    background: #0088b8;
}

.chat-empty {
    text-align: center;
    padding: 3rem;
    color: var(--gray-500);
}

.chat-back-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    margin-right: 0.5rem;
}

@media (max-width: 480px) {
    .chat-window {
        width: calc(100% - 32px);
        height: calc(100% - 140px);
        bottom: 90px;
        right: 16px;
        left: 16px;
    }
}

/* ========================================
   NOTIFICATIONS SYSTEM
   ======================================== */

.notification-bell {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-right: 0.5rem;
}

.notification-bell svg {
    width: 24px;
    height: 24px;
    fill: var(--gray-600);
}

.notification-bell .badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #ef4444;
    color: white;
    font-size: 0.65rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.notifications-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 360px;
    max-height: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.15);
    overflow: hidden;
    z-index: 1000;
}

.notifications-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.notifications-header h4 {
    font-weight: 700;
    color: var(--dark);
}

.mark-all-read {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 0.85rem;
    cursor: pointer;
}

.notifications-list {
    max-height: 320px;
    overflow-y: auto;
}

.notification-item {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-100);
    cursor: pointer;
    transition: background 0.2s;
}

.notification-item:hover {
    background: var(--gray-50);
}

.notification-item.unread {
    background: #eff6ff;
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.notification-icon.lead {
    background: #dbeafe;
}

.notification-icon.schedule {
    background: #dcfce7;
}

.notification-icon.review {
    background: #fef3c7;
}

.notification-icon.payment {
    background: #f3e8ff;
}

.notification-content {
    flex: 1;
}

.notification-text {
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.notification-time {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* ========================================
   ANALYTICS DASHBOARD
   ======================================== */

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.analytics-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.analytics-card.primary {
    background: linear-gradient(135deg, var(--primary) 0%, #0088b8 100%);
    color: white;
}

.analytics-card-label {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.analytics-card-value {
    font-size: 2rem;
    font-weight: 800;
}

.analytics-card-change {
    font-size: 0.8rem;
    margin-top: 0.5rem;
}

.analytics-card-change.positive {
    color: #10b981;
}

.analytics-card-change.negative {
    color: #ef4444;
}

.analytics-chart {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.analytics-chart h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.chart-placeholder {
    height: 200px;
    background: var(--gray-50);
    border-radius: var(--radius);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    gap: 0.5rem;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary) 0%, #60d6ff 100%);
    border-radius: 4px 4px 0 0;
    transition: height 0.3s;
}

.analytics-table {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.analytics-table h3 {
    font-size: 1.1rem;
    font-weight: 700;
    padding: 1.5rem 1.5rem 1rem;
}

.analytics-table table {
    width: 100%;
    border-collapse: collapse;
}

.analytics-table th,
.analytics-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-100);
}

.analytics-table th {
    background: var(--gray-50);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.analytics-table td {
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .analytics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .analytics-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   TRUST ELEMENTS
   ======================================== */

.hero-trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

.trust-icon {
    font-size: 1.1rem;
}

/* Social Proof Bar */
.social-proof-bar {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.proof-item {
    text-align: center;
    color: white;
}

.proof-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #60a5fa;
}

.proof-label {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Trust Guarantee Banner */
.trust-guarantee-banner {
    background: linear-gradient(135deg, #065f46 0%, #047857 100%);
    padding: 1.5rem 2rem;
}

.guarantee-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: white;
}

.guarantee-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.guarantee-text {
    flex: 1;
}

.guarantee-text h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.guarantee-text p {
    font-size: 0.95rem;
    opacity: 0.9;
    margin: 0;
}

.guarantee-link {
    color: white;
    background: rgba(255,255,255,0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.2s;
}

.guarantee-link:hover {
    background: rgba(255,255,255,0.3);
}

/* Trust & Safety Section */
.trust-section {
    padding: 4rem 2rem;
    background: var(--gray-50);
}

.trust-section-content {
    max-width: 1100px;
    margin: 0 auto;
}

.trust-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.trust-section .subtitle {
    text-align: center;
    color: var(--gray-500);
    margin-bottom: 3rem;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.trust-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
}

.trust-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

.trust-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.trust-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* As Seen On / Press */
.press-section {
    padding: 2rem;
    background: white;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.press-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.press-content p {
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.press-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.6;
}

.press-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-400);
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 2rem;
    background: white;
}

.testimonials-content {
    max-width: 1100px;
    margin: 0 auto;
}

.testimonials-content h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: var(--radius-lg);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.2;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.testimonial-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
}

.testimonial-info p {
    font-size: 0.85rem;
    color: var(--gray-500);
}

.testimonial-stars {
    color: #fbbf24;
    margin-top: 0.25rem;
}

/* Security Badges Footer */
.security-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    background: var(--gray-100);
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.85rem;
}

.security-badge svg {
    width: 24px;
    height: 24px;
    fill: var(--gray-500);
}

@media (max-width: 768px) {
    .hero-trust-badges {
        gap: 1rem;
    }
    
    .trust-badge-item {
        font-size: 0.8rem;
    }
    
    .social-proof-bar {
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .proof-number {
        font-size: 1.5rem;
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }
    
    .trust-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   SELECTED PROS BAR
   ======================================== */

.selected-pros-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 2px solid var(--primary);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 999;
    animation: slideUpBar 0.3s ease-out;
}

@keyframes slideUpBar {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.selected-pros-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.selected-pros-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.selected-count {
    font-weight: 600;
    color: var(--dark);
}

.selected-count span {
    color: var(--primary);
    font-size: 1.2rem;
}

.selected-pros-avatars {
    display: flex;
    margin-left: 0.5rem;
}

.selected-pros-avatars .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 3px solid white;
    margin-left: -10px;
}

.selected-pros-avatars .avatar:first-child {
    margin-left: 0;
}

.selected-pros-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Pro Card Selection */
.search-pro-card {
    position: relative;
    transition: all 0.2s;
}

.search-pro-card .search-pro-content {
    display: flex;
    gap: 1rem;
    cursor: pointer;
    flex: 1;
}

.search-pro-card.selected {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.search-pro-card .select-checkbox {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 28px;
    height: 28px;
    border: 2px solid var(--gray-300);
    border-radius: 50%;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    font-size: 0.9rem;
    color: transparent;
}

.search-pro-card .select-checkbox:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.search-pro-card.selected .select-checkbox {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.search-pro-card.max-reached:not(.selected) .select-checkbox {
    opacity: 0.3;
    cursor: not-allowed;
}

@media (max-width: 768px) {
    .selected-pros-content {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }
    
    .selected-pros-actions {
        width: 100%;
    }
    
    .selected-pros-actions .btn {
        flex: 1;
    }
}

/* ========================================
   OWNER DASHBOARD DROPDOWN MENU
   ======================================== */
.dropdown-menu button {
    transition: var(--transition-fast);
}

.dropdown-menu button:hover {
    background: var(--gray-50) !important;
}

.dropdown-menu button:active {
    background: var(--gray-100) !important;
}

.owner-pro-item {
    transition: var(--transition-fast);
}

.owner-pro-item:hover {
    background: var(--gray-50);
}

.owner-pro-item[data-status="suspended"] {
    background: #fef2f2 !important;
}

.owner-pro-item[data-status="inactive"] {
    border-left: 4px solid #f59e0b;
}

/* ========================================
   MOBILE APP-LIKE EXPERIENCE
   ======================================== */

/* Better touch targets */
@media (max-width: 768px) {
    /* Base improvements */
    html {
        font-size: 16px;
        -webkit-text-size-adjust: 100%;
    }
    
    body {
        -webkit-tap-highlight-color: transparent;
        padding-bottom: 70px;
    }
    
    /* Navbar mobile */
    .navbar {
        padding: 0.5rem 1rem;
        position: sticky;
        top: 0;
        z-index: 1000;
        backdrop-filter: blur(10px);
        background: rgba(255, 255, 255, 0.95);
    }
    
    .nav-container {
        gap: 0.5rem;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .logo-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    
    .nav-search {
        display: none;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-auth {
        gap: 0.5rem;
    }
    
    .nav-auth a {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }
    
    /* Dashboard button mobile */
    .dashboard-btn {
        padding: 6px 10px !important;
        font-size: 0.8rem !important;
    }
    
    .dashboard-btn svg {
        width: 16px !important;
        height: 16px !important;
    }
    
    /* User menu mobile */
    .user-menu {
        padding: 0.4rem 0.6rem;
    }
    
    .user-avatar {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    #user-name {
        display: none;
    }
    
    /* Hero section mobile */
    .hero {
        padding: 2rem 1rem;
        min-height: auto;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    /* Search box mobile */
    .search-box {
        padding: 1rem;
        border-radius: 16px;
    }
    
    .search-inputs {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .search-inputs input,
    .search-inputs select {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    .search-inputs .btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    /* Form improvements */
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px !important;
        padding: 0.875rem 1rem;
        border-radius: 10px;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.375rem;
    }
    
    /* Buttons touch-friendly */
    .btn {
        min-height: 44px;
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
        border-radius: 10px;
    }
    
    .btn-large {
        min-height: 52px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Cards mobile */
    .pro-card,
    .search-pro-card {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .pro-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    /* Category grid mobile */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0 0.5rem;
    }
    
    .category-card {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .category-card .icon {
        font-size: 1.75rem;
    }
    
    .category-card h3 {
        font-size: 0.85rem;
    }
    
    /* Modal mobile */
    .modal-content {
        margin: 0;
        max-height: 100vh;
        border-radius: 16px 16px 0 0;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        max-width: 100%;
        animation: slideUpModal 0.3s ease;
    }
    
    @keyframes slideUpModal {
        from { transform: translateY(100%); }
        to { transform: translateY(0); }
    }
    
    .modal-close {
        top: 0.75rem;
        right: 0.75rem;
    }
    
    /* Chat mobile */
    .chat-window {
        position: fixed;
        inset: 0;
        border-radius: 0;
        max-height: 100vh;
        z-index: 9999;
    }
    
    .chat-messages {
        padding: 1rem;
        padding-bottom: 80px;
    }
    
    .chat-input-area {
        padding: 0.75rem;
        border-radius: 0;
    }
    
    .chat-input-area input {
        padding: 0.875rem 1rem;
        font-size: 16px;
    }
    
    /* Page containers */
    .container {
        padding: 0 1rem;
    }
    
    /* Dashboard mobile */
    .client-dashboard,
    .pro-dashboard {
        padding: 1rem;
    }
    
    .client-dash-header h1 {
        font-size: 1.5rem;
    }
    
    .client-dash-tabs {
        gap: 0.25rem;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .client-dash-tabs button {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    /* Pro dashboard sidebar */
    .pro-dash-sidebar {
        position: fixed;
        left: -280px;
        top: 0;
        bottom: 0;
        z-index: 1001;
        transition: left 0.3s ease;
        width: 280px;
    }
    
    .pro-dash-sidebar.open {
        left: 0;
    }
    
    .pro-dash-main {
        margin-left: 0;
        width: 100%;
    }
    
    /* Stepper mobile */
    .stepper {
        overflow-x: auto;
        padding: 0.5rem;
    }
    
    .step {
        min-width: auto;
        padding: 0.5rem;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .step span:last-child {
        font-size: 0.75rem;
    }
    
    /* Tables mobile */
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    /* Toast mobile */
    .toast {
        left: 1rem;
        right: 1rem;
        bottom: 80px;
        max-width: none;
    }
}

/* Small phones */
@media (max-width: 375px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .category-card {
        padding: 0.75rem;
    }
    
    .category-card .icon {
        font-size: 1.5rem;
    }
    
    .category-card h3 {
        font-size: 0.75rem;
    }
}

/* Mobile bottom navigation */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--gray-200);
    padding: 0.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 1rem;
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 500;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.mobile-nav-item svg {
    width: 24px;
    height: 24px;
}

.mobile-nav-item.active {
    color: var(--primary);
    background: var(--primary-light);
}

.mobile-nav-item:active {
    transform: scale(0.95);
}

/* iOS safe area */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    body {
        padding-bottom: calc(70px + env(safe-area-inset-bottom));
    }
    
    .mobile-bottom-nav {
        padding-bottom: calc(0.5rem + env(safe-area-inset-bottom));
    }
}

/* Pull to refresh indicator */
.pull-indicator {
    display: none;
    position: fixed;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    font-size: 0.85rem;
    color: var(--gray-600);
}

/* Smooth page transitions */
.page {
    animation: fadeInPage 0.3s ease;
}

@keyframes fadeInPage {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Loading skeleton */
.skeleton {
    background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Better focus states for accessibility */
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Smooth scrolling container */
.scroll-container {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

/* Hide scrollbar but keep functionality */
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Professional gradient backgrounds */
.gradient-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.gradient-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Glass effect */
.glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Better image handling */
img {
    max-width: 100%;
    height: auto;
}

/* Prevent zoom on input focus (iOS) */
@media (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    input[type="number"],
    input[type="url"],
    select,
    textarea {
        font-size: 16px !important;
    }
}
