/* job-style.css - Styles specifically for job_details.php layout */

.job-container {
    max-width: 1200px;
    margin: 40px auto 100px;
    padding: 0 24px;
}

.job-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.view-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}
.badge-blue { background: #e0e7ff; color: #4338ca; }
.badge-gray { background: #f1f5f9; color: #475569; }

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

.job-main {
    flex: 1;
}

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

.company-badge-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.comp-icon {
    width: 48px;
    height: 48px;
    background: #0f766e; /* Teal Vanguard-ish color */
    color: white;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.comp-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.comp-tier {
    font-size: 12px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.comp-tier i {
    color: #64748b;
}

.params-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.param-card {
    background: #f8fafc;
    padding: 16px;
    border-radius: 8px;
}

.param-label {
    font-size: 10px;
    font-weight: 700;
    color: #94a3b8;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.param-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
}

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

.content-section h2 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.content-section p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-primary);
}

.resp-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.resp-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-primary);
}

.text-blue {
    color: #2563eb;
    font-size: 20px;
    margin-top: 2px;
}

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

.skill-tag {
    background: #f1f5f9;
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
}

.about-card {
    background: var(--primary-dark);
    color: white;
    padding: 40px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.about-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: linear-gradient(90deg, var(--primary-dark) 0%, transparent 100%), 
                      url('assets/images/bangalore_buildings.png');
    background-size: cover;
    opacity: 0.15;
    pointer-events: none;
}

.about-card h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.about-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5e1;
    margin-bottom: 32px;
    max-width: 80%;
    position: relative;
    z-index: 2;
}

.about-stats {
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #94a3b8;
}

/* RIGHT SIDEBAR */
.job-sidebar {
    width: 360px;
    position: sticky;
    top: 40px;
}

.btn-apply {
    width: 100%;
    background: #ea580c;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-main);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin-bottom: 12px;
    transition: background 0.2s;
}

.btn-apply:hover { background: #c2410c; }

.btn-save {
    width: 100%;
    background: white;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-main);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin-bottom: 12px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}

.btn-whatsapp {
    width: 100%;
    background: #25D366;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-main);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin-bottom: 32px;
    transition: background 0.2s;
}

.btn-whatsapp:hover { background: #128C7E; }

.side-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}

.side-card h4 {
    font-size: 14px;
    margin-bottom: 8px;
}

.side-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
}

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

.btn-copy {
    flex: 1;
    background: #e2e8f0;
    border: none;
    padding: 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.btn-share {
    width: 40px;
    height: 40px;
    background: #e2e8f0;
    border: none;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: var(--text-dark);
    cursor: pointer;
}

.similar-roles {
    margin-bottom: 32px;
}

.similar-roles h3 {
    font-size: 16px;
    margin-bottom: 16px;
}

.similar-card {
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: box-shadow 0.2s;
}

.similar-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.sim-comp {
    font-size: 10px;
    font-weight: 700;
    color: #2563eb;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.sim-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.sim-loc {
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.sim-bot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-dark);
}

.sim-bot i { font-size: 14px; }

.btn-view-all {
    width: 100%;
    background: white;
    border: 1px solid var(--border-color);
    padding: 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.alert-card {
    background: #ffedd5;
    border-radius: 12px;
    padding: 24px;
}

.alert-icon {
    width: 40px;
    height: 40px;
    background: #ea580c;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 16px;
}

.alert-card h4 {
    font-size: 15px;
    color: #9a3412;
    margin-bottom: 8px;
}

.alert-card p {
    font-size: 13px;
    color: #c2410c;
    line-height: 1.5;
    margin-bottom: 16px;
}

.alert-input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    margin-bottom: 8px;
    font-family: var(--font-main);
    font-size: 13px;
    outline: none;
}

.btn-subscribe {
    width: 100%;
    background: #ea580c;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}
