/* consultants-style.css - Specific styles for the Consultant view */

body.consultants-page {
    background-color: #fafafa;
}

/* Specific Nav Overrides */
.mid-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 32px;
}

.mid-links a {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.mid-links a:hover, .mid-links a.active {
    color: var(--primary-dark);
}

.mid-links a.active {
    border-bottom: 2px solid var(--blue-link);
    padding-bottom: 24px;
    margin-bottom: -26px; /* align with header border */
}

.icon-btn-transparent {
    background: transparent;
    border: none;
    font-size: 18px;
    color: var(--text-dark);
    cursor: pointer;
    margin-right: 16px;
}

.btn-dark-post {
    background: var(--primary-dark);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    margin-right: 16px;
    transition: background 0.2s;
}
.btn-dark-post:hover { background: #1e293b; }

.nav-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Hero Section */
.consultant-hero {
    padding: 80px 0 0px;
    background: white;
}

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

.hero-left {
    flex: 1;
    padding-bottom: 80px;
}

.eyebrow-tag {
    color: #2563eb;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.hero-heading {
    font-family: var(--font-heading);
    font-size: 56px;
    line-height: 1.1;
    color: var(--primary-dark);
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero-subtext {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 90%;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatar-stack img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.proof-text {
    font-size: 13px;
    color: var(--text-secondary);
}

.proof-text strong {
    color: var(--primary-dark);
}

.hero-right {
    flex: 1;
    position: relative;
    /* push image slightly down into next section like design */
    transform: translateY(40px);
}

.hero-office-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: white;
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-icon {
    color: #2563eb;
    background: #eff6ff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.badge-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.4;
}

/* Search Bar */
.search-section {
    position: relative;
    z-index: 10;
    margin-top: -30px;
    margin-bottom: 60px;
}

.search-container-box {
    background: white;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.search-input-group {
    flex: 2;
    background: #f8fafc;
    border-radius: 8px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    height: 48px;
}

.search-input-group i { color: #94a3b8; font-size: 18px; }

.search-input-group input {
    border: none;
    background: transparent;
    width: 100%;
    height: 100%;
    outline: none;
    font-family: var(--font-main);
    font-size: 14px;
}

.search-divider {
    width: 1px;
    height: 24px;
    background: #e2e8f0;
}

.search-select-group {
    flex: 1;
    background: #f8fafc;
    border-radius: 8px;
    height: 48px;
    padding: 0 16px;
}

.search-select-group select {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    outline: none;
    font-family: var(--font-main);
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
}

.btn-find-consultant {
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0 32px;
    height: 48px;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    transition: background 0.2s;
}
.btn-find-consultant:hover { background: #1d4ed8; }

/* Featured Partners */
.featured-section {
    padding: 60px 0;
}

.section-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-top h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

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

.view-all-link {
    color: #2563eb;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

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

.featured-card {
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.premium-card {
    background: #1e1b4b; /* deep dark purple */
    color: white;
}

.standard-card {
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
}

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

.brand-icon-box {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.brand-icon-box.light-blue {
    background: #e0e7ff;
    color: #4f46e5;
}

.badge-premium {
    background: #f97316;
    color: white;
    font-size: 9px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 1px;
}

.featured-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 12px;
}

.dark-text { color: var(--primary-dark); }

.featured-card p {
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.8;
    margin-bottom: 32px;
    flex: 1;
}

.gray-text { color: var(--text-secondary); }

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

.tag-dark {
    font-size: 10px;
    background: rgba(255,255,255,0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.tag-light {
    font-size: 10px;
    background: #f1f5f9;
    color: #475569;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
}

/* Directory List View */
.directory-list-section {
    padding: 10px 0 80px;
}

.directory-inner {
    background: #f1f5f9;
    border-radius: 24px;
    padding: 40px;
}

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

.dir-header h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--primary-dark);
}

.dir-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

.toggle-wrap {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
}

.green-dot {
    width: 6px;
    height: 6px;
    background: #2563eb; /* Mockup uses blue dot for "Active Now" despite rule of thumb */
    border-radius: 50%;
}

.sort-dropdown {
    border: none;
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    outline: none;
    cursor: pointer;
}

.dir-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dir-item {
    background: white;
    border-radius: 12px;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.dir-item-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.dir-icon-box {
    width: 48px;
    height: 48px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-dark);
}

.dir-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.dir-meta {
    display: flex;
    gap: 24px;
    font-size: 12px;
    color: var(--text-secondary);
}

.dir-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dir-item-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-view-profile {
    background: transparent;
    border: 1px solid #cbd5e1;
    color: var(--text-dark);
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
    transition: background 0.2s;
}
.btn-view-profile:hover { background: #f8fafc; }

.btn-bookmark {
    background: transparent;
    border: 1px solid #cbd5e1;
    color: #64748b;
    width: 38px;
    height: 38px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
}

/* CTA Banner */
.cta-banner-section {
    padding: 0px 0 80px;
}

.cta-banner-card {
    background: #0b0c2a;
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    color: white;
}

.cta-banner-card h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 16px;
}

.cta-banner-card p {
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-orange {
    background: #ea580c;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
}

.btn-dark-blue {
    background: #1e1b4b;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-family: var(--font-main);
    cursor: pointer;
}

/* ---------------------- CONSULTANT PROFILE STYLES ---------------------- */

.profile-header-banner {
    height: 250px;
    background: #1e1b4b;
    position: relative;
    overflow: hidden;
}

.profile-header-banner::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: linear-gradient(90deg, rgba(30,27,75,1) 0%, rgba(30,27,75,0.4) 100%), url('assets/images/modern_office_consultant.png');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.profile-main-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.profile-identity {
    display: flex;
    align-items: center;
    gap: 32px;
}

.profile-logo-box {
    width: 100px;
    height: 100px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--primary-dark);
}

.profile-name {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.profile-tagline {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.profile-links {
    display: flex;
    gap: 24px;
}

.profile-links a {
    font-size: 13px;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

.profile-quick-stats {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

.stat-val {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
}

.stat-lbl {
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-orange-pill {
    background: #ea580c;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-main);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.2s;
}
.btn-orange-pill:hover { transform: translateY(-2px); }

.profile-content-grid {
    padding: 60px 0;
}

.layout-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.profile-left { flex: 2; }
.profile-right { flex: 1; position: sticky; top: 40px; }

.prof-section { margin-bottom: 48px; }

.prof-section h2 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.prof-section p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.expertise-tags { display: flex; flex-wrap: wrap; gap: 12px; }

.ex-tag {
    background: white;
    border: 1px solid #cbd5e1;
    color: var(--text-dark);
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

.placement-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.place-row {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid transparent;
    transition: border 0.2s;
}

.place-row:hover { border-color: #e2e8f0; }

.place-title { font-weight: 700; color: var(--primary-dark); font-size: 15px; }
.place-comp { color: #64748b; font-size: 13px; font-weight: 500; }
.place-loc { font-size: 12px; color: #94a3b8; font-weight: 600; }

.prof-side-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
}

.prof-side-card h3 { font-size: 18px; margin-bottom: 12px; }
.side-info { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 24px; }

.side-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}
.side-contact-row i { font-size: 20px; margin-top: 2px; }
.text-blue { color: #2563eb; }

.lbl-small { display: block; font-size: 11px; color: #94a3b8; font-weight: 700; text-transform: uppercase; margin-bottom: 4px; }
.val-bold { display: block; font-size: 14px; color: var(--text-dark); font-weight: 600; }

.btn-dark-side {
    width: 100%;
    background: var(--primary-dark);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.verified-box {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
}
.v-icon { color: #16a34a; font-size: 24px; }
.verified-box h4 { color: #166534; font-size: 14px; margin-bottom: 6px; }
.verified-box p { color: #15803d; font-size: 12px; line-height: 1.5; margin-bottom: 0; }
