/* ============================================
   CAREERS PAGE — PREMIUM DARK DESIGN
============================================ */

/* ---------- HERO SECTION ---------- */
.careers-hero {
    position: relative;
    padding: 130px 0 90px;
    overflow: hidden;
    background: linear-gradient(180deg, #000 0%, #050505 100%);
}

.hero-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
}

.glow-1 {
    width: 500px;
    height: 500px;
    background: #eab308;
    top: -200px;
    left: -100px;
    animation: floatGlow 8s ease-in-out infinite;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: #f59e0b;
    bottom: -150px;
    right: -100px;
    animation: floatGlow 8s ease-in-out infinite reverse;
}

@keyframes floatGlow {
    0%, 100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-40px) scale(1.1); }
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(234, 179, 8, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(234, 179, 8, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

/* Particles */
.hero-particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #eab308;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 6s ease-in-out infinite;
}

.p1 { left: 10%; top: 20%; animation-delay: 0s; }
.p2 { left: 30%; top: 60%; animation-delay: 1s; }
.p3 { left: 60%; top: 30%; animation-delay: 2s; }
.p4 { left: 80%; top: 70%; animation-delay: 3s; }
.p5 { left: 50%; top: 50%; animation-delay: 4s; }

@keyframes particleFloat {
    0%   { opacity: 0; transform: translateY(20px) scale(0); }
    20%  { opacity: 0.8; transform: translateY(0) scale(1); }
    80%  { opacity: 0.8; transform: translateY(-60px) scale(1); }
    100% { opacity: 0; transform: translateY(-80px) scale(0); }
}

.careers-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(234, 179, 8, 0.08);
    border: 1px solid rgba(234, 179, 8, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #eab308;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeInDown 0.8s ease;
}

.badge-pulse {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    position: relative;
}

.badge-pulse::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid #22c55e;
    animation: pulseRing 2s ease-in-out infinite;
}

@keyframes pulseRing {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50%      { transform: scale(1.5); opacity: 0; }
}

.hero-title {
    font-size: clamp(38px, 6vw, 68px);
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.gradient-text {
    background: linear-gradient(135deg, #eab308, #f59e0b, #fbbf24, #eab308);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: 17px;
    color: #9ca3af;
    max-width: 550px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* Hero Stats */
.hero-stats {
    display: inline-flex;
    align-items: center;
    gap: 32px;
    padding: 20px 40px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-num {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #eab308;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 12px;
    color: #6b7280;
    letter-spacing: 0.5px;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: linear-gradient(180deg, transparent, rgba(234, 179, 8, 0.2), transparent);
}

/* ---------- PERKS SECTION ---------- */
.perks-section {
    padding: 30px 0 50px;
    background: #000;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.perk-card {
    padding: 28px 24px;
    background: linear-gradient(160deg, #0d0d0d, #111);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.perk-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #eab308, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.perk-card:hover {
    transform: translateY(-6px);
    border-color: rgba(234, 179, 8, 0.15);
}

.perk-card:hover::before {
    opacity: 1;
}

.perk-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    background: rgba(234, 179, 8, 0.08);
    border: 1px solid rgba(234, 179, 8, 0.12);
    border-radius: 14px;
    color: #eab308;
    transition: all 0.4s ease;
}

.perk-card:hover .perk-icon {
    background: rgba(234, 179, 8, 0.15);
    transform: scale(1.1);
}

.perk-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.perk-card p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

/* ---------- MAIN LAYOUT ---------- */
.careers-main {
    background: #000;
}

.careers-layout {
    display: flex;
    gap: 30px;
    min-height: 700px;
}

/* ---------- SIDEBAR ---------- */
.jobs-sidebar {
    width: 340px;
    flex-shrink: 0;
    background: linear-gradient(160deg, #0a0a0a, #0d0d0d);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 24px;
    position: sticky;
    top: 100px;
    height: fit-content;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

/* Custom Scrollbar */
.jobs-sidebar::-webkit-scrollbar {
    width: 4px;
}

.jobs-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.jobs-sidebar::-webkit-scrollbar-thumb {
    background: rgba(234, 179, 8, 0.2);
    border-radius: 10px;
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.sidebar-title svg {
    color: #eab308;
}

.job-count {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(234, 179, 8, 0.1);
    color: #eab308;
    font-size: 13px;
    font-weight: 700;
    border-radius: 8px;
}

/* Search */
.sidebar-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    margin-bottom: 16px;
    transition: border-color 0.3s ease;
}

.sidebar-search:focus-within {
    border-color: rgba(234, 179, 8, 0.3);
}

.sidebar-search svg {
    color: #6b7280;
    flex-shrink: 0;
}

.sidebar-search input {
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    width: 100%;
}

.sidebar-search input::placeholder {
    color: #4b5563;
}

/* Job Cards */
.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.job-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.job-card-indicator {
    width: 4px;
    height: 0;
    background: #eab308;
    border-radius: 4px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: height 0.3s ease;
}

.job-card:hover,
.job-card.active {
    background: rgba(234, 179, 8, 0.04);
    border-color: rgba(234, 179, 8, 0.15);
}

.job-card:hover .job-card-indicator,
.job-card.active .job-card-indicator {
    height: 60%;
}

.job-card-content {
    flex: 1;
    min-width: 0;
}

.job-card-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.job-card:hover .job-card-title,
.job-card.active .job-card-title {
    color: #eab308;
}

.job-card-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: #6b7280;
}

.meta-item svg {
    color: #4b5563;
}

.job-card-arrow {
    color: #4b5563;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.job-card:hover .job-card-arrow,
.job-card.active .job-card-arrow {
    color: #eab308;
    transform: translateX(4px);
}

/* No Jobs */
.no-jobs {
    text-align: center;
    padding: 40px 20px;
}

.no-jobs-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.no-jobs p {
    font-size: 14px;
    color: #9ca3af;
    margin-bottom: 4px;
}

.no-jobs span {
    font-size: 12px;
    color: #6b7280;
}

/* ---------- DETAIL PANEL ---------- */
.job-detail-panel {
    flex: 1;
    min-width: 0;
}

/* Detail Header */
.detail-header {
    background: linear-gradient(160deg, #0d0d0d, #111);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 36px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.detail-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #eab308, #f59e0b, #fbbf24);
}

.detail-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.detail-badge {
    padding: 6px 16px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.detail-posted {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #6b7280;
}

.detail-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.detail-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    font-size: 13px;
    color: #9ca3af;
}

.detail-tag svg {
    color: #eab308;
}

/* Detail Sections */
.detail-sections {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 30px;
}

.detail-section {
    background: linear-gradient(160deg, #0a0a0a, #0d0d0d);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    padding: 30px;
    transition: border-color 0.3s ease;
}

.detail-section:hover {
    border-color: rgba(234, 179, 8, 0.1);
}

.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(234, 179, 8, 0.08);
    border-radius: 10px;
    color: #eab308;
}

.section-label h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.section-content {
    font-size: 14px;
    color: #9ca3af;
    line-height: 1.8;
}

.section-content p {
    margin-bottom: 10px;
}

/* ---------- APPLICATION FORM ---------- */
.application-section {
    background: linear-gradient(160deg, #0a0a0a, #0d0d0d);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 36px;
    position: relative;
    overflow: hidden;
}

.application-section::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #eab308, #f59e0b, #fbbf24);
}

.application-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.app-header-left h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.app-header-left p {
    font-size: 13px;
    color: #6b7280;
}

.app-header-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(234, 179, 8, 0.06);
    border: 1px solid rgba(234, 179, 8, 0.1);
    border-radius: 16px;
    color: #eab308;
}

/* Success Message */
.success-message {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(34, 197, 94, 0.06);
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: 14px;
    margin-bottom: 28px;
    animation: fadeInUp 0.5s ease;
}

.success-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    color: #22c55e;
    flex-shrink: 0;
}

.success-message strong {
    display: block;
    color: #22c55e;
    font-size: 15px;
    margin-bottom: 2px;
}

.success-message p {
    color: #6b7280;
    font-size: 13px;
    margin: 0;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    margin-bottom: 28px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #d1d5db;
    letter-spacing: 0.3px;
}

.required {
    color: #ef4444;
}

/* Input Wrapper */
.input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.input-wrap:focus-within {
    border-color: rgba(234, 179, 8, 0.4);
    background: rgba(234, 179, 8, 0.03);
    box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.06);
}

.input-wrap svg {
    color: #6b7280;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.input-wrap:focus-within svg {
    color: #eab308;
}

.input-wrap input {
    background: none;
    border: none;
    outline: none;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    width: 100%;
}

.input-wrap input::placeholder {
    color: #4b5563;
}

/* File Upload */
.file-upload {
    position: relative;
    border: 2px dashed rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.file-upload:hover {
    border-color: rgba(234, 179, 8, 0.3);
    background: rgba(234, 179, 8, 0.02);
}

.file-upload input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 16px;
    color: #6b7280;
}

.file-upload-content svg {
    color: #4b5563;
    transition: all 0.3s ease;
}

.file-upload:hover .file-upload-content svg {
    color: #eab308;
    transform: translateY(-2px);
}

.file-text {
    font-size: 13px;
    font-weight: 500;
    color: #9ca3af;
}

.file-upload-content small {
    font-size: 11px;
    color: #4b5563;
}

.file-upload.has-file {
    border-color: rgba(34, 197, 94, 0.3);
    background: rgba(34, 197, 94, 0.03);
}

.file-upload.has-file .file-text {
    color: #22c55e;
}

/* Textarea */
.textarea-wrap {
    position: relative;
}

.textarea-wrap textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    resize: vertical;
    outline: none;
    transition: all 0.3s ease;
    min-height: 120px;
}

.textarea-wrap textarea::placeholder {
    color: #4b5563;
}

.textarea-wrap textarea:focus {
    border-color: rgba(234, 179, 8, 0.4);
    background: rgba(234, 179, 8, 0.03);
    box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.06);
}

/* Submit Button */
.submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #eab308, #f59e0b);
    color: #000;
    border: none;
    border-radius: 14px;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fbbf24, #eab308);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(234, 179, 8, 0.3);
}

.submit-btn:hover::before {
    opacity: 1;
}

.btn-text,
.btn-icon {
    position: relative;
    z-index: 2;
}

.btn-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(4px) rotate(-15deg);
}

.btn-loading {
    display: none;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.submit-btn.loading .btn-text,
.submit-btn.loading .btn-icon {
    display: none;
}

.submit-btn.loading .btn-loading {
    display: inline-flex;
}

.submit-btn:active {
    transform: scale(0.97);
}

/* ---------- EMPTY STATE ---------- */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    text-align: center;
}

.empty-illustration {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.empty-circle {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(234, 179, 8, 0.06);
    border: 1px solid rgba(234, 179, 8, 0.1);
    border-radius: 50%;
    color: #eab308;
    position: relative;
    z-index: 2;
    animation: emptyPulse 3s ease-in-out infinite;
}

@keyframes emptyPulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.05); }
}

.empty-ring {
    position: absolute;
    border: 1px solid rgba(234, 179, 8, 0.06);
    border-radius: 50%;
    animation: ringExpand 3s ease-in-out infinite;
}

.empty-ring.r1 {
    inset: -10px;
    animation-delay: 0s;
}

.empty-ring.r2 {
    inset: -25px;
    animation-delay: 1s;
}

@keyframes ringExpand {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50%      { transform: scale(1.1); opacity: 0; }
}

.empty-state h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.empty-state p {
    font-size: 14px;
    color: #6b7280;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
    .careers-layout {
        flex-direction: column;
    }

    .jobs-sidebar {
        width: 100%;
        position: static;
        max-height: none;
    }

    .jobs-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .detail-header {
        padding: 28px;
    }

    .detail-title {
        font-size: 26px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .perks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-stats {
        gap: 20px;
        padding: 16px 28px;
    }
}

@media (max-width: 768px) {
    .careers-hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stat-divider {
        width: 40px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(234, 179, 8, 0.2), transparent);
    }

    .jobs-list {
        grid-template-columns: 1fr;
    }

    .detail-sections {
        gap: 16px;
    }

    .detail-section {
        padding: 22px;
    }

    .application-section {
        padding: 24px;
    }

    .application-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .app-header-icon {
        display: none;
    }

    .detail-tags {
        flex-direction: column;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .perks-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .perk-card {
        display: flex;
        align-items: center;
        gap: 16px;
        text-align: left;
        padding: 20px;
    }

    .perk-icon {
        margin: 0;
    }

    .detail-header {
        padding: 22px 18px;
    }

    .detail-title {
        font-size: 22px;
    }

    .section-label h3 {
        font-size: 16px;
    }

    .detail-section {
        padding: 18px;
    }

    .application-section {
        padding: 20px 16px;
    }

    .app-header-left h3 {
        font-size: 18px;
    }
}