/* Premium Home Styles */
:root {
    --premium-blue: #165BFF;
    --premium-blue-hover: #0a4ae6;
    --premium-bg: #F8FAFC;
    --premium-text: #1E293B;
    --premium-muted: #64748B;
    --premium-black: #0F172A;
    --premium-radius: 20px;
    --premium-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --premium-shadow-hover: 0 15px 40px rgba(22, 91, 255, 0.15);
}

body {
    background-color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--premium-text);
}

.premium-btn {
    background-color: var(--premium-blue);
    color: white !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--premium-blue);
    cursor: pointer;
}

.premium-btn:hover {
    background-color: var(--premium-blue-hover);
    border-color: var(--premium-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(22, 91, 255, 0.3);
}

.premium-btn-outline {
    background-color: transparent;
    color: var(--premium-text) !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #E2E8F0;
}

.premium-btn-outline:hover {
    border-color: var(--premium-blue);
    color: var(--premium-blue) !important;
}

.premium-btn-white {
    background-color: white;
    color: var(--premium-blue) !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    transition: all 0.3s ease;
}

.premium-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Typography */
.premium-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--premium-black);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.text-blue {
    color: var(--premium-blue);
}

.section-pretitle {
    color: var(--premium-blue);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    background: #EFF6FF;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--premium-black);
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Hero Section */
.hero-premium {
    padding: 100px 0 80px;
    background: linear-gradient(135deg, rgba(239, 246, 255, 0.5) 0%, rgba(255, 255, 255, 1) 100%);
    position: relative;
    overflow: hidden;
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--premium-muted);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--premium-radius);
    overflow: hidden;
    box-shadow: var(--premium-shadow);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.hero-floating-card .icon {
    width: 48px;
    height: 48px;
    background: #EFF6FF;
    color: var(--premium-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.hero-floating-card .text strong {
    display: block;
    font-size: 16px;
    color: var(--premium-black);
}

.hero-floating-card .text span {
    font-size: 14px;
    color: var(--premium-muted);
}

/* CTA Ribbon */
.cta-ribbon {
    margin-top: -40px;
    position: relative;
    z-index: 20;
}

.cta-ribbon-inner {
    background: var(--premium-blue);
    border-radius: var(--premium-radius);
    padding: 40px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 20px 40px rgba(22, 91, 255, 0.2);
    /* Adding subtle pattern */
    background-image: radial-gradient(circle at 100% 100%, rgba(255, 255, 255, 0.1) 0%, transparent 50%), radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-ribbon .cta-text h2 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cta-ribbon .cta-text p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1.1rem;
}

/* About Grid */
.about-premium {
    padding: 100px 0;
}

.about-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.about-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.grid-img.img-1 img {
    border-radius: 40px 24px 24px 24px;
}

.grid-img.img-4 img {
    border-radius: 24px 24px 40px 24px;
}

.about-features {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.about-features li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.about-features .icon-box {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: #EFF6FF;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--premium-blue);
    font-size: 28px;
}

.about-features h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--premium-black);
    margin-bottom: 8px;
}

.about-features p {
    color: var(--premium-muted);
    font-size: 1rem;
    margin: 0;
}

/* Candidates Section */
.candidates-premium {
    padding: 100px 0;
    text-align: center;
}

.candidates-premium .section-title-wrapper {
    margin-bottom: 60px;
}

.candidate-card {
    background: white;
    border-radius: var(--premium-radius);
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02), 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #F1F5F9;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.candidate-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--premium-shadow-hover);
    border-color: #E2E8F0;
}

.candidate-card .card-img-wrapper {
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f1f5f9;
}

.candidate-card .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.candidate-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--premium-black);
    margin-bottom: 4px;
}

.candidate-experience {
    color: var(--premium-muted);
    font-size: 0.9rem;
}

.premium-badge {
    background: var(--premium-blue);
    color: white !important;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

/* CTA Large */
.cta-large {
    background-color: var(--premium-blue);
    padding: 100px 0;
    color: white;
}

.cta-large .cta-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-large .cta-desc {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.125rem;
}

/* Jobs Section */
.jobs-premium {
    padding: 100px 0;
    background: #F8FAFC;
    text-align: center;
}

.job-card {
    background: white;
    border-radius: var(--premium-radius);
    border: 1px solid #E2E8F0;
    text-align: left;
    transition: all 0.3s ease;
}

.job-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--premium-blue);
}

.job-title a {
    color: var(--premium-black);
    font-size: 1.25rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.job-title a:hover {
    color: var(--premium-blue);
}

.job-desc {
    color: var(--premium-muted);
    font-size: 1rem;
    margin-bottom: 20px;
}

.job-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    border-top: 1px solid #F1F5F9;
    padding-top: 15px;
}

.job-meta span {
    font-size: 0.85rem;
    color: var(--premium-muted);
    display: flex;
    align-items: center;
    gap: 6px;
    background: #F8FAFC;
    padding: 4px 10px;
    border-radius: 6px;
}

.job-meta span i {
    color: var(--premium-blue);
}

/* Testimonials */
.testimonials-premium {
    background: #0b162c;
    padding: 100px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials-premium::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 35%;
    height: 100%;
    background: rgba(255, 255, 255, 0.02);
    transform: skewX(-15deg);
    transform-origin: top right;
}

.testimonials-premium .section-title {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-pretitle-testi {
    color: var(--premium-blue);
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
}

.quote-mark {
    font-size: 80px;
    color: #1a2a4c;
    line-height: 1;
    margin-bottom: -40px;
    font-family: Georgia, serif;
    font-weight: bold;
}

.testimonial-text {
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #e2e8f0;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--premium-blue);
}

.testimonial-author h4 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 700;
    color: white;
}

.testimonial-author span {
    color: #94A3B8;
    font-size: 0.9rem;
}

.testimonial-img-large {
    border-radius: 40px;
    max-width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    background: #FFFAF0;
    /* warm/off-white background */
    padding: 20px;
}

/* TNS Controls for Testimonials */
.testimonials-premium .tns-controls {
    display: flex;
    gap: 15px;
    margin-top: 40px;
    position: relative;
    z-index: 5;
}

.testimonials-premium .tns-controls button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
}

.testimonials-premium .tns-controls button[data-controls="prev"] {
    background: #1a2a4c;
    color: white;
}

.testimonials-premium .tns-controls button[data-controls="next"] {
    background: var(--premium-blue);
    color: white;
}

.testimonials-premium .tns-controls button[data-controls="prev"]:hover {
    background: #2a3a5c;
}

.testimonials-premium .tns-controls button[data-controls="next"]:hover {
    background: var(--premium-blue-hover);
    box-shadow: 0 5px 15px rgba(22, 91, 255, 0.4);
}

/* Pre-Footer CTA */
.footer-cta-premium {
    padding: 60px 0;
    background: #F8FAFC;
}

.cta-box {
    background: white;
    border-radius: var(--premium-radius);
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #E2E8F0;
}

.cta-box h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--premium-black);
    margin-bottom: 10px;
}

.cta-box p {
    color: var(--premium-muted);
    margin: 0;
    font-size: 1.1rem;
}

/* Clients */
.clients-premium {
    padding: 40px 0;
    border-bottom: 1px solid #E2E8F0;
    background: white;
}

.client-logo-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.client-logo-row img {
    max-height: 40px;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}

.client-logo-row img:hover {
    filter: none;
    opacity: 1;
}

/* Utilities */
.gap-3 {
    gap: 1rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.p-4 {
    padding: 1.5rem;
}

/* Responsive Adjustments */
/* mobile responsive */
@media (max-width: 991px) {
    .cta-ribbon-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .about-collage {
        margin-bottom: 40px;
    }

    .cta-box {
        text-align: center;
    }

    .cta-box .d-flex {
        justify-content: center !important;
    }

    .testimonial-img-large {
        margin-top: 40px;
    }
}

/* ========================================================================= */
/* PREMIUM CANDIDATE PROFILE COMPONENT */
/* ========================================================================= */

.profile-premium-wrapper {
    background: #f8fafc;
    padding-bottom: 80px;
}

.profile-premium-header {
    background: var(--premium-blue);
    padding: 150px 0 160px;
    color: white;
}

.profile-premium-header .page-title {
    color: white;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.profile-premium-header .breadcrumb-nav {
    display: flex;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.profile-premium-header .breadcrumb-nav a {
    color: white;
    text-decoration: none;
}

.profile-premium-header .breadcrumb-nav li {
    display: flex;
    align-items: center;
}

.profile-premium-header .breadcrumb-nav i {
    font-size: 10px;
    margin-left: 15px;
    opacity: 0.5;
}

.profile-premium-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin-top: -100px;
    position: relative;
    z-index: 2;
}

.profile-premium-card .img-wrapper {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f1f5f9;
}

.profile-premium-card .img-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 4/5;
}

.profile-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.badge-green {
    background: #e6f4ea;
    color: #1e8e3e;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.badge-blue {
    background: #e8f0fe;
    color: #1a73e8;
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.profile-premium-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--premium-black);
    margin-bottom: 5px;
}

.profile-premium-card .location {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.profile-premium-card .btn-premium-shortlist {
    background: var(--premium-blue);
    color: white;
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    margin-bottom: 15px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.profile-premium-card .btn-premium-shortlist:hover {
    background: var(--premium-blue-hover);
    color: white;
}

.profile-premium-card .btn-premium-message {
    background: white;
    color: #334155;
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.profile-premium-card .btn-premium-message:hover {
    background: #f8fafc;
    color: #1e293b;
}

.profile-id-text {
    color: #94a3b8;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-top: 20px;
    display: inline-block;
}

.profile-premium-container {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-top: -100px;
    position: relative;
    z-index: 2;
}

.profile-stats-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 30px;
}

.stat-item {
    min-width: 100px;
}

.stat-item .stat-label {
    color: #94a3b8;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.stat-item .stat-val {
    color: var(--premium-black);
    font-weight: 700;
    font-size: 1.1rem;
}

.profile-section {
    margin-bottom: 40px;
}

.profile-section:last-child {
    margin-bottom: 0;
}

.profile-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--premium-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.profile-section-title::before {
    content: '';
    display: block;
    width: 24px;
    height: 4px;
    background: var(--premium-blue);
    border-radius: 4px;
}

.detail-box {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* mobile responsive */
@media(max-width: 767px) {
    .detail-box {
        grid-template-columns: 1fr;
    }

    .profile-premium-card,
    .profile-premium-container {
        margin-top: 20px;
        /* Don't overlap heavily on mobile */
    }

    .profile-premium-header {
        padding: 100px 0 30px;
    }
}

.detail-item .d-label {
    color: #94a3b8;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.detail-item .d-val {
    color: #334155;
    font-weight: 500;
    font-size: 0.95rem;
}

.profile-text-content {
    color: #475569;
    line-height: 1.7;
    font-size: 1rem;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pill-list .pill {
    background: #f1f5f9;
    color: #334155;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ========================================================================= */
/* CANDIDATE PROFILES INDEX COMPONENT */
/* ========================================================================= */
.profiles-index-header {
    background: var(--premium-blue);
    padding: 180px 0 120px;
    color: white;
}

.profiles-index-header .page-title {
    color: white;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.profiles-index-header .breadcrumb-nav {
    display: flex;
    gap: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    align-items: center;
}

.profiles-index-header .breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.profiles-index-header .breadcrumb-nav a:hover {
    color: white;
}

.floating-filter-container {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    margin-bottom: 50px;
}

.floating-filter-bar {
    background: white;
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.filter-row {
    display: flex;
    gap: 20px;
    align-items: flex-end;
    /* Align inputs to the bottom so labels sit uniformly on top */
}

.filter-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.filter-group label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.filter-group .input-icon,
.filter-group .select-wrapper {
    position: relative;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.filter-group .input-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.filter-group .input-icon input {
    width: 100%;
    background: transparent;
    border: none;
    padding: 12px 15px 12px 40px;
    font-size: 0.95rem;
    color: var(--premium-black);
    outline: none;
}

.filter-group .select-wrapper select {
    width: 100%;
    background: transparent;
    border: none;
    padding: 12px 40px 12px 15px;
    font-size: 0.95rem;
    color: var(--premium-black);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.filter-group .select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
}

.age-range-inputs {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.age-range-inputs .select-wrapper {
    flex: 1;
}

.age-range-inputs .separator {
    color: #94a3b8;
    font-weight: 500;
}

.btn-apply-filters {
    background: var(--premium-blue);
    color: white;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 8px;
    border: none;
    width: 100%;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-apply-filters:hover {
    background: #004ecc;
    color: white;
}

/* Fix Livewire Dropdowns inside the grid */
.filter-location-wrapper .row {
    margin: 0 -10px;
    display: flex;
    width: 100%;
}

.filter-location-wrapper .row>div {
    padding: 0 10px;
    margin-bottom: 0;
    flex: 1;
    /* evenly split the state and country */
}

.filter-location-wrapper label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
}

.filter-location-wrapper select {
    width: 100%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 0.95rem;
    color: var(--premium-black);
    outline: none;
    height: 48px;
}

.premium-candidate-card {
    display: block;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid #e2e8f0;
}

.premium-candidate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.premium-candidate-card .card-img-wrapper {
    position: relative;
    padding-top: 100%;
    /* 1:1 Aspect Ratio (Square) */
    background: #e2e8f0;
    overflow: hidden;
}

.premium-candidate-card .card-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    /* Focus on faces */
}

.premium-candidate-card .card-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(11, 22, 44, 0.75);
    /* Semi-transparent Premium Blue */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    pointer-events: none;
    z-index: 2;
}

.premium-candidate-card .card-body {
    padding: 20px;
}

.premium-candidate-card .card-body h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--premium-black);
    margin: 0 0 5px 0;
}

.premium-candidate-card .card-meta {
    font-size: 0.85rem;
    color: #64748b;
    margin: 0;
    font-weight: 500;
}

/* mobile responsive */
@media(max-width: 991px) {
    .filter-row {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-location-wrapper .row {
        flex-direction: column;
    }

    .filter-location-wrapper .row>div {
        margin-bottom: 15px;
    }

    .filter-location-wrapper .row>div:last-child {
        margin-bottom: 0;
    }

    .floating-filter-bar {
        padding: 15px;
    }

    .profiles-index-header {
        padding: 150px 0 80px;
    }

    /* Optimize Profile Cards for 2-column mobile */
    .premium-candidate-card .card-body {
        padding: 15px 10px;
    }

    .premium-candidate-card .card-body h3 {
        font-size: 1rem;
    }

    .premium-candidate-card .card-badge {
        font-size: 0.65rem;
        padding: 4px 8px;
        bottom: 10px;
        right: 10px;
    }

    .premium-candidate-card .card-meta {
        font-size: 0.75rem;
    }
}