/* --- Explore Roles Section Redesign (Vasundhara Layout + Dark Theme) --- */

:root {
    --role-brand: #7474C5;
    --role-blue: #00A3FF;
    --role-glass: rgba(255, 255, 255, 0.03);
    --role-border: rgba(255, 255, 255, 0.08);
}

/* Section Header */
.explore-header-v2 {
    text-align: center;
    margin-bottom: 4rem;
}

.explore-title-v2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
}

/* Job Grid Layout */
.job-grid-v2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (min-width: 992px) {
    .job-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Dark Glass Card Design */
.job-card-v2 {
    background: var(--role-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--role-border);
    border-radius: 1.5rem;
    padding: 2.5rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.job-card-v2:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.job-info-v2 {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.job-title-v2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.job-meta-v2 {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.job-meta-item-v2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.job-meta-item-v2 i {
    color: var(--role-blue);
    font-size: 0.9rem;
}

/* SVG Icons for Meta Items */
.meta-icon {
    width: 14px;
    height: 14px;
    fill: var(--role-blue);
}

/* Apply Button (Right) */
.btn-apply-v2 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--role-blue);
    border-radius: 100px;
    color: var(--role-blue);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-apply-v2:hover {
    background: var(--role-blue);
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 163, 255, 0.3);
}

/* Role Details Page Styles */
.details-page-v2 {
    padding-top: 8rem;
    padding-bottom: 6rem;
}

.details-hero-v2 {
    width: 100%;
    height: 350px;
    border-radius: 2rem;
    background-size: cover;
    background-position: center;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--role-border);
}

.details-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

.details-container-v2 {
    max-width: 900px;
    margin: 0 auto;
}

.details-header-v2 {
    margin-bottom: 3rem;
}

.details-header-v2 h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.details-section-v2 {
    margin-bottom: 3rem;
}

.details-section-v2 h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.details-list-v2 {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.details-list-v2 li {
    display: flex;
    gap: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.check-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    fill: var(--role-blue);
    margin-top: 3px;
}

.details-footer-v2 {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--role-border);
    display: flex;
    justify-content: center;
}

.btn-apply-large-v2 {
    padding: 1.25rem 4rem;
    background: var(--role-blue);
    color: #fff;
    border-radius: 100px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-apply-large-v2:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 163, 255, 0.4);
}