/**
 * Advanced Job Opportunities Styling - Professional Section-Based Design
 * Modern, accessible layout with distinct content blocks and premium typography
 * 
 * Color Palette:
 * - Primary (buttons only): #1e3a2e (dark forest green)
 * - Light Green: #7fb069 (light forest green for accents)
 * - Navy Blue: #2c3e50 (navy blue for text)
 * - Cream: #f8f6f1 (warm cream)
 * - Light Cream: #fefdfb (background)
 * - Text: #2c3e50 (readable navy)
 * - Secondary Text: #6c757d (medium gray)
 * - Cards: #ffffff (pure white)
 * - Borders: #e8e5e0 (cream border)
 */

/* Namespace all styles to prevent conflicts with other shortcodes */
.sffc-job-opportunities-advanced {
    isolation: isolate; /* Create new stacking context */
}

.sffc-job-opportunities-advanced .sffc-job-opportunity {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: linear-gradient(135deg, #fefdfb 0%, #f8f6f1 100%);
    min-height: 100vh;
    padding: 0;
    margin: 0;
}

.sffc-job-opportunities-advanced .sffc-job-layout {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px 24px;
    align-items: start;
}

/* ===== LEFT STICKY COLUMN: RECRUITER DETAILS ===== */
.sffc-recruiter-column {
    position: sticky;
    top: 40px;
    height: fit-content;
    z-index: 10;
}

.sffc-recruiter-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.sffc-recruiter-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.sffc-recruiter-logo {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sffc-recruiter-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sffc-recruiter-name {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #111827;
}

.sffc-recruiter-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.sffc-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.sffc-star-icon {
    display: inline-block;
    vertical-align: middle;
}

.sffc-rating-text {
    font-size: 14px;
    color: #6b7280;
}

.sffc-recruiter-bio {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 24px;
    line-height: 1.5;
}

.sffc-action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sffc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    min-height: 48px;
}

.sffc-btn-primary {
    background: linear-gradient(135deg, #1e3a2e 0%, #2d5a3d 100%);
    color: #ffffff;
    border: none;
}

.sffc-btn-primary:hover {
    background: linear-gradient(135deg, #2d5a3d 0%, #1e3a2e 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 58, 46, 0.3);
}

.sffc-btn-secondary {
    background: linear-gradient(135deg, #ffffff 0%, #f8f6f1 100%);
    color: #1e2947;
    border: 1px solid #e8e5e0;
}

.sffc-btn-secondary:hover {
    background: linear-gradient(135deg, #f8f6f1 0%, #ffffff 100%);
    border-color: #1e3a2e;
    transform: translateY(-1px);
}

.sffc-btn-premium {
    background: #60a5fa;
    color: #fff;
}

.sffc-btn-premium:hover {
    background: #3b82f6;
}

.sffc-btn-consultant {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #93c5fd;
}

.sffc-btn-consultant:hover {
    background: #bfdbfe;
}

.sffc-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* ===== CENTER CONTENT: SECTIONED JOB DETAILS ===== */
.sffc-job-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Individual content sections */
.sffc-content-section {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 6px -1px rgba(30, 41, 71, 0.08), 0 2px 4px -1px rgba(30, 41, 71, 0.04);
    border: 1px solid #e8e5e0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sffc-content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7fb069, #95c085);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sffc-content-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(30, 58, 46, 0.15), 0 10px 10px -5px rgba(30, 58, 46, 0.08);
}

.sffc-content-section:hover::before {
    opacity: 1;
}

/* Section Titles */
.sffc-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 32px 0;
    padding-bottom: 16px;
    border-bottom: 2px solid #f8f6f1;
    position: relative;
}

.sffc-section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #7fb069, #95c085);
    border-radius: 1px;
}

.sffc-section-icon {
    width: 28px;
    height: 28px;
    color: #7fb069;
    flex-shrink: 0;
}

/* Special styling for header section */
.sffc-header-section {
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: none;
}

.sffc-header-section:hover {
    transform: none;
}

.sffc-header-section::before {
    display: none;
}

/* Enhanced Typography */
.sffc-content-section p {
    font-size: 16px;
    line-height: 1.75;
    color: #6c757d;
    margin: 0 0 20px 0;
}

.sffc-content-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin: 32px 0 16px 0;
    line-height: 1.4;
}

.sffc-content-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin: 24px 0 12px 0;
    line-height: 1.4;
}

.sffc-content-section ul {
    margin: 0 0 24px 0;
    padding-left: 0;
    list-style: none;
}

.sffc-content-section li {
    position: relative;
    padding: 8px 0 8px 32px;
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
}

.sffc-content-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    background: #7fb069;
    border-radius: 50%;
    transform: translateY(-50%);
}

.sffc-content-section strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Enhanced Recruiter Section */
.sffc-consultant-avatar {
    width: 80px !important;
    height: 80px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    margin-bottom: 16px !important;
    transition: all 0.3s ease !important;
    flex-shrink: 0 !important;
    position: relative !important;
    background: #f8f6f1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.sffc-consultant-avatar img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 12px !important;
    display: block !important;
    max-width: none !important;
    max-height: none !important;
    min-width: 0 !important;
    min-height: 0 !important;
}

.sffc-avatar-placeholder {
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, #e8e5e0 0%, #d1ccc4 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #6b7280 !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    border-radius: 12px !important;
}

.sffc-avatar-placeholder svg {
    width: 32px !important;
    height: 32px !important;
    opacity: 0.7 !important;
}

.sffc-consultant-name {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #1e293b;
    line-height: 1.3;
}

.sffc-consultant-title {
    font-size: 14px;
    font-weight: 500;
    color: #0ea5e9;
    margin: 0 0 4px 0;
}

.sffc-consultant-company {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    margin: 0 0 12px 0;
}

.sffc-consultant-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0;
}

.sffc-consultant-specialties {
    font-size: 13px;
    line-height: 1.5;
    color: #475569;
    margin: 12px 0;
}

/* Blurred/Privacy Elements */
.sffc-blurred {
    filter: blur(2px);
    opacity: 0.7;
}

.sffc-blurred-text {
    position: relative;
}

/* Removed sffc-login-prompt styles */

/* Premium Badge */
.sffc-premium-badge {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #92400e;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
}

/* Job Header Section - Clean Professional Layout */
.sffc-job-header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f6f1 100%);
    color: #1e2947;
    border-radius: 20px;
    padding: 40px;
    margin: 0;
    position: relative;
    overflow: hidden;
    border: 1px solid #e8e5e0;
    box-shadow: 0 4px 6px -1px rgba(30, 41, 71, 0.08), 0 2px 4px -1px rgba(30, 41, 71, 0.04);
}

.sffc-job-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(30, 58, 46, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(50px, -50px);
}

.sffc-company-logo {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.sffc-company-logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sffc-job-title {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 16px 0;
    color: #1e2947;
    line-height: 1.2;
    letter-spacing: -0.025em;
    position: relative;
    z-index: 2;
}

.sffc-job-meta-line {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 16px;
    color: #4a5568;
    position: relative;
    z-index: 2;
    margin-top: 8px;
}

.sffc-location,
.sffc-posted-date,
.sffc-applicant-count {
    display: flex;
    align-items: center;
    gap: 4px;
}

.sffc-location .sffc-icon {
    width: 14px;
    height: 14px;
}

/* Header Action Buttons */
.sffc-header-actions {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-left: auto;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
}

.sffc-header-actions .sffc-btn {
    white-space: nowrap;
    min-width: 140px;
    justify-content: center;
}

/* ===== JOB SUMMARY SECTION ===== */
.sffc-job-summary {
    padding: 32px;
    border-bottom: 1px solid #f3f4f6;
}

.sffc-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 0;
}

.sffc-summary-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f6f1 100%);
    border-radius: 16px;
    border: 1px solid #e8e5e0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sffc-summary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #1e3a2e, #2d5a3d);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sffc-summary-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px -4px rgba(30, 58, 46, 0.12);
}

.sffc-summary-card:hover::before {
    opacity: 1;
}

.sffc-summary-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.sffc-salary-icon {
    background: #ecfccb;
    color: #65a30d;
}

.sffc-location-icon {
    background: #dbeafe;
    color: #1e40af;
}

.sffc-type-icon {
    background: #fef3c7;
    color: #d97706;
}

.sffc-summary-icon svg {
    width: 24px;
    height: 24px;
}

.sffc-summary-content {
    display: flex;
    flex-direction: column;
}

.sffc-summary-label {
    font-size: 13px;
    font-weight: 500;
    color: #4a5568;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.sffc-summary-value {
    font-size: 18px;
    font-weight: 700;
    color: #1e2947;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

/* ===== SKILLS SECTION ===== */
.sffc-skills-section {
    padding: 32px;
    border-bottom: 1px solid #f3f4f6;
}

.sffc-skills-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 24px 0;
    color: #2c3e50;
}

.sffc-skills-chart {
    position: relative;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.sffc-skill-metrics {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sffc-skill-metric {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: linear-gradient(135deg, #f8f6f1 0%, #ffffff 100%);
    border-radius: 12px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.sffc-skill-metric:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8f6f1 100%);
    border-color: #7fb069;
    transform: translateX(8px);
    box-shadow: 0 8px 16px rgba(127, 176, 105, 0.15);
}

.sffc-skill-metric:hover .sffc-skill-percentage {
    opacity: 1;
    visibility: visible;
}

.sffc-skill-metric.active {
    background: linear-gradient(135deg, #1e3a2e 0%, #2d5a3d 100%);
    border-color: #1e3a2e;
    color: #ffffff;
    transform: translateX(12px);
    box-shadow: 0 12px 24px rgba(30, 58, 46, 0.2);
}

.sffc-skill-metric.active .sffc-skill-title,
.sffc-skill-metric.active .sffc-skill-desc {
    color: #ffffff;
}

.sffc-skill-metric.active .sffc-skill-score {
    color: #2c3e50;
}

/* Percentage display on hover */
.sffc-skill-percentage {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: #7fb069;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.sffc-skill-percentage::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: #7fb069;
}

.sffc-skill-percent {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid #e8e5e0;
}

.sffc-skill-score {
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
}

.sffc-skill-details {
    flex: 1;
}

.sffc-skill-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #2c3e50;
}

.sffc-skill-desc {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.sffc-skill-circles {
    position: relative;
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sffc-progress-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sffc-progress-rail {
    fill: none;
    stroke: #f3f4f6;
}

.sffc-progress-value {
    fill: none;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: 50% 50%;
}

.sffc-requirements-list {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.sffc-requirement-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f9fafb;
    border-radius: 6px;
    font-size: 14px;
    color: #374151;
}

.sffc-requirement-item::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M9,20.42L2.79,14.21L5.62,11.38L9,14.77L18.88,4.88L21.71,7.71L9,20.42Z" fill="%2384cc16"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 8px;
    flex-shrink: 0;
}

/* ===== QUALIFICATIONS SECTION ===== */
.sffc-qualifications-section {
    padding: 32px;
    border-bottom: 1px solid #f3f4f6;
}

.sffc-qualifications-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 24px 0;
    color: #111827;
}

.sffc-qualifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.sffc-qual-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #f3f4f6;
}

.sffc-qual-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #dbeafe;
    color: #1e40af;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sffc-qual-icon svg {
    width: 20px;
    height: 20px;
}

.sffc-qual-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #111827;
}

.sffc-qual-content p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

/* ===== DESCRIPTION SECTION ===== */
.sffc-description-section {
    padding: 32px;
    border-bottom: 1px solid #f3f4f6;
}

.sffc-description-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 24px 0;
    color: #111827;
}

.sffc-description-content {
    font-size: 15px;
    line-height: 1.7;
    color: #374151;
}

.sffc-description-content p {
    margin-bottom: 16px;
}

.sffc-description-content ul,
.sffc-description-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.sffc-description-content li {
    margin-bottom: 8px;
}

/* ===== CONSULTANT SECTION ===== */
.sffc-consultant-section {
    padding: 32px;
}

.sffc-consultant-card {
    background: #f8f6f1;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #f3f4f6;
}

.sffc-consultant-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.sffc-consultant-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #111827;
}

.sffc-premium-badge {
    background: #60a5fa;
    color: #fff;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

.sffc-consultant-profile {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

/* Consultant avatar styling is defined above in Enhanced Recruiter Section */

.sffc-consultant-info {
    flex: 1;
}

.sffc-consultant-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #111827;
}

.sffc-consultant-title {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 2px 0;
}

.sffc-consultant-org {
    font-size: 14px;
    color: #84cc16;
    font-weight: 500;
    margin: 0 0 12px 0;
}

.sffc-consultant-bio {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
}

.sffc-consultant-experience {
    font-size: 13px;
    color: #374151;
    margin: 4px 0;
}

.sffc-consultant-location {
    font-size: 13px;
    color: #6b7280;
    margin: 4px 0;
}

.sffc-consultant-specialties {
    font-size: 13px;
    color: #374151;
    margin: 8px 0;
    line-height: 1.4;
}

.sffc-consultant-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0;
}

.sffc-consultant-rating .sffc-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.sffc-consultant-rating .sffc-rating-text {
    font-size: 13px;
    color: #6b7280;
}

.sffc-consultant-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.sffc-consultant-actions .sffc-btn {
    font-size: 13px;
    padding: 10px 16px;
    min-height: auto;
}

.sffc-consultant-locked {
    text-align: center;
    padding: 40px 20px;
}

.sffc-lock-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: #9ca3af;
}

.sffc-lock-icon svg {
    width: 100%;
    height: 100%;
}

.sffc-consultant-locked h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #111827;
}

.sffc-consultant-locked p {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 24px 0;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== POPUP STYLES ===== */
.sffc-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    z-index: 1000;
    max-width: 400px;
    width: 90%;
}

.sffc-popup h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #111827;
}

.sffc-popup p {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 24px 0;
}

.sffc-popup-actions {
    display: flex;
    gap: 12px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .sffc-job-opportunities-advanced .sffc-job-layout {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 24px 20px;
    }
    
    .sffc-recruiter-column {
        position: static;
        order: 2;
    }
    
    .sffc-job-content {
        order: 1;
    }
    
    .sffc-content-section {
        padding: 32px 24px;
    }
    
    .sffc-section-title {
        font-size: 22px;
    }
    
    .sffc-job-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .sffc-job-opportunities-advanced .sffc-job-layout {
        padding: 16px;
        gap: 20px;
    }
    
    .sffc-job-header {
        padding: 20px 16px;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        gap: 16px;
    }
    
    .sffc-header-actions {
        width: 100%;
        margin-left: 0;
        order: 3;
        margin-top: 16px;
    }
    
    .sffc-header-actions .sffc-btn {
        flex: 1;
        min-width: auto;
    }
    
    .sffc-company-logo {
        width: 56px;
        height: 56px;
    }
    
    .sffc-job-title {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .sffc-job-meta-line {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    
    .sffc-content-section {
        padding: 24px 16px;
        border-radius: 16px;
    }
    
    .sffc-section-title {
        font-size: 20px;
        margin-bottom: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .sffc-section-icon {
        width: 24px;
        height: 24px;
    }
    
    .sffc-summary-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .sffc-summary-card {
        padding: 20px 16px;
        gap: 16px;
    }
    
    .sffc-summary-icon {
        width: 48px;
        height: 48px;
    }
    
    .sffc-skills-chart {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    
    .sffc-skill-circles {
        width: 200px;
        height: 200px;
        order: -1;
    }
    
    .sffc-skill-metrics {
        width: 100%;
    }
    
    .sffc-skill-metric {
        padding: 12px 16px;
        margin-bottom: 8px;
    }
    
    .sffc-skill-metric:hover {
        transform: translateX(4px);
    }
    
    .sffc-skill-percentage {
        position: static;
        transform: none;
        margin-top: 8px;
        margin-left: auto;
        opacity: 1;
        visibility: visible;
        background: #f8f6f1;
        color: #2c3e50;
        border: 1px solid #e8e5e0;
    }
    
    .sffc-skill-percentage::before {
        display: none;
    }
    
    /* Hide duplicate consultant section on mobile */
    .sffc-consultant-card {
        display: none;
    }
    
    .sffc-consultant-profile {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 16px;
    }
    
    .sffc-consultant-avatar {
        width: 64px !important;
        height: 64px !important;
        margin-bottom: 8px !important;
    }
    
    .sffc-consultant-avatar img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        max-width: none !important;
        max-height: none !important;
        min-width: 0 !important;
        min-height: 0 !important;
    }
    
    .sffc-consultant-actions {
        width: 100%;
        gap: 12px;
    }
    
    .sffc-consultant-actions .sffc-btn {
        flex: 1;
        font-size: 14px;
        padding: 12px 16px;
        min-height: 48px;
    }
    
    .sffc-recruiter-card {
        padding: 20px 16px;
    }
    
    .sffc-action-buttons {
        gap: 8px;
    }
    
    .sffc-btn {
        min-height: 48px;
        font-size: 14px;
        padding: 12px 16px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .sffc-job-opportunities-advanced .sffc-job-layout {
        padding: 12px;
        gap: 16px;
    }
    
    .sffc-job-header {
        padding: 16px 12px;
    }
    
    .sffc-header-actions {
        gap: 8px;
        margin-top: 12px;
    }
    
    .sffc-header-actions .sffc-btn {
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .sffc-job-title {
        font-size: 20px;
    }
    
    .sffc-cv-form-popup {
        max-width: 95vw;
        margin: 20px;
        max-height: 85vh;
    }
    
    .sffc-form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .sffc-content-section {
        padding: 20px 12px;
        border-radius: 12px;
    }
    
    .sffc-section-title {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .sffc-summary-card {
        padding: 16px 12px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .sffc-summary-icon {
        align-self: center;
    }
    
    .sffc-skill-circles {
        width: 160px;
        height: 160px;
    }
    
    .sffc-skill-metric {
        padding: 10px 12px;
        border-radius: 8px;
    }
    
    .sffc-skill-title {
        font-size: 14px;
    }
    
    .sffc-skill-desc {
        font-size: 12px;
    }
    
    .sffc-consultant-avatar {
        width: 56px !important;
        height: 56px !important;
    }
    
    .sffc-consultant-avatar img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        max-width: none !important;
        max-height: none !important;
        min-width: 0 !important;
        min-height: 0 !important;
    }
    
    .sffc-consultant-actions .sffc-btn {
        font-size: 13px;
        padding: 10px 12px;
    }
    
    .sffc-recruiter-card {
        padding: 16px 12px;
    }
    
    .sffc-recruiter-logo {
        width: 64px;
        height: 64px;
    }
}

/* ===== OTHER AGENCIES CARD ===== */
.sffc-other-agencies-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    margin-top: 24px;
    box-shadow: 0 4px 6px -1px rgba(30, 41, 71, 0.08), 0 2px 4px -1px rgba(30, 41, 71, 0.04);
    border: 1px solid #e8e5e0;
}

.sffc-other-agencies-header {
    margin-bottom: 24px;
    text-align: center;
}

.sffc-other-agencies-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.sffc-agencies-subtitle {
    color: #64748b;
    font-size: 16px;
    margin: 0;
}

.sffc-agencies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.sffc-agency-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.sffc-agency-item:hover {
    border-color: #3b82f6;
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.sffc-agency-logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
}

.sffc-agency-logo svg {
    width: 24px;
    height: 24px;
}

.sffc-agency-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.sffc-agency-jobs {
    color: #059669;
    font-size: 14px;
    font-weight: 500;
}

/* ===== RELATED JOBS SECTION ===== */
.sffc-related-jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.sffc-related-job-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.sffc-related-job-card:hover {
    border-color: #3b82f6;
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.sffc-job-header {
    margin-bottom: 16px;
}

.sffc-job-title {
    margin: 0 0 8px 0;
}

.sffc-job-title a {
    color: #1e293b;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.sffc-job-title a:hover {
    color: #3b82f6;
}

.sffc-job-company {
    color: #64748b;
    font-size: 14px;
    font-weight: 500;
}

.sffc-job-details {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 16px;
}

.sffc-job-detail {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 14px;
}

.sffc-detail-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.sffc-job-excerpt {
    margin-bottom: 20px;
}

.sffc-job-excerpt p {
    color: #4b5563;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.sffc-job-actions {
    display: flex;
    gap: 12px;
}

/* ===== FAQ SECTION ===== */
.sffc-faq-container {
    margin-top: 20px;
}

.sffc-faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.sffc-faq-item:hover {
    border-color: #3b82f6;
}

.sffc-faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.sffc-faq-question:hover {
    background: #f8fafc;
}

.sffc-faq-question[aria-expanded="true"] {
    background: #f0f9ff;
    color: #1d4ed8;
}

.sffc-faq-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.sffc-faq-question[aria-expanded="true"] .sffc-faq-icon {
    transform: rotate(180deg);
}

.sffc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #ffffff;
}

.sffc-faq-answer div {
    padding: 0 24px 20px 24px;
    color: #4b5563;
    line-height: 1.6;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .sffc-agencies-grid {
        grid-template-columns: 1fr;
    }
    
    .sffc-related-jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .sffc-job-details {
        flex-direction: column;
        gap: 8px;
    }
    
    .sffc-job-actions {
        flex-direction: column;
    }
    
    .sffc-other-agencies-card {
        padding: 20px;
        margin-top: 16px;
    }
    
    .sffc-agency-item {
        padding: 16px;
    }
    
    .sffc-related-job-card {
        padding: 20px;
    }
    
    .sffc-faq-question {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .sffc-faq-answer div {
        padding: 0 20px 16px 20px;
    }
}

/* ===== CV FORM STYLES ===== */
.sffc-cv-form-popup {
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
}

.sffc-cv-form {
    margin-top: 20px;
}

.sffc-form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.sffc-form-field {
    margin-bottom: 20px;
    flex: 1;
}

.sffc-form-field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 14px;
}

.sffc-form-field input,
.sffc-form-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8e5e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    background: #ffffff;
    box-sizing: border-box;
}

.sffc-form-field input:focus,
.sffc-form-field textarea:focus {
    outline: none;
    border-color: #7fb069;
    box-shadow: 0 0 0 3px rgba(127, 176, 105, 0.1);
}

.sffc-form-field input.sffc-field-error,
.sffc-form-field textarea.sffc-field-error {
    border-color: #ef4444;
}

.sffc-form-field small {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: #6c757d;
}

.sffc-form-field input[type="file"] {
    padding: 8px;
    border-style: dashed;
    cursor: pointer;
}

.sffc-intro-benefits {
    margin: 20px 0;
}

/* ===== LOADING STATES ===== */
.sffc-loading {
    opacity: 0.6;
    pointer-events: none;
}

.sffc-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===== ANIMATIONS ===== */
.sffc-skill-circles svg {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* ===== EXPERT REVIEW SERVICE PROMOTION ===== */
.sffc-expert-review-promo {
    background: linear-gradient(135deg, #fefdfb 0%, #f8f6f1 100%);
    border: 1px solid #e8e5e0;
    border-radius: 12px;
    padding: 28px;
    margin: 28px 0;
    position: relative;
    overflow: hidden;
}

.sffc-expert-review-promo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #1e3a2e 0%, #2d5a3d 100%);
}

.sffc-promo-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.sffc-promo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #1e3a2e 0%, #2d5a3d 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.sffc-promo-icon svg {
    width: 22px;
    height: 22px;
}

.sffc-promo-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e3a2e;
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.sffc-member-badge {
    background: linear-gradient(135deg, #2d5a3d 0%, #1e3a2e 100%);
    color: #ffffff;
    padding: 5px 14px;
    border-radius: 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.sffc-promo-description {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.sffc-review-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.sffc-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e8e5e0;
    transition: all 0.2s ease;
}

.sffc-feature-item:hover {
    border-color: #2d5a3d;
    box-shadow: 0 3px 8px rgba(30, 58, 46, 0.1);
    transform: translateY(-1px);
}

.sffc-check-icon {
    width: 18px;
    height: 18px;
    color: #2d5a3d;
    flex-shrink: 0;
}

.sffc-feature-item span {
    color: #1e3a2e;
    font-weight: 500;
    line-height: 1.4;
    font-size: 14px;
}

.sffc-promo-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e8e5e0;
}

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

.sffc-stat-number {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: #1e3a2e;
    line-height: 1;
    margin-bottom: 4px;
}

.sffc-stat-label {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

.sffc-promo-actions {
    text-align: center;
}

.sffc-btn-premium {
    background: linear-gradient(135deg, #1e3a2e 0%, #2d5a3d 100%);
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 3px 8px rgba(30, 58, 46, 0.25);
    margin-bottom: 12px;
}

.sffc-btn-premium:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(30, 58, 46, 0.35);
    background: linear-gradient(135deg, #2d5a3d 0%, #1e3a2e 100%);
}

.sffc-btn-premium .sffc-icon {
    width: 18px;
    height: 18px;
}

.sffc-promo-note {
    color: #6b7280;
    font-size: 13px;
    margin: 0;
    font-style: italic;
}

/* Mobile optimizations for expert review promo */
@media (max-width: 768px) {
    .sffc-expert-review-promo {
        padding: 24px 20px;
        margin: 24px 0;
    }
    
    .sffc-promo-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .sffc-promo-title {
        font-size: 20px;
        min-width: auto;
    }
    
    .sffc-review-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .sffc-promo-stats {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
    }
    
    .sffc-stat-number {
        font-size: 24px;
    }
    
    .sffc-btn-premium {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .sffc-expert-review-promo {
        padding: 20px 16px;
        border-radius: 12px;
    }
    
    .sffc-promo-icon {
        width: 40px;
        height: 40px;
    }
    
    .sffc-promo-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .sffc-promo-title {
        font-size: 18px;
    }
    
    .sffc-feature-item {
        padding: 10px 12px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

/* ===== EXPERT REVIEW POPUP ===== */
.sffc-expert-review-popup {
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.sffc-review-popup-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    padding-bottom: 16px;
    border-bottom: 2px solid #f1f5f9;
}

.sffc-review-popup-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1e3a2e 0%, #2d5a3d 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.sffc-review-popup-icon svg {
    width: 24px;
    height: 24px;
}

.sffc-review-popup-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a2e;
    margin: 0;
    flex: 1;
}

.sffc-member-exclusive {
    background: linear-gradient(135deg, #2d5a3d 0%, #1e3a2e 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.sffc-review-description {
    font-size: 16px;
    color: #475569;
    margin-bottom: 24px;
    line-height: 1.6;
    text-align: center;
}

.sffc-review-services {
    display: grid;
    gap: 16px;
    margin-bottom: 24px;
}

.sffc-service-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}

.sffc-service-item:hover {
    border-color: #2d5a3d;
    background: #f8f6f1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 58, 46, 0.1);
}

.sffc-service-icon {
    width: 24px;
    height: 24px;
    color: #2d5a3d;
    flex-shrink: 0;
    margin-top: 2px;
}

.sffc-service-details h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e3a2e;
    margin: 0 0 4px 0;
}

.sffc-service-details p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

.sffc-review-guarantee {
    text-align: center;
    margin-bottom: 24px;
}

.sffc-guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2d5a3d 0%, #1e3a2e 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
}

.sffc-guarantee-badge svg {
    width: 20px;
    height: 20px;
}

.sffc-review-footer-note {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    font-size: 13px;
    color: #64748b;
    margin: 16px 0 0 0;
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
    line-height: 1.4;
}

.sffc-info-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Mobile optimizations for expert review popup */
@media (max-width: 768px) {
    .sffc-expert-review-popup {
        width: 95%;
        margin: 20px;
        max-height: 85vh;
    }
    
    .sffc-review-popup-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .sffc-review-popup-header h3 {
        font-size: 20px;
    }
    
    .sffc-service-item {
        padding: 16px;
        gap: 12px;
    }
    
    .sffc-service-icon {
        width: 20px;
        height: 20px;
    }
    
    .sffc-service-details h4 {
        font-size: 15px;
    }
    
    .sffc-service-details p {
        font-size: 13px;
    }
    
    .sffc-guarantee-badge {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .sffc-review-footer-note {
        flex-direction: column;
        text-align: center;
        gap: 6px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .sffc-expert-review-popup {
        width: 98%;
        margin: 10px;
    }
    
    .sffc-review-popup-icon {
        width: 40px;
        height: 40px;
    }
    
    .sffc-review-popup-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .sffc-review-popup-header h3 {
        font-size: 18px;
    }
    
    .sffc-service-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

/* ===== SIMPLIFIED CV FORM ===== */
.sffc-cv-form-popup {
    max-width: 400px;
    width: 90%;
    text-align: center;
}

.sffc-cv-form-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e8e5e0;
}

.sffc-brand-logo {
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(30, 58, 46, 0.1);
}

.sffc-cv-form-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a2e;
    margin: 0 0 8px 0;
}

.sffc-cv-form-header p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.sffc-cv-form .sffc-form-field {
    margin-bottom: 20px;
    text-align: left;
}

.sffc-cv-form .sffc-form-field label {
    display: block;
    font-weight: 600;
    color: #1e3a2e;
    margin-bottom: 8px;
    font-size: 14px;
}

.sffc-cv-form .sffc-form-field input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e8e5e0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #ffffff;
    box-sizing: border-box;
}

.sffc-cv-form .sffc-form-field input:focus {
    outline: none;
    border-color: #2d5a3d;
    box-shadow: 0 0 0 3px rgba(30, 58, 46, 0.1);
}

.sffc-cv-form .sffc-form-field input::placeholder {
    color: #9ca3af;
    font-style: italic;
}

.sffc-cv-form .sffc-popup-actions {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    justify-content: center;
}

.sffc-cv-form .sffc-btn {
    flex: 1;
    max-width: 150px;
}

/* Mobile optimizations for CV form */
@media (max-width: 480px) {
    .sffc-cv-form-popup {
        width: 95%;
        margin: 20px;
    }
    
    .sffc-brand-logo {
        width: 56px;
        height: 56px;
    }
    
    .sffc-cv-form-header h3 {
        font-size: 20px;
    }
    
    .sffc-cv-form .sffc-popup-actions {
        flex-direction: column;
    }
    
    .sffc-cv-form .sffc-btn {
        max-width: none;
    }
}